HomeSort by relevance Sort by last modified time
    Searched full:firstobject (Results 1 - 25 of 28) sorted by null

1 2

  /external/jsilver/src/com/google/clearsilver/jsilver/data/
UniqueStack.java 41 private T firstObject = null;
91 if (firstObject == null) {
92 firstObject = object;
95 if (firstObject.equals(object)) {
115 objectStack.offerLast(firstObject);
116 objectsSet.add(firstObject);
118 // there is no need for using firstObject pointer anymore
119 firstObject = null;
136 returnedValue = firstObject;
137 firstObject = null
    [all...]
  /external/clang/test/CodeGenObjC/
parameterized_classes.m 23 @property (copy,nonatomic) T firstObject;
32 return array.firstObject;
36 return [array firstObject];
  /external/clang/test/Analysis/
DynamicTypePropagation.m 27 @property(readonly) ObjectType firstObject;
45 NSObject *element = [erased firstObject];
variadic-method-types.m 51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1)));
52 - (id)initWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1)));
  /external/clang/test/ARCMT/
objcmt-subscripting-unavailable.m.result 40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
45 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-instancetype.m 74 + dictionaryWithObjectsAndKeys:(id)firstObject, ...;
79 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-instancetype.m.result 74 + (instancetype) dictionaryWithObjectsAndKeys:(id)firstObject, ...;
79 - (instancetype)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-subscripting-literals-in-arc.m 63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-subscripting-literals-in-arc.m.result 63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-subscripting-unavailable.m 40 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
45 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-subscripting-literals.m.result 63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
objcmt-subscripting-literals.m 63 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
68 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
  /external/clang/test/SemaObjC/
cocoa-api-usage.m 51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
cocoa-api-usage.m.fixed 51 + (id)dictionaryWithObjectsAndKeys:(id)firstObject, ...;
56 - (id)initWithObjectsAndKeys:(id)firstObject, ...;
parameterized_classes_subst.m 46 - (T)firstObject;
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'}
    [all...]
attr-availability-1.m 74 + (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1)));
attr-availability.m 106 + (instancetype)dictionaryWithObjectsAndKeys:(id)firstObject, ... __attribute__((sentinel(0,1)));
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDStatsBuilder.m 174 NSString *activeConnection = [values[@"googActiveConnection"] firstObject];
203 NSString *trackId = [values[@"googTrackId"] firstObject];
257 NSString *transportId = [values[@"transportId"] firstObject];
258 if ([values[@"googFrameWidthReceived"] firstObject]) {
  /external/clang/test/SemaObjCXX/
parameterized_classes_subst.mm 42 - (T)firstObject;
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'}
    [all...]
  /external/walt/ios/WALT/
WALTClient.m 165 if (![_client connectToSource:sources.firstObject error:error]) {
177 if (![_client connectToDestination:destinations.firstObject error:error]) {
509 NSData *response = _responseQueue.firstObject;
MenuController.m 95 NSURL *logURL = [urls.firstObject URLByAppendingPathComponent:logName];
DragLatencyController.mm 334 const NSTimeInterval t0 = _touchEvents.firstObject.kernelTime;
358 if (_laserEvents.firstObject.value != 0) {
  /external/webrtc/talk/app/webrtc/objc/
RTCFileLogger.mm 53 NSString *documentsDirPath = [paths firstObject];
  /external/webrtc/webrtc/modules/video_capture/ios/
rtc_video_capture_ios_objc.mm 187 return [[_captureSession outputs] firstObject];
  /external/guice/core/test/com/google/inject/spi/
ElementsTest.java     [all...]

Completed in 926 milliseconds

1 2