HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 426 - 450 of 5548) sorted by null

<<11121314151617181920>>

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUConfig.java 47 * Get ICU configuration property value for the given name.
51 public static String get(String name) { method in class:ICUConfig
52 return get(name, null);
56 * Get ICU configuration property value for the given name.
62 public static String get(String name, String def) { method in class:ICUConfig
SimpleCache.java 47 public V get(Object key) { method in class:SimpleCache
50 Map<K, V> map = ref.get();
52 return map.get(key);
63 map = ref.get();
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
IntHashtable.java 34 public int get(int key) { method in class:IntHashtable
35 Integer value = table.get(new Integer(key));
IntStringHashtable.java 34 public String get(int key) { method in class:IntStringHashtable
35 String value = table.get(new Integer(key));
LongHashtable.java 33 public int get(long key) { method in class:LongHashtable
34 Integer value = table.get(new Long(key));
  /external/icu/icu4c/source/common/unicode/
enumset.h 42 inline int32_t contains(T toCheck) const { return get(toCheck); }
44 inline int32_t get(T toCheck) const { return (fBools & flag(toCheck))?1:0; } function in class:EnumSet
errorcode.h 99 UErrorCode get() const { return errorCode; } function in class:ErrorCode
  /external/icu/icu4c/source/test/perf/usetperf/
bitset.cpp 34 UBool BitSet::get(int32_t bitIndex) const { function in class:BitSet
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
ICUCache.java 22 public V get(Object key); method in interface:ICUCache
SimpleCache.java 42 public V get(Object key) { method in class:SimpleCache
45 Map<K, V> map = ref.get();
47 return map.get(key);
57 map = ref.get();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUCache.java 22 public V get(Object key); method in interface:ICUCache
ICUConfig.java 45 * Get ICU configuration property value for the given name.
49 public static String get(String name) { method in class:ICUConfig
50 return get(name, null);
54 * Get ICU configuration property value for the given name.
60 public static String get(String name, String def) { method in class:ICUConfig
SimpleCache.java 43 public V get(Object key) { method in class:SimpleCache
46 Map<K, V> map = ref.get();
48 return map.get(key);
59 map = ref.get();
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
IntHashtable.java 33 public int get(int key) { method in class:IntHashtable
34 Integer value = table.get(new Integer(key));
IntStringHashtable.java 33 public String get(int key) { method in class:IntStringHashtable
34 String value = table.get(new Integer(key));
LongHashtable.java 32 public int get(long key) { method in class:LongHashtable
33 Integer value = table.get(new Long(key));
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
StringPool.java 39 public String get(final String s) { method in class:StringPool
43 final String norm = pool.get(s);
60 public String[] get(final String[] arr) { method in class:StringPool
68 arr[i] = get(arr[i]);
  /external/javassist/src/main/javassist/runtime/
Cflow.java 29 int get() { return depth; } method in class:Cflow.Depth
41 public void enter() { ((Depth)get()).inc(); }
46 public void exit() { ((Depth)get()).dec(); }
51 public int value() { return ((Depth)get()).get(); }
  /external/jsilver/src/com/google/clearsilver/jsilver/output/
ThreadLocalOutputBufferProvider.java 41 public Appendable get() { method in class:ThreadLocalOutputBufferProvider
42 if (!available.get()) {
45 StringBuilder sb = pool.get();
53 if (buffer != pool.get()) {
  /external/junit/src/main/java/org/junit/runners/model/
FrameworkField.java 72 public Object get(Object target) throws IllegalArgumentException, IllegalAccessException { method in class:FrameworkField
73 return field.get(target);
  /external/libchrome/base/mac/
scoped_authorizationref.h 54 AuthorizationRef get() const { function in class:base::mac::ScopedAuthorizationRef
  /external/libchrome/base/memory/
manual_constructor.h 43 inline Type* get() { function in class:base::ManualConstructor
46 inline const Type* get() const { function in class:base::ManualConstructor
50 inline Type* operator->() { return get(); }
51 inline const Type* operator->() const { return get(); }
53 inline Type& operator*() { return *get(); }
54 inline const Type& operator*() const { return *get(); }
66 get()->~Type();
  /external/libchrome/base/win/
scoped_co_mem.h 55 T* get() const { function in class:base::win::ScopedCoMem
scoped_hglobal.h 27 T get() { return data_; } function in class:base::win::ScopedHGlobal
scoped_propvariant.h 43 const PROPVARIANT& get() const { return pv_; } function in class:base::win::ScopedPropVariant

Completed in 1178 milliseconds

<<11121314151617181920>>