OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsAttributeReference
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/tools/aapt2/
ResourceUtils_test.cpp
126
EXPECT_TRUE(ResourceUtils::
IsAttributeReference
("?android"));
127
EXPECT_TRUE(ResourceUtils::
IsAttributeReference
("?android:foo"));
128
EXPECT_TRUE(ResourceUtils::
IsAttributeReference
("?attr/foo"));
129
EXPECT_TRUE(ResourceUtils::
IsAttributeReference
("?android:attr/foo"));
133
EXPECT_FALSE(ResourceUtils::
IsAttributeReference
("?style/foo"));
134
EXPECT_FALSE(ResourceUtils::
IsAttributeReference
("?android:style/foo"));
135
EXPECT_FALSE(ResourceUtils::
IsAttributeReference
("?android:"));
136
EXPECT_FALSE(ResourceUtils::
IsAttributeReference
("?android:attr/"));
137
EXPECT_FALSE(ResourceUtils::
IsAttributeReference
("?:attr/"));
138
EXPECT_FALSE(ResourceUtils::
IsAttributeReference
("?:attr/foo"))
[
all
...]
ResourceUtils.h
71
bool
IsAttributeReference
(const android::StringPiece& str);
ResourceUtils.cpp
199
bool
IsAttributeReference
(const StringPiece& str) {
Completed in 63 milliseconds