Home
last modified time | relevance | path

Searched refs:kString (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/tools/aapt2/optimize/
DResourceFilter_test.cpp41 ResourceName({}, ResourceType::kString, "blacklisted"), in TEST()
42 ResourceName({}, ResourceType::kString, "blacklisted2"), in TEST()
65 ResourceName({}, ResourceType::kString, "blacklisted"), in TEST()
/frameworks/base/tools/aapt2/
DResource.cpp91 case ResourceType::kString: in to_string()
129 {"string", ResourceType::kString},
DResource_test.cpp110 EXPECT_EQ(*type, ResourceType::kString); in TEST()
DResource.h65 kString, enumerator
DResourceUtils.cpp761 if (type != ResourceType::kString && util::StartsWith(str, "res/")) { in ParseBinaryResValue()
DResourceParser.cpp507 {"string", {ResourceType::kString, android::ResTable_map::TYPE_STRING}}, in ParseResource()
/frameworks/base/startop/view_compiler/
Ddex_layout_compiler.cc38 const TypeDescriptor kString = TypeDescriptor::FromClassname("java.lang.String"); variable
57 Prototype{kView, kView, kString, kContext, kAttributeSet})},
Ddex_builder.h120 static constexpr Value String(size_t value) { return Value{value, Kind::kString}; } in String()
128 bool is_string() const { return kind_ == Kind::kString; } in is_string()
137 enum class Kind { kInvalid, kLocalRegister, kParameter, kImmediate, kString, kLabel, kType }; enumerator