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

<<61626364656667686970>>

  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
StdTypeList.java 337 return get(n);
346 result += get(i).getCategory();
374 public Type get(int n) { method in class:StdTypeList
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 36 // entry clearing is needed so that the hash table does not get polluted with
66 * {@link #get} should check for and remove all mappings whose soft values
155 public Object get (final Object key) method in class:SoftValueMap
180 result = ref.get (); // may return null to the caller
196 result = ref.get (); // may return null to the caller
267 final Object currentKeyValue = ref.get (); // can be null already [no need to work around the get() bug, though]
323 result = ref.get (); // can be null already [however, no need to work around 4485942]
416 out.append ("size threshold = " + m_sizeThreshold + ", get clear frequency = " + m_readClearCheckFrequency + ", put clear frequency = " + m_writeClearCheckFrequency + EOL);
417 out.append ("get count: " + m_readAccessCount + ", put count: " + m_writeAccessCount + EOL)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ComputingConcurrentHashMap.java 104 ReferenceEntry<K, V> first = table.get(index);
114 V value = e.getValueReference().get();
218 public V get() { method in class:ComputingConcurrentHashMap.ComputationExceptionReference
257 public V get() { method in class:ComputingConcurrentHashMap.ComputedReference
278 return get();
296 public V get() { method in class:ComputingConcurrentHashMap.ComputingValueReference
376 * Overrides get() to compute on demand. Also throws an exception when {@code null} is returned
390 public V get(Object key) { method in class:ComputingConcurrentHashMap.ComputingMapAdapter
ImmutableMultimap.java 204 Collection<V> valueList = builderMultimap.get(checkNotNull(key));
362 public abstract ImmutableCollection<V> get(K key); method in class:ImmutableMultimap
422 Collection<V> values = map.get(key);
LinkedListMultimap.java 74 * Similarly, {@link #get}, {@link #removeAll}, and {@link #replaceValues}
84 * <p>The methods {@link #get}, {@link #keySet()}, {@link #keys()},
199 Node<K, V> keyTail = keyToKeyTail.get(key);
402 next = keyToKeyHead.get(key);
418 previous = keyToKeyTail.get(key);
424 next = keyToKeyHead.get(key);
657 public List<V> get(final @Nullable K key) { method in class:LinkedListMultimap
1018 return LinkedListMultimap.this.get(key);
1057 @Override public Collection<V> get(@Nullable Object key) {
1058 Collection<V> collection = LinkedListMultimap.this.get((K) key)
    [all...]
StandardTable.java 53 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
113 @Override public V get(@Nullable Object rowKey, @Nullable Object columnKey) { method in class:StandardTable
162 Map<C, V> map = backingMap.get(rowKey);
164 map = factory.get();
219 return value != null && value.equals(get(rowKey, columnKey));
356 return backingMap.get(rowKey);
375 public V get(Object key) { method in class:StandardTable.Row
514 @Override public V get(Object key) {
515 return StandardTable.this.get(key, columnKey);
548 V value = map.get(columnKey)
    [all...]
Synchronized.java 328 public E get(int index) { method in class:Synchronized.SynchronizedList
330 return delegate().get(index);
562 public Collection<V> get(K key) { method in class:Synchronized.SynchronizedMultimap
564 return typePreservingCollection(delegate().get(key), mutex);
703 @Override public List<V> get(K key) { method in class:Synchronized.SynchronizedListMultimap
705 return list(delegate().get(key), mutex);
742 @Override public Set<V> get(K key) { method in class:Synchronized.SynchronizedSetMultimap
744 return set(delegate().get(key), mutex);
786 @Override public SortedSet<V> get(K key) { method in class:Synchronized.SynchronizedSortedSetMultimap
788 return sortedSet(delegate().get(key), mutex)
    [all...]
Tables.java 124 * keys. In other words, calling {@code get(columnKey, rowKey)} on the
126 * get(rowKey, columnKey)} on the original table. Updating the original table
191 public V get(@Nullable Object rowKey, @Nullable Object columnKey) { method in class:Tables.TransposeTable
192 return original.get(columnKey, rowKey);
329 * returns instances of a different class than {@code factory.get()} does.
341 * {@code column(columnKey).get(rowKey)} still runs quickly, since the row key
430 @Override public V2 get(Object rowKey, Object columnKey) { method in class:Tables.TransformedTable
434 ? function.apply(fromTable.get(rowKey, columnKey)) : null;
496 cell.getValue(), get(cell.getRowKey(), cell.getColumnKey()))) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 203 Collection<V> valueList = builderMultimap.get(checkNotNull(key));
352 public abstract ImmutableCollection<V> get(K key); method in class:ImmutableMultimap
412 Collection<V> values = map.get(key);
LinkedListMultimap.java 70 * Similarly, {@link #get}, {@link #removeAll}, and {@link #replaceValues}
80 * <p>The methods {@link #get}, {@link #keySet()}, {@link #keys()},
195 Node<K, V> keyTail = keyToKeyTail.get(key);
398 next = keyToKeyHead.get(key);
414 previous = keyToKeyTail.get(key);
420 next = keyToKeyHead.get(key);
653 public List<V> get(final @Nullable K key) { method in class:LinkedListMultimap
1014 return LinkedListMultimap.this.get(key);
1053 @Override public Collection<V> get(@Nullable Object key) {
1054 Collection<V> collection = LinkedListMultimap.this.get((K) key)
    [all...]
Synchronized.java 315 public E get(int index) { method in class:Synchronized.SynchronizedList
317 return delegate().get(index);
549 public Collection<V> get(K key) { method in class:Synchronized.SynchronizedMultimap
551 return typePreservingCollection(delegate().get(key), mutex);
690 @Override public List<V> get(K key) { method in class:Synchronized.SynchronizedListMultimap
692 return list(delegate().get(key), mutex);
729 @Override public Set<V> get(K key) { method in class:Synchronized.SynchronizedSetMultimap
731 return set(delegate().get(key), mutex);
773 @Override public SortedSet<V> get(K key) { method in class:Synchronized.SynchronizedSortedSetMultimap
775 return sortedSet(delegate().get(key), mutex)
    [all...]
TreeMultiset.java 148 public T get() { method in class:TreeMultiset.Reference
163 Node<E> root = rootReference.get();
169 Node<E> root = rootReference.get();
178 Node<E> node = BstOperations.seek(comparator(), rootReference.get(), e);
196 BstOperations.mutate(comparator(), mutationRule, rootReference.get(), e);
251 Node<E> root = rootReference.get();
259 Node<E> root = rootReference.get();
309 this.expectedRoot = rootReference.get();
321 if (rootReference.get() == expectedRoot) {
325 expectedRoot = rootReference.get();
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
UnmodifiableCollectionTests.java 322 // Test #get()
325 assertCollectionIsUnmodifiable(multimap.get(key), sampleValue);
390 multimap.asMap().get(presentKey).remove(sampleValue);
391 fail("asMap().get().remove() succeeded on unmodifiable multimap");
  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 123 submitter.get();
242 // if waiting works, this should get stuck
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 21 import static com.google.common.util.concurrent.Futures.get;
99 assertSame(DATA1, future.get(0L, TimeUnit.MILLISECONDS));
107 assertSame(DATA1, future1.get(0L, TimeUnit.MILLISECONDS));
108 assertSame(DATA2, future2.get(0L, TimeUnit.MILLISECONDS));
117 future.get(0L, TimeUnit.MILLISECONDS);
132 assertSame(DATA1, future.get(0L, TimeUnit.MILLISECONDS));
143 assertSame(DATA1, future1.get(0L, TimeUnit.MILLISECONDS));
145 assertSame(DATA2, future2.get(0L, TimeUnit.MILLISECONDS));
155 future.get(0L, TimeUnit.MILLISECONDS);
181 assertNull(transformedFuture.get());
    [all...]
  /external/harfbuzz_ng/src/
hb-font-private.hh 71 } get; member in struct:hb_font_funcs_t
217 return klass->get.glyph (this, user_data,
224 return klass->get.glyph_h_advance (this, user_data,
231 return klass->get.glyph_v_advance (this, user_data,
240 return klass->get.glyph_h_origin (this, user_data,
249 return klass->get.glyph_v_origin (this, user_data,
256 return klass->get.glyph_h_kerning (this, user_data,
263 return klass->get.glyph_v_kerning (this, user_data,
272 return klass->get.glyph_extents (this, user_data,
282 return klass->get.glyph_contour_point (this, user_data
    [all...]
  /external/icu4c/i18n/
ucoleitr.cpp 67 const RCEI *get();
111 const RCEI *RCEBuffer::get() function in class:RCEBuffer
140 const PCEI *get();
189 const PCEI *PCEBuffer::get() function in class:PCEBuffer
252 // just get all three orders...
567 const RCEI *rcei = rceb.get();
591 const PCEI *pcei = elems->pce->pceBuffer.get();
  /external/icu4c/test/intltest/
colldata.cpp 133 uint32_t CEList::get(int32_t index) const function in class:CEList
220 const UnicodeString *StringList::get(int32_t index) const function in class:StringList
375 ceToCharsStartingWith->put(ceList->get(0), st, status);
390 ceToCharsStartingWith->put(ceList->get(0), st, status);
500 uint32_t ce = ceList->get(offset);
509 const UnicodeString *string = strings->get(s);
574 uint32_t jce = ceList->get(roffset);
595 if (roffset < maxOffset && isContinuation(ceList->get(roffset))) {
  /external/javassist/src/main/javassist/bytecode/
CodeAttribute.java 89 AttributeInfo ai = (AttributeInfo)src_attr.get(i);
182 public byte[] get() { method in class:CodeAttribute
183 throw new UnsupportedOperationException("CodeAttribute.get()");
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 548 verifyAssignable(Type.get(returnType), simplePop(frame));
926 return Type.get(classPool.get(name));
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSStatefulObject.java 57 Semaphore semaphore = _semaphores.get(thread);
63 semaphore = _semaphores.get(thread);
95 aLog.append(_semaphores.get(thread));
  /external/jmonkeyengine/engine/src/test/jme3test/games/
CubeField.java 191 mat.setColor("Color", obstacleColors.get(FastMath.nextRandomInt(0, obstacleColors.size() - 1)));
279 Geometry cubeModel = cubeField.get(i);
290 if (cubeField.get(i).getLocalTranslation().getX() + 10 < player.getLocalTranslation().getX()){
291 cubeField.get(i).removeFromParent();
292 cubeField.remove(cubeField.get(i));
  /external/kernel-headers/original/linux/
netfilter.h 113 /* Non-inclusive ranges: use 0/0/NULL to never get called. */
123 int (*get)(struct sock *sk, int optval, void __user *user, int *len); member in struct:nf_sockopt_ops
128 /* Use the module struct to lock set/get code in place */
138 /* Functions to register get/setsockopt ranges (non-inclusive). You
  /external/littlemock/tests/com/google/testing/littlemock/
LittleMockTest.java 120 public String get(int index); method in interface:LittleMockTest.Foo
411 doReturn("first").when(mFoo).get(0);
412 assertEquals("first", mFoo.get(0));
416 doReturn("first").when(mFoo).get(0);
417 doReturn("second").when(mFoo).get(0);
418 assertEquals("second", mFoo.get(0));
422 doReturn("one").when(mFoo).get(1);
423 doReturn("two").when(mFoo).get(2);
424 assertEquals("one", mFoo.get(1));
425 assertEquals("two", mFoo.get(2))
    [all...]
  /external/llvm/include/llvm/MC/
SectionKind.h 200 static SectionKind get(Kind K) { function in class:llvm::SectionKind
207 static SectionKind getMetadata() { return get(Metadata); }
208 static SectionKind getText() { return get(Text); }
209 static SectionKind getReadOnly() { return get(ReadOnly); }
211 return get(Mergeable1ByteCString);
214 return get(Mergeable2ByteCString);
217 return get(Mergeable4ByteCString);
219 static SectionKind getMergeableConst() { return get(MergeableConst); }
220 static SectionKind getMergeableConst4() { return get(MergeableConst4); }
221 static SectionKind getMergeableConst8() { return get(MergeableConst8);
    [all...]

Completed in 676 milliseconds

<<61626364656667686970>>