Home
last modified time | relevance | path

Searched refs:firstObject (Results 1 – 25 of 56) sorted by relevance

123

/external/jsilver/src/com/google/clearsilver/jsilver/data/
DUniqueStack.java41 private T firstObject = null; field in UniqueStack
91 if (firstObject == null) { in push()
92 firstObject = object; in push()
95 if (firstObject.equals(object)) { in push()
115 objectStack.offerLast(firstObject); in initStackAndSet()
116 objectsSet.add(firstObject); in initStackAndSet()
119 firstObject = null; in initStackAndSet()
136 returnedValue = firstObject; in pop()
137 firstObject = null; in pop()
151 if (firstObject != null) { in isEmpty()
/external/webrtc/examples/objc/AppRTCMobile/
DARDSettingsModel.m43 NSComparisonResult cmp = [obj1.firstObject compare:obj2.firstObject];
53 [NSString stringWithFormat:@"%@x%@", resolution.firstObject, resolution.lastObject];
149 return [self availableVideoResolutions].firstObject;
153 return [self availableVideoCodecs].firstObject;
/external/clang/test/CodeGenObjC/
Dparameterized_classes.m23 @property (copy,nonatomic) T firstObject; property
32 return array.firstObject;
36 return [array firstObject];
/external/clang/test/SemaObjC/
Dparameterized_classes_subst.m46 - (T)firstObject; method
153 ip = [stringSet firstObject]; // expected-warning{{from 'NSString *'}}
154 ip = [mutStringSet firstObject]; // expected-warning{{from 'NSString *'}}
155 ip = [widgetSet firstObject]; // expected-warning{{from 'Widget *'}}
156 ip = [untypedMutSet firstObject]; // expected-warning{{from 'id'}}
157 ip = [mutStringArraySet firstObject]; // expected-warning{{from 'NSArray<NSString *> *'}}
158 ip = [set firstObject]; // expected-warning{{from 'id'}}
159 ip = [mutSet firstObject]; // expected-warning{{from 'id'}}
160 ip = [mutArraySet firstObject]; // expected-warning{{from 'id'}}
161 ip = [block firstObject]; // expected-warning{{from 'id'}}
Dcocoa-api-usage.m.fixed51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dcocoa-api-usage.m51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
/external/llvm-project/clang/test/Analysis/
Dgenerics.m50 @property(readonly) ObjectType firstObject; property
278 …str = [b firstObject]; // expected-warning {{Object has a dynamic type 'NSNumber *' which is incom…
279 num = [b firstObject];
280 …str = b.firstObject; // expected-warning {{Object has a dynamic type 'NSNumber *' which is incompa…
281 num = b.firstObject;
346 id a = [erased firstObject];
352 NSArray* a = [erased firstObject];
358 …NSSet* a = [erased firstObject]; // expected-warning {{Object has a dynamic type 'NSArray<NSString…
364 id a = [erased firstObject];
DDynamicTypePropagation.m31 @property(readonly) ObjectType firstObject; property
49 NSObject *element = [erased firstObject];
/external/clang/test/Analysis/
DDynamicTypePropagation.m27 @property(readonly) ObjectType firstObject; property
45 NSObject *element = [erased firstObject];
/external/llvm-project/clang/test/SemaObjC/
Dparameterized_classes_subst.m46 - (T)firstObject; method
159 ip = [stringSet firstObject]; // expected-warning{{from 'NSString *'}}
160 ip = [mutStringSet firstObject]; // expected-warning{{from 'NSString *'}}
161 ip = [widgetSet firstObject]; // expected-warning{{from 'Widget *'}}
162 ip = [untypedMutSet firstObject]; // expected-warning{{from 'id'}}
163 ip = [mutStringArraySet firstObject]; // expected-warning{{from 'NSArray<NSString *> *'}}
164 ip = [set firstObject]; // expected-warning{{from 'id'}}
165 ip = [mutSet firstObject]; // expected-warning{{from 'id'}}
166 ip = [mutArraySet firstObject]; // expected-warning{{from 'id'}}
167 ip = [block firstObject]; // expected-warning{{from 'id'}}
Dcocoa-api-usage.m.fixed51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dcocoa-api-usage.m51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
/external/clang/test/SemaObjCXX/
Dparameterized_classes_subst.mm42 - (T)firstObject; method
109 ip = [stringSet firstObject]; // expected-error{{from incompatible type 'NSString *'}}
110 ip = [mutStringSet firstObject]; // expected-error{{from incompatible type 'NSString *'}}
111 ip = [widgetSet firstObject]; // expected-error{{from incompatible type 'Widget *'}}
112 ip = [untypedMutSet firstObject]; // expected-error{{from incompatible type 'id'}}
113 …ip = [mutStringArraySet firstObject]; // expected-error{{from incompatible type 'NSArray<NSString …
114 ip = [set firstObject]; // expected-error{{from incompatible type 'id'}}
115 ip = [mutSet firstObject]; // expected-error{{from incompatible type 'id'}}
116 ip = [mutArraySet firstObject]; // expected-error{{from incompatible type 'id'}}
117 ip = [block firstObject]; // expected-error{{from incompatible type 'id'}}
/external/llvm-project/clang/test/SemaObjCXX/
Dparameterized_classes_subst.mm42 - (T)firstObject; method
109 …ip = [stringSet firstObject]; // expected-error{{incompatible pointer types assigning to 'int *' f…
110 …ip = [mutStringSet firstObject]; // expected-error{{incompatible pointer types assigning to 'int *…
111 …ip = [widgetSet firstObject]; // expected-error{{incompatible pointer types assigning to 'int *' f…
112 …ip = [untypedMutSet firstObject]; // expected-error{{incompatible pointer types assigning to 'int …
113 …ip = [mutStringArraySet firstObject]; // expected-error{{incompatible pointer types assigning to '…
114 …ip = [set firstObject]; // expected-error{{incompatible pointer types assigning to 'int *' from 'i…
115 …ip = [mutSet firstObject]; // expected-error{{incompatible pointer types assigning to 'int *' from…
116 …ip = [mutArraySet firstObject]; // expected-error{{incompatible pointer types assigning to 'int *'…
117 …ip = [block firstObject]; // expected-error{{incompatible pointer types assigning to 'int *' from …
/external/llvm-project/clang/test/CodeGenObjC/
Dparameterized_classes.m23 @property (copy,nonatomic) T firstObject; property
32 return array.firstObject;
36 return [array firstObject];
/external/llvm-project/clang/test/ARCMT/
Dobjcmt-subscripting-unavailable.m.result40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
45 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-subscripting-unavailable.m40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
45 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-subscripting-literals-in-arc.m.result63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-subscripting-literals-in-arc.m63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-instancetype.m.result74 + (instancetype) dictionaryWithObjectsAndKeys:(id)firstObject, ...;
79 - (instancetype)initWithObjectsAndKeys:(id)firstObject, ...;
/external/clang/test/ARCMT/
Dobjcmt-subscripting-unavailable.m.result40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
45 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-subscripting-unavailable.m40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
45 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-subscripting-literals-in-arc.m.result63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-subscripting-literals-in-arc.m63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
Dobjcmt-instancetype.m.result74 + (instancetype) dictionaryWithObjectsAndKeys:(id)firstObject, ...;
79 - (instancetype)initWithObjectsAndKeys:(id)firstObject, ...;

123