Home
last modified time | relevance | path

Searched defs:NSString (Results 1 – 25 of 180) sorted by relevance

12345678

/llvm-project/clang-tools-extra/test/clang-tidy/checkers/google/
H A Dobjc-avoid-throwing-exception.m7 + (void)raise:(NSString *)name format:(NSString *)format;
8 …*)format arguments:(NSString *)args; // using NSString type since va_list cannot be recognized here
14 + (void)raise:(NSString *)name format:(NSString *)format;
/llvm-project/lldb/test/API/lang/objc/objc-class-method/
H A Dclass.m4 +(int) doSomethingWithString: (NSString *) string;
5 -(int) doSomethingInstance: (NSString *) string;
10 {
16 {
/llvm-project/clang/test/Analysis/
H A Dlocalization-aggressive.m33 @interface NSString : NSObject interface
35 + (instancetype)localizedStringWithFormat:(NSString *)format, ...;
41 table:(NSString *)tableName;
44 - (void)accessibilitySetIdentification:(NSString *)ident;
45 - (void)setAccessibilityLabel:(NSString *)label;
60 NSString *ForceLocalized(NSString *str) category
83 NSString *ForceLocalized(NSString *str) { return str; } category
86 + (NSString *)forceLocalized:(NSString *)str {
90 + (NSString *) takesLocalizedString:(NSString *)str { return str; }
187 - (void)testLocalizedStringAsArgument:(NSString *)argumentString {
[all …]
H A DNoReturn.m24 @interface NSString : NSObject <NSCopying, NSMutableCopying, NSCoding> interface
49 int f1(int *x, NSString* s) { argument
117 + (void)raise:(NSString *)name reason:(NSString *)reason __attribute__((analyzer_noreturn));
H A Dlocalization.m22 @interface NSString : NSObject interface
23 - (NSString *)stringByAppendingFormat:(NSString *)format, ...;
47 NSString *KHLocalizedString(NSString* key, NSString* comment) { argument
H A DCFRetainRelease_NSAssertionHandler.m16 @interface NSString : NSObject <NSCopying, NSMutableCopying, NSCoding> interface
22 …(id)object file:(NSString *)fileName lineNumber:(NSInteger)line description:(NSString *)format,...;
23 …nctionName file:(NSString *)fileName lineNumber:(NSInteger)line description:(NSString *)format,...;
H A Drefcnt_naming.m31 - (NSURL *)getMethod:(NSString*)inString; argument
32 - (NSURL *)getMethod2:(NSString*)inString; argument
40 {
46 {
53 {
H A Dtaint-tester.m6 @interface NSString interface
7 - (NSString *)stringByAppendingString:(NSString *)aString; argument
/llvm-project/clang/test/SemaObjC/
H A Duninit-variables.m9 + (void)raise:(NSString *)name format:(NSString *)format, ...;
10 + (void)raise:(NSString *)name format:(NSString *)format arguments:(va_list)argList;
H A Dselector-4.m10 @interface NSString @end interface
12 @interface NSString (NSStringExtensionMethods) interface in NSStringExtensionMethods
13 - (void)compare:(NSString *)string;
H A Dmethod-arg-qualifier-warning.m5 @interface NSString interface
6 …ualToString:(NSString *)aString; // expected-note 2{{passing argument to parameter 'aString' here}}
H A Dformat-cstrings-warning.m6 @interface NSString interface
11 @interface NSString (NSStringExtensionMethods) interface in NSStringExtensionMethods
14 …thFormat:(NSString *)format arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0)));
15 …itWithFormat:(NSString *)format locale:(id)locale, ... __attribute__((format(__NSString__, 1, 3)));
16 … *)format locale:(id)locale arguments:(va_list)argList __attribute__((format(__NSString__, 1, 0)));
19 …(format(__NSString__, 1, 0))); // expected-note {{method 'MyRandomMethod:locale:arguments:' declar…
H A Dinvalid-typename.m10 …opy NSDictionary /* NSString -> [NSString] */ *)truthPullers; // expected-error {{expected a type}}
H A Dformat-strings-objc.m28 @interface NSString : NSObject <NSCopying, NSMutableCopying, NSCoding> interface
101 extern void MyNSLog(NSString *format, ...) __attribute__((format(__NSString__, 1, 2))); category
206 + (void)log:(NSString *)fmt, ...;
207 + (void)log2:(NSString *)fmt, ... __attribute__((format(NSString, 1, 2)));
212 + (void)log:(NSString *)fmt, ... {
219 + (void)log2:(NSString *)fmt, ... {
329 __attribute__((format_arg(1)));
334 __attribute__((format_arg(1)));
/llvm-project/clang/test/CodeGenObjC/
H A Darc-linetable.m60 - (int)testNoSideEffect:(NSString *)foo {
71 - (int)testSideEffect:(NSString *)foo {
77 - (int)testMultiline:(NSString *)foo {
85 - (void)testVoid:(NSString *)foo {
90 - (void)testVoidNoReturn:(NSString *)foo {
H A Ddebug-info-block-line.m19 @interface NSString : NSObject interface
22 @interface NSString (NSStringExtensionMethods) interface in NSStringExtensionMethods
38 + (TMap *)mapForID:(NSString *)identifier;
48 - (void)sendString:(NSString *)string;
49 - (void)sendFormat:(NSString *)format, ...;
51 format:(NSString *)format, ...;
59 {
H A Dubsan-check-debuglocs.m15 @interface NSString : NSObject interface
16 + (instancetype)stringWithFormat:(NSString *)format, ...;
/llvm-project/clang/test/SemaObjCXX/
H A Dinstantiate-stmt.mm31 @interface NSString interface
58 template void fast_enumeration_test<NSString *>(NSArray*); function
60 template void fast_enumeration_test<NSString *>(vector); // expected-note{{in instantiation of}} function
76 template void try_catch_finally_test<NSString *>(int); function
77 template void try_catch_finally_test<NSString *>(int*); // expected-note{{in instantiation of}} function
78 template void try_catch_finally_test<NSString>(int); // expected-note{{in instantiation of function… function
/llvm-project/clang/test/ARCMT/
H A Dobjcmt-instancetype-2.m15 @interface NSString @end interface
18 @interface NSString (NSStringDeprecated) interface in NSStringDeprecated
31 + (id)URLWithString:(NSString *)URLString;
32 + (id)URLWithString:(NSString *)URLString relativeToURL:(NSURL *)baseURL;
38 + (id)errorWithDomain:(NSString *)domain code:(NSInteger)code userInfo:(NSDictionary *)dict;
62 + (id)connectionWithRegisteredName:(NSString *)name host:(NSString *)hostName;
63 …gisteredName:(NSString *)name host:(NSString *)hostName usingNameServer:(NSPortNameServer *)server;
72 …rFormat:(NSString *)format locale:(id)locale __attribute__((availability(macosx,introduced=10.4)));
73 …escription calendarFormat:(NSString *)format __attribute__((availability(macosx,introduced=10.4)));
H A Dnonobjc-to-objc-cast.m23 @interface NSString : NSObject { interface
47 @implementation NSString (StrExt) implementation in StrExt
55 @implementation NSString implementation
/llvm-project/clang/test/Sema/
H A Dwarn-documentation.m15 + (NSString *)test1:(NSString *)aaa suffix:(NSString *)bbb;
21 + (NSString *)test2:(NSString *)aaa;
40 + (NSString *)test1:(NSString *)aaa suffix:(NSString *)bbb {
44 + (NSString *)test2:(NSString *)aaa {
61 + (NSString *)test3:(NSString *)aaa;
67 + (NSString *)test3:(NSString *)aaa {
88 - (int)test1:(NSString *)aaa;
92 - (void)test2:(NSString *)aaa;
/llvm-project/lldb/test/API/lang/objc/objc-static-method-stripped/
H A Dstatic.m4 +(void) doSomethingWithString: (NSString *) string;
10 {
15 {
/llvm-project/lldb/test/API/lang/objc/objc-static-method/
H A Dstatic.m4 +(void) doSomethingWithString: (NSString *) string;
10 {
15 {
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/bugprone/
H A Dassert-side-effect.m8 @interface NSString interface
13 - handleFailureInMethod:(SEL)cmd object:(NSObject *)obj desc:(NSString *)desc;
14 - handleFailureInFunction:(NSString *)desc;
/llvm-project/clang/test/Rewriter/
H A Drewrite-modern-throw.m72 @interface NSString interface
73 + (id)stringWithFormat:(NSString *)format, ... ;
77 …n *)exceptionWithName:(NSString *)name reason:(NSString *)reason userInfo:(NSDictionary *)userInfo;

12345678