Home
last modified time | relevance | path

Searched refs:MyString (Results 1 – 11 of 11) sorted by relevance

/llvm-project/lldb/test/API/lang/objc/radar-9691614/
H A Dmain.m4 @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 Dmain.m5 @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 Dmain.m4 @interface MyString : NSObject { interface
16 @implementation MyString implementation
54MyString *myStr = [[MyString alloc] initWithNSString: [NSString stringWithFormat:@"string %i", 1]];
/llvm-project/lldb/test/API/lang/objcxx/sample/
H A Dmain.mm4 @interface MyString : NSObject { interface
16 @implementation MyString implementation
54MyString *myStr = [[MyString alloc] initWithNSString: [NSString stringWithFormat:@"string %i", 1]];
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/readability/
H A Dredundant-string-init.cpp166 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 Dinstantiate-static-var.cpp127 typedef char MyString[100]; typedef
130 static MyString str;
133 MyString StaticVarWithTypedefString<T>::str = "";
/llvm-project/clang/test/PCH/
H A Dthread-safety-attrs.cpp90 class MyString { class
92 MyString(const char* s);
93 ~MyString();
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dobjc-global-variable-declaration.m12 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 DNSString.m186 @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 DYAMLIOTest.cpp1282 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 Dwarn-thread-safety-analysis.cpp90 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;