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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 9 MAP = {
23 new = unicode(MAP[attr.value])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 9 MAP = {
23 new = unicode(MAP[attr.value])
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 38 /** {@code non-null;} map from all the common rops to dalvik opcodes */
39 private static final HashMap<Rop, Dop> MAP;
54 MAP = new HashMap<Rop, Dop>(400);
55 MAP.put(Rops.NOP, Dops.NOP);
56 MAP.put(Rops.MOVE_INT, Dops.MOVE);
57 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE);
58 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
59 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE);
60 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT);
61 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 37 /** {@code non-null;} map from all the common rops to dalvik opcodes */
38 private static final HashMap<Rop, Dop> MAP;
225 MAP = new HashMap<Rop, Dop>(400);
226 MAP.put(Rops.NOP, Dops.NOP);
227 MAP.put(Rops.MOVE_INT, Dops.MOVE);
228 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE);
229 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
230 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE);
231 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT);
232 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
RopToDop.java 38 /** {@code non-null;} map from all the common rops to dalvik opcodes */
39 private static final HashMap<Rop, Dop> MAP;
226 MAP = new HashMap<Rop, Dop>(400);
227 MAP.put(Rops.NOP, Dops.NOP);
228 MAP.put(Rops.MOVE_INT, Dops.MOVE);
229 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE);
230 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
231 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE);
232 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT);
233 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE)
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
Base64.java 127 private static final byte[] MAP = new byte[] {
139 out[index++] = MAP[(in[i] & 0xff) >> 2];
140 out[index++] = MAP[((in[i] & 0x03) << 4) | ((in[i + 1] & 0xff) >> 4)];
141 out[index++] = MAP[((in[i + 1] & 0x0f) << 2) | ((in[i + 2] & 0xff) >> 6)];
142 out[index++] = MAP[(in[i + 2] & 0x3f)];
146 out[index++] = MAP[(in[end] & 0xff) >> 2];
147 out[index++] = MAP[(in[end] & 0x03) << 4];
152 out[index++] = MAP[(in[end] & 0xff) >> 2];
153 out[index++] = MAP[((in[end] & 0x03) << 4) | ((in[end + 1] & 0xff) >> 4)];
154 out[index++] = MAP[((in[end + 1] & 0x0f) << 2)]
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothProfile.java 101 * MAP Profile
104 public static final int MAP = 9;
BluetoothUuid.java 69 public static final ParcelUuid MAP =
82 ObexObjectPush, PANU, NAP, MAP, MNS, MAS};
128 return uuid.equals(MAP);
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 46 private static final int MAP = 1; // no size!
78 readOffset(MAP);
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 26 MAP(C1, 33) \
27 MAP(C2, 34) \
28 MAP(C3, 35) \
29 MAP(C4, 36) \
30 MAP(C8, 37) \
31 MAP(C9, 38) \
32 MAP(CA, 39) \
33 MAP(CB, 40) \
34 MAP(E8, 41) \
35 MAP(F0, 42)
    [all...]
  /external/libvpx/libvpx/vp8/
vp8_cx_iface.c 486 #define MAP(id, var) case id: *(RECAST(id, arg)) = var; break
493 MAP(VP8E_GET_LAST_QUANTIZER, vp8_get_quantizer(ctx->cpi));
494 MAP(VP8E_GET_LAST_QUANTIZER_64, vp8_reverse_trans(vp8_get_quantizer(ctx->cpi)));
498 #undef MAP
509 #define MAP(id, var) case id: var = CAST(id, args); break;
513 MAP(VP8E_SET_CPUUSED, xcfg.cpu_used);
514 MAP(VP8E_SET_ENABLEAUTOALTREF, xcfg.enable_auto_alt_ref);
515 MAP(VP8E_SET_NOISE_SENSITIVITY, xcfg.noise_sensitivity);
516 MAP(VP8E_SET_SHARPNESS, xcfg.Sharpness);
517 MAP(VP8E_SET_STATIC_THRESHOLD, xcfg.static_thresh)
1153 vpx_active_map_t *map = (vpx_active_map_t *)data; local
    [all...]
vp8_dx_iface.c 799 #define MAP(id, var) case id: var = data; break;
803 MAP (VP8_SET_DBG_COLOR_REF_FRAME, ctx->dbg_color_ref_frame_flag);
804 MAP (VP8_SET_DBG_COLOR_MB_MODES, ctx->dbg_color_mb_modes_flag);
805 MAP (VP8_SET_DBG_COLOR_B_MODES, ctx->dbg_color_b_modes_flag);
806 MAP (VP8_SET_DBG_DISPLAY_MV, ctx->dbg_display_mv_flag);
  /external/libvpx/libvpx/vp9/
vp9_cx_iface.c 408 #define MAP(id, var) case id: *(RECAST(id, arg)) = var; break
414 MAP(VP8E_GET_LAST_QUANTIZER, vp9_get_quantizer(ctx->cpi));
415 MAP(VP8E_GET_LAST_QUANTIZER_64,
420 #undef MAP
430 #define MAP(id, var) case id: var = CAST(id, args); break;
433 MAP(VP8E_SET_CPUUSED, xcfg.cpu_used);
434 MAP(VP8E_SET_ENABLEAUTOALTREF, xcfg.enable_auto_alt_ref);
435 MAP(VP8E_SET_NOISE_SENSITIVITY, xcfg.noise_sensitivity);
436 MAP(VP8E_SET_SHARPNESS, xcfg.Sharpness);
437 MAP(VP8E_SET_STATIC_THRESHOLD, xcfg.static_thresh)
    [all...]
vp9_dx_iface.c 623 #define MAP(id, var) case id: var = data; break;
626 MAP(VP8_SET_DBG_COLOR_REF_FRAME, ctx->dbg_color_ref_frame_flag);
627 MAP(VP8_SET_DBG_COLOR_MB_MODES, ctx->dbg_color_mb_modes_flag);
628 MAP(VP8_SET_DBG_COLOR_B_MODES, ctx->dbg_color_b_modes_flag);
629 MAP(VP8_SET_DBG_DISPLAY_MV, ctx->dbg_display_mv_flag);
  /bionic/libc/upstream-netbsd/libc/regex/
regcomp.c 1143 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N)
1157 switch (REP(MAP(from), MAP(to))) {
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest.java 50 import java.util.Map;
116 static final Map<String , String> TABLE = new Hashtable<String , String>();
118 static final Map<String , String> MAP = new HashMap<String , String>();
163 MAP.put("one", "1");
164 MAP.put("two", "2");
165 MAP.put("three", "3");
  /external/llvm/lib/Support/
regcomp.c 984 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N)
992 switch (REP(MAP(from), MAP(to))) {
    [all...]
  /external/openfst/src/include/fst/
fst.h 59 enum FileReadMode { READ, MAP };
68 FileReadMode mode; // Read or map files (advisory, if possible)
  /ndk/sources/host-tools/ndk-stack/regex/
regcomp.c 948 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N)
956 switch (REP(MAP(from), MAP(to))) {
    [all...]
  /external/stlport/src/c_locale_win32/
c_locale_win32.c 283 #define MAP(x, y) if ((mask & x) != 0) ret |= (y)
286 MAP(C1_UPPER, _Locale_UPPER | _Locale_PRINT);
287 MAP(C1_LOWER, _Locale_LOWER | _Locale_PRINT);
288 MAP(C1_DIGIT, _Locale_DIGIT | _Locale_PRINT);
289 MAP(C1_SPACE, _Locale_SPACE | _Locale_PRINT);
290 MAP(C1_PUNCT, _Locale_PUNCT | _Locale_PRINT);
291 /* MAP(C1_BLANK, ?); */
292 MAP(C1_XDIGIT, _Locale_XDIGIT | _Locale_PRINT);
293 MAP(C1_ALPHA, _Locale_ALPHA | _Locale_PRINT);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 283 #define MAP(x, y) if ((mask & x) != 0) ret |= (y)
286 MAP(C1_UPPER, _Locale_UPPER | _Locale_PRINT);
287 MAP(C1_LOWER, _Locale_LOWER | _Locale_PRINT);
288 MAP(C1_DIGIT, _Locale_DIGIT | _Locale_PRINT);
289 MAP(C1_SPACE, _Locale_SPACE | _Locale_PRINT);
290 MAP(C1_PUNCT, _Locale_PUNCT | _Locale_PRINT);
291 /* MAP(C1_BLANK, ?); */
292 MAP(C1_XDIGIT, _Locale_XDIGIT | _Locale_PRINT);
293 MAP(C1_ALPHA, _Locale_ALPHA | _Locale_PRINT);
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 81 #include <map>
181 std::map<int, Test> TheMapOfTests;
238 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
244 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
261 for (std::map<int,Test>::iterator it = TheMapOfTests.begin();
6251 map_t map; member in namespace:test134
    [all...]
  /external/valgrind/unittest/
racecheck_unittest.cc 5784 map_t map; member in namespace:test134
    [all...]
  /prebuilts/devtools/tools/lib/
sdklib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.2.0/
sdklib-22.2.0.jar 

Completed in 1841 milliseconds

1 2