| /llvm-project-15.0.7/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-15.0.7/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-15.0.7/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-15.0.7/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-15.0.7/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-15.0.7/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-15.0.7/clang/test/PCH/ |
| H A D | thread-safety-attrs.cpp | 90 class MyString { class 92 MyString(const char* s); 93 ~MyString();
|
| /llvm-project-15.0.7/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-15.0.7/clang/test/Analysis/ |
| H A D | NSString.m | 187 @interface MyString : NSString interface 190 void f14(MyString *s) { 191 [s compare:0]; // expected-warning {{Argument to 'MyString' method 'compare:' cannot be nil}}
|
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | YAMLIOTest.cpp | 1263 LLVM_YAML_STRONG_TYPEDEF(llvm::StringRef, MyString) 1264 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(MyString) 1285 template <> struct ScalarTraits<MyString> { 1287 static void output(const MyString &V, void *Ctx, raw_ostream &OS) { in output() 1290 static StringRef input(StringRef S, void *Ctx, MyString &V) { in input() 1302 std::vector<MyString> strings;
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | warn-thread-safety-analysis.cpp | 90 class MyString { class 92 MyString(const char* s); 93 ~MyString(); 3824 Foo* GetAndLockFoo(const MyString& s) 4023 void exitDestruct(const MyString& ms) __attribute__((noreturn)); 5106 MyMap<MyString, Mutex*> map; 5107 MyMap<MyString, MuCell> mapCell;
|