HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 1001 - 1025 of 2528) sorted by null

<<41424344454647484950>>

  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableList.java 104 public Object get(int index) { method in class:EmptyImmutableList
105 // guaranteed to fail, but at least we get a consistent message
ImmutableBiMap.java 238 @Override public V get(@Nullable Object key) { method in class:ImmutableBiMap
239 return delegate().get(key);
SingletonImmutableList.java 45 public E get(int index) { method in class:SingletonImmutableList
126 return that.size() == 1 && element.equals(that.get(0));
SingletonImmutableTable.java 87 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) { method in class:SingletonImmutableTable
Table.java 101 V get(@Nullable Object rowKey, @Nullable Object columnKey); method in interface:Table
233 * <p>In contrast, the maps returned by {@code rowMap().get()} have the same
248 * <p>In contrast, the maps returned by {@code columnMap().get()} have the
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 89 public V get(long timeout, TimeUnit unit) throws InterruptedException, method in class:AbstractFuture
91 return sync.get(unit.toNanos(timeout));
110 public V get() throws InterruptedException, ExecutionException { method in class:AbstractFuture
111 return sync.get();
252 * {@link #get()}.
254 V get(long nanos) throws TimeoutException, CancellationException, method in class:AbstractFuture.Sync
271 V get() throws CancellationException, ExecutionException, method in class:AbstractFuture.Sync
AbstractListeningExecutorService.java 112 return f.get();
163 f.get();
215 f.get(nanos, TimeUnit.NANOSECONDS);
AbstractService.java 93 // put the exception in the future, the user can get it via Future.get()
118 // put the exception in the future, the user can get it via Future.get()
247 public State get(long timeout, TimeUnit unit) method in class:AbstractService.Transition
250 return super.get(timeout, unit);
AtomicDouble.java 86 public final double get() { method in class:AtomicDouble
201 return Double.toString(get());
209 return (int) get();
217 return (long) get();
225 return (float) get();
232 return get();
244 s.writeDouble(get()); method
AtomicDoubleArray.java 92 public final double get(int i) { method in class:AtomicDoubleArray
93 return longBitsToDouble(longs.get(i));
183 long current = longs.get(i);
202 long current = longs.get(i);
226 b.append(longBitsToDouble(longs.get(i)));
250 s.writeDouble(get(i)); method
AtomicLongMap.java 67 public long get(K key) { method in class:AtomicLongMap
68 AtomicLong atomic = map.get(key);
69 return atomic == null ? 0L : atomic.get();
92 AtomicLong atomic = map.get(key);
102 long oldValue = atomic.get();
141 AtomicLong atomic = map.get(key);
151 long oldValue = atomic.get();
176 AtomicLong atomic = map.get(key);
186 long oldValue = atomic.get();
221 AtomicLong atomic = map.get(key)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableListMultimap.java 275 @Override public ImmutableList<V> get(@Nullable K key) { method in class:ImmutableListMultimap
277 ImmutableList<V> list = (ImmutableList<V>) map.get(key);
MapMaker.java 77 return get(key);
83 if (containsKey(key) && get(key).equals(value)) {
92 if (containsKey(key) && get(key).equals(oldValue)) {
123 public V get(Object k) { method in class:MapMaker.ExpiringComputingMap
125 V result = super.get(k);
129 * Map.get(), and tools like IDEs and Findbugs can catch situations where this isn't the
132 * The alternative is to add an overloaded method, but the chances of a user calling get()
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionToArrayTester.java 151 assertEquals(expected.get(i), array[i]);
  /external/guava/guava-tests/test/com/google/common/collect/
SimpleAbstractMultisetTest.java 53 assertEquals(addCalls.get(), 1);
72 Integer frequency = backingMap.get(element);
104 Integer frequency = backingMap.get(getElement());
127 Integer count = backingMap.get(element);
WellBehavedMapTest.java 98 assertNull(map.get(Foo.Y));
  /external/icu4c/common/
resbund.cpp 314 ResourceBundle ResourceBundle::get(int32_t indexR, UErrorCode& status) const { function in class:ResourceBundle
332 ResourceBundle ResourceBundle::get(const char* key, UErrorCode& status) const { function in class:ResourceBundle
servls.cpp 45 ICULocaleService::get(const Locale& locale, UErrorCode& status) const function in class:ICULocaleService
47 return get(locale, LocaleKey::KIND_ANY, NULL, status);
51 ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const function in class:ICULocaleService
53 return get(locale, kind, NULL, status);
57 ICULocaleService::get(const Locale& locale, Locale* actualReturn, UErrorCode& status) const function in class:ICULocaleService
59 return get(locale, LocaleKey::KIND_ANY, actualReturn, status);
63 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const function in class:ICULocaleService
  /external/icu4c/test/perf/utrie2perf/
utrie2perf.cpp 119 static UPerfFunction* get(const UTrie2PerfTest &testcase) { function in class:CheckFCD
139 static UPerfFunction* get(const UTrie2PerfTest &testcase) {
160 static UPerfFunction* get(const UTrie2PerfTest &testcase) {
187 static UPerfFunction* get(const UTrie2PerfTest &testcase) { function in class:ToNFC
211 static UPerfFunction* get(const UTrie2PerfTest &testcase) { function in class:GetBiDiClass
232 case 0: name = "CheckFCD"; if (exec) return CheckFCD::get(*this); break;
233 case 1: name = "ToNFC"; if (exec) return ToNFC::get(*this); break;
234 case 2: name = "GetBiDiClass"; if (exec) return GetBiDiClass::get(*this); break;
236 case 3: name = "CheckFCDAlwaysGet"; if (exec) return CheckFCDAlwaysGet::get(*this); break;
237 case 4: name = "CheckFCDUTF8"; if (exec) return CheckFCDUTF8::get(*this); break
    [all...]
  /external/javassist/src/main/javassist/bytecode/
AttributeInfo.java 152 public byte[] get() { return info; } method in class:AttributeInfo
192 AttributeInfo attr = (AttributeInfo)list.get(i);
233 AttributeInfo attr = (AttributeInfo)list.get(i);
245 AttributeInfo attr = (AttributeInfo)list.get(i);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
GImpactCollisionShape.java 88 float tempFloat = vertices.get();
94 triangleIndexBase.putInt(indices.get(i));
MeshCollisionShape.java 85 float tempFloat = vertices.get();
91 triangleIndexBase.putInt(indices.get(i));
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
CompactArray.java 68 * They are serialized automatically when get() method is called.
95 Integer i = indexPool.get(obj);
129 public final T get(int index, T store) { method in class:CompactArray
197 index[i] = obj != null ? indexPool.get(obj) : -1;
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
AppTask.java 85 public V get() throws InterruptedException, ExecutionException { method in class:AppTask
100 public V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { method in class:AppTask
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
DefineList.java 83 public String get(String key){ method in class:DefineList
84 // I do not see the point of forcing a rebuild on get()
87 return defines.get(key);

Completed in 2704 milliseconds

<<41424344454647484950>>