Home
last modified time | relevance | path

Searched refs:oldObject (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm-project/clang/test/CodeGenObjC/
Dobjc-container-subscripting.m29 id oldObject = array[10];
31 array[10] = oldObject;
34 oldObject = unknown_array[1];
36 unknown_array[1] = oldObject;
41 oldObject = dictionary[key];
42 dictionary[key] = newObject; // replace oldObject with newObject
Dobjc-container-subscripting-1.m20 id oldObject = array[10];
27 val = (array[10] = oldObject);
28 // CHECK: [[FOUR:%.*]] = load i8*, i8** [[oldObject:%.*]], align 8
38 oldObject = dictionary[key];
44 // CHECK-NEXT: store i8* [[CALL1]], i8** [[oldObject:%.*]], align 8
/external/clang/test/CodeGenObjC/
Dobjc-container-subscripting.m29 id oldObject = array[10];
31 array[10] = oldObject;
34 oldObject = unknown_array[1];
36 unknown_array[1] = oldObject;
41 oldObject = dictionary[key];
42 dictionary[key] = newObject; // replace oldObject with newObject
Dobjc-container-subscripting-1.m20 id oldObject = array[10];
27 val = (array[10] = oldObject);
29 // CHECK-NEXT: [[FOUR:%.*]] = load i8*, i8** [[oldObject:%.*]], align 8
38 oldObject = dictionary[key];
44 // CHECK-NEXT: store i8* [[CALL1]], i8** [[oldObject:%.*]], align 8
/external/clang/test/Rewriter/
Dobjc-modern-container-subscript.mm34 id oldObject = array[10];
36 array[10] = oldObject;
39 oldObject = unknown_array[1];
41 unknown_array[1] = oldObject;
46 oldObject = dictionary[key];
47 dictionary[key] = newObject; // replace oldObject with newObject
/external/llvm-project/clang/test/Rewriter/
Dobjc-modern-container-subscript.mm34 id oldObject = array[10];
36 array[10] = oldObject;
39 oldObject = unknown_array[1];
41 unknown_array[1] = oldObject;
46 oldObject = dictionary[key];
47 dictionary[key] = newObject; // replace oldObject with newObject
/external/clang/test/Index/
Dannotate-subscripting.m32 id newObject, oldObject;
33 oldObject = dictionary[key];
35 NSDictionary *dict = @{ key: newObject, key: oldObject };
64 // CHECK: Identifier: "oldObject" [33:3 - 33:12] DeclRefExpr=oldObject:32:17
90 // CHECK: Identifier: "oldObject" [35:48 - 35:57] DeclRefExpr=oldObject:32:17
Dindex-subscripting-literals.m33 id newObject, oldObject;
37 oldObject = dictionary[key];
39 NSDictionary *dict = @{ key: newObject, key: oldObject };
55 // CHECK: [indexEntityReference]: kind: variable | name: oldObject
66 …EntityReference]: kind: variable | name: oldObject | USR: c:@oldObject | lang: C | cursor: DeclRef…
Dfile-refs-subscripting.m32 id newObject, oldObject;
33 oldObject = dictionary[key];
35 NSDictionary *dict = @{ key: newObject, key: oldObject };
/external/llvm-project/clang/test/Index/
Dannotate-subscripting.m32 id newObject, oldObject;
33 oldObject = dictionary[key];
35 NSDictionary *dict = @{ key: newObject, key: oldObject };
64 // CHECK: Identifier: "oldObject" [33:3 - 33:12] DeclRefExpr=oldObject:32:17
90 // CHECK: Identifier: "oldObject" [35:48 - 35:57] DeclRefExpr=oldObject:32:17
Dindex-subscripting-literals.m33 id newObject, oldObject;
37 oldObject = dictionary[key];
39 NSDictionary *dict = @{ key: newObject, key: oldObject };
55 // CHECK: [indexEntityReference]: kind: variable | name: oldObject
66 …EntityReference]: kind: variable | name: oldObject | USR: c:@oldObject | lang: C | cursor: DeclRef…
Dfile-refs-subscripting.m32 id newObject, oldObject;
33 oldObject = dictionary[key];
35 NSDictionary *dict = @{ key: newObject, key: oldObject };
/external/clang/test/SemaObjC/
Dobjc-container-subscripting.m15 …id oldObject = array[10]; // expected-error {{method index parameter type 'double' is not integra…
23oldObject = array[10]++; // expected-error {{illegal operation on Objective-C container subscripti…
24oldObject = array[10]--; // expected-error {{illegal operation on Objective-C container subscripti…
25oldObject = --array[10]; // expected-error {{illegal operation on Objective-C container subscripti…
38 id newObject, oldObject;
39oldObject = dictionary[key]; // expected-error {{method key parameter type 'id *' is not object t…
Dobjc-container-subscripting-1.m14 id oldObject = array[10]; // expected-warning {{instance method '-objectAtIndexedSubscript:' not fo…
19 oldObject = p_array[10]; // expected-warning {{instance method '-objectAtIndexedSubscript:' not fou…
/external/llvm-project/clang/test/SemaObjC/
Dobjc-container-subscripting.m15 …id oldObject = array[10]; // expected-error {{method index parameter type 'double' is not integra…
23oldObject = array[10]++; // expected-error {{illegal operation on Objective-C container subscripti…
24oldObject = array[10]--; // expected-error {{illegal operation on Objective-C container subscripti…
25oldObject = --array[10]; // expected-error {{illegal operation on Objective-C container subscripti…
38 id newObject, oldObject;
39oldObject = dictionary[key]; // expected-error {{method key parameter type 'id *' is not object t…
/external/llvm-project/clang/test/PCH/
Dobjc_container.h15 id oldObject = array[10]; in all() local
17 array[10] = oldObject; in all()
22 oldObject = dictionary[key]; in all()
Dobjc_container.m12 // CHECK-PRINT: id oldObject = array[10];
13 // CHECK-PRINT: array[10] = oldObject;
14 // CHECK-PRINT: oldObject = dictionary[key];
Dsubscripting-literals.m49 void testDict(NSString *key, id newObject, id oldObject) {
51 oldObject = dictionary[key];
53 NSDictionary *dict = @{ key: newObject, key: oldObject };
/external/clang/test/PCH/
Dobjc_container.h15 id oldObject = array[10]; in all() local
17 array[10] = oldObject; in all()
22 oldObject = dictionary[key]; in all()
Dobjc_container.m12 // CHECK-PRINT: id oldObject = array[10];
13 // CHECK-PRINT: array[10] = oldObject;
14 // CHECK-PRINT: oldObject = dictionary[key];
Dsubscripting-literals.m49 void testDict(NSString *key, id newObject, id oldObject) {
51 oldObject = dictionary[key];
53 NSDictionary *dict = @{ key: newObject, key: oldObject };
/external/clang/test/CodeGenObjCXX/
Dobjc-container-subscripting-1.mm25 id oldObject = array[(int)s];
28 dict[(id)s] = oldObject;
29 oldObject = dict[(id)s];
Dobjc-container-subscripting.mm24 id oldObject = array[(int)s];
27 dict[(id)s] = oldObject;
28 oldObject = dict[(id)s];
/external/llvm-project/clang/test/CodeGenObjCXX/
Dobjc-container-subscripting-1.mm25 id oldObject = array[(int)s];
28 dict[(id)s] = oldObject;
29 oldObject = dict[(id)s];
Dobjc-container-subscripting.mm24 id oldObject = array[(int)s];
27 dict[(id)s] = oldObject;
28 oldObject = dict[(id)s];

12