Home
last modified time | relevance | path

Searched refs:attrStr (Results 1 – 6 of 6) sorted by relevance

/external/clang/test/SemaObjC/
Dobjc-mixed-bridge-attribute.m18 void Test1(CFAttributedStringRef attrStr, CFMutableAttributedStringRef mutable_attrStr)
20 id x = (NSAttributedString *) attrStr;
22 id x2 = (NSMutableAttributedString *) attrStr;
38 void Test3(NDCFAttributedStringRef attrStr, NDCFMutableAttributedStringRef mutable_attrStr)
40 id x = (NSAttributedString *) attrStr;
42 id x2 = (NSMutableAttributedString *) attrStr;
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/
DPOJONodeTest.java27 String attrStr = (String) provider.getAttribute("myAttr"); in serialize() local
29 gen.writeStringField("aStr", "The value is: " + (attrStr == null ? "NULL" : attrStr)); in serialize()
/external/clang/test/CodeGenObjC/
Ddebug-info-crash.m39 NSMutableAttributedString *attrStr;
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DResXMLParser.java388 String attrStr = attr; in indexOfAttribute() local
390 attrStr, attrStr.length()); in indexOfAttribute()
/external/robolectric/resources/src/main/java/org/robolectric/res/android/
DResXMLParser.java389 String attrStr = attr; in indexOfAttribute() local
391 attrStr, attrStr.length()); in indexOfAttribute()
/external/clang/lib/Sema/
DSemaType.cpp4620 const char *attrStr = nullptr; in transferARCOwnershipToDeclaratorChunk() local
4623 case Qualifiers::OCL_ExplicitNone: attrStr = "none"; break; in transferARCOwnershipToDeclaratorChunk()
4624 case Qualifiers::OCL_Strong: attrStr = "strong"; break; in transferARCOwnershipToDeclaratorChunk()
4625 case Qualifiers::OCL_Weak: attrStr = "weak"; break; in transferARCOwnershipToDeclaratorChunk()
4626 case Qualifiers::OCL_Autoreleasing: attrStr = "autoreleasing"; break; in transferARCOwnershipToDeclaratorChunk()
4630 Arg->Ident = &S.Context.Idents.get(attrStr); in transferARCOwnershipToDeclaratorChunk()