HomeSort by relevance Sort by last modified time
    Searched defs:mapValue (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
SoftCache.java 49 Object mapValue = map.get(key);
50 if(mapValue != null) {
51 if(!(mapValue instanceof CacheValue)) {
53 return (V)mapValue;
55 CacheValue<V> cv = (CacheValue<V>)mapValue;
70 mapValue = (value != null && CacheValue.futureInstancesWillBeStrong()) ?
72 mapValue = map.putIfAbsent(key, mapValue);
73 if(mapValue == null) {
80 if(!(mapValue instanceof CacheValue))
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
SoftCache.java 47 Object mapValue = map.get(key);
48 if(mapValue != null) {
49 if(!(mapValue instanceof CacheValue)) {
51 return (V)mapValue;
53 CacheValue<V> cv = (CacheValue<V>)mapValue;
68 mapValue = (value != null && CacheValue.futureInstancesWillBeStrong()) ?
70 mapValue = map.putIfAbsent(key, mapValue);
71 if(mapValue == null) {
78 if(!(mapValue instanceof CacheValue))
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
KeepProcessor.java 87 public Object mapValue(Object value) {
97 return super.mapValue(value);
PackageRemapper.java 85 public Object mapValue(Object value) {
116 return super.mapValue(value);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ItemType.java 49 private final int mapValue;
60 * @param mapValue value when represented in a {@link MapItem}
63 private ItemType(int mapValue, String typeName) {
64 this.mapValue = mapValue;
81 return mapValue;
  /dalvik/dx/src/com/android/dx/dex/file/
ItemType.java 49 private final int mapValue;
60 * @param mapValue value when represented in a {@link MapItem}
63 private ItemType(int mapValue, String typeName) {
64 this.mapValue = mapValue;
81 return mapValue;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ItemType.java 49 private final int mapValue;
60 * @param mapValue value when represented in a {@link MapItem}
63 private ItemType(int mapValue, String typeName) {
64 this.mapValue = mapValue;
81 return mapValue;
  /external/opencv3/samples/gpu/
pyrlk_optical_flow.cpp 74 template <typename T> inline T mapValue(T x, T a, T b, T c, T d)
  /external/opencv3/samples/tapi/
tvl1_optical_flow.cpp 38 template <typename T> inline T mapValue(T x, T a, T b, T c, T d)
75 row[j][1] = static_cast<unsigned char> (mapValue (-ptr_v[j], -maxDisplacement, maxDisplacement, 0.0f, 255.0f));
76 row[j][2] = static_cast<unsigned char> (mapValue ( ptr_u[j], -maxDisplacement, maxDisplacement, 0.0f, 255.0f));
  /frameworks/base/core/java/android/util/
LruCache.java 115 V mapValue;
117 mapValue = map.get(key);
118 if (mapValue != null) {
120 return mapValue;
139 mapValue = map.put(key, createdValue);
141 if (mapValue != null) {
143 map.put(key, mapValue);
149 if (mapValue != null) {
150 entryRemoved(false, key, createdValue, mapValue);
151 return mapValue;
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
LruCache.java 120 V mapValue;
122 mapValue = map.get(key);
123 if (mapValue != null) {
125 return mapValue;
144 mapValue = map.put(key, createdValue);
146 if (mapValue != null) {
148 map.put(key, mapValue);
154 if (mapValue != null) {
155 entryRemoved(false, key, createdValue, mapValue);
156 return mapValue;
    [all...]
  /frameworks/support/v4/java/android/support/v4/util/
LruCache.java 82 V mapValue;
84 mapValue = map.get(key);
85 if (mapValue != null) {
87 return mapValue;
106 mapValue = map.put(key, createdValue);
108 if (mapValue != null) {
110 map.put(key, mapValue);
116 if (mapValue != null) {
117 entryRemoved(false, key, createdValue, mapValue);
118 return mapValue;
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMapTest.java 230 Integer mapValue = mapEntry.getValue();
232 if (!mapValue.equals(trieValue)) {
233 assertEquals(style + "\tValues match", mapValue, trieValue);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMapTest.java 226 Integer mapValue = mapEntry.getValue();
228 if (!mapValue.equals(trieValue)) {
229 assertEquals(style + "\tValues match", mapValue, trieValue);
  /external/dexmaker/lib/
jarjar.jar 
  /external/guice/lib/build/
jarjar-1.1.jar 
  /external/testng/lib-supplied/
jarjar-issue-21.jar 
  /prebuilts/tools/common/m2/repository/com/googlecode/jarjar/jarjar/1.3/
jarjar-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/jarjar/jarjar/1.2.1/
jarjar-1.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/anarres/jarjar/jarjar-core/1.0.0/
jarjar-core-1.0.0.jar 
  /external/jarjar/lib/
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /prebuilts/tools/common/asm-tools/
asm-commons-4.0.jar 
  /prebuilts/tools/common/m2/repository/asm/asm-commons/3.3/
asm-commons-3.3.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/5.0.1/
asm-commons-5.0.1.jar 

Completed in 376 milliseconds

1 2 3 4