/llvm-project/lldb/test/API/lang/objc/radar-9691614/ |
H A D | main.m | 4 @interface MyString : NSObject { interface 14 @implementation MyString implementation 48 MyString *my = [[MyString alloc] initWithNSString:str]; 56 NSLog(@"MyString instance: %@", [my description]);
|
/llvm-project/lldb/test/API/lang/objc/foundation/ |
H A D | main.m | 5 @interface MyString : MyBase { interface 17 @implementation MyString implementation 41 // Set a breakpoint on '-[MyString description]' and test expressions: 95 MyString *my = [[MyString alloc] initWithNSString:str]; 96 NSLog(@"MyString instance: %@", [my description]); 98 NSLog(@"MyString instance: %@", [my description]);
|
/llvm-project/lldb/test/API/lang/objc/sample/ |
H A D | main.m | 4 @interface MyString : NSObject { interface 16 @implementation MyString implementation 54 …MyString *myStr = [[MyString alloc] initWithNSString: [NSString stringWithFormat:@"string %i", 1]];
|
/llvm-project/lldb/test/API/lang/objcxx/sample/ |
H A D | main.mm | 4 @interface MyString : NSObject { interface 16 @implementation MyString implementation 54 …MyString *myStr = [[MyString alloc] initWithNSString: [NSString stringWithFormat:@"string %i", 1]];
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/ |
H A D | redundant-string-init.cpp | 166 typedef std::string MyString; typedef 167 #define STRING MyString 171 MyString a = ""; in i() 177 MyString c = "" "" ""; in i() 186 MyString f = "u"; in i()
|
/llvm-project/clang/test/SemaTemplate/ |
H A D | instantiate-static-var.cpp | 127 typedef char MyString[100]; typedef 130 static MyString str; 133 MyString StaticVarWithTypedefString<T>::str = "";
|
/llvm-project/clang/test/PCH/ |
H A D | thread-safety-attrs.cpp | 90 class MyString { class 92 MyString(const char* s); 93 ~MyString();
|
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/google/ |
H A D | objc-global-variable-declaration.m | 12 static NSString* MyString = @"hi"; 13 // CHECK-MESSAGES: :[[@LINE-1]]:18: warning: non-const global variable 'MyString' must have a name …
|
/llvm-project/clang/test/Analysis/ |
H A D | NSString.m | 186 @interface MyString : NSString interface 189 void f14(MyString *s) { 190 [s compare:0]; // expected-warning {{Argument to 'MyString' method 'compare:' cannot be nil}}
|
/llvm-project/llvm/unittests/Support/ |
H A D | YAMLIOTest.cpp | 1282 LLVM_YAML_STRONG_TYPEDEF(llvm::StringRef, MyString) 1283 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(MyString) 1304 template <> struct ScalarTraits<MyString> { 1306 static void output(const MyString &V, void *Ctx, raw_ostream &OS) { in output() 1309 static StringRef input(StringRef S, void *Ctx, MyString &V) { in input() 1321 std::vector<MyString> strings;
|
/llvm-project/clang/test/SemaCXX/ |
H A D | warn-thread-safety-analysis.cpp | 90 class MyString { class 92 MyString(const char* s); 93 ~MyString(); 4305 Foo* GetAndLockFoo(const MyString& s) 4504 void exitDestruct(const MyString& ms) __attribute__((noreturn)); in test2() 5613 MyMap<MyString, Mutex*> map; in returns_value_aquires_lock() 5614 MyMap<MyString, MuCell> mapCell;
|