HomeSort by relevance Sort by last modified time
    Searched refs:MAP (Results 26 - 50 of 129) sorted by null

12 3 4 5 6

  /frameworks/base/core/java/android/bluetooth/
BluetoothProfile.java 104 * MAP Profile
107 public static final int MAP = 9;
BluetoothUuid.java 73 public static final ParcelUuid MAP =
94 ObexObjectPush, PANU, NAP, MAP, MNS, MAS, SAP};
140 return uuid.equals(MAP);
BluetoothMap.java 29 * This class provides the APIs to control the Bluetooth MAP
40 "android.bluetooth.map.profile.action.CONNECTION_STATE_CHANGED";
109 Log.e(TAG, "Could not bind to Bluetooth MAP Service with " + intent);
155 * object is currently not connected to the Map service.
174 * the Map service.
192 * currently connected to the Map service.
209 * supported for MAP server.
239 * Check class bits for possible Map support.
241 * given class bits might support Map. It is not accurate for all
243 * @return True if this device might support Map
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
diagnostic.h 218 #define diagnostic_last_module_changed(DC, MAP) \
219 ((DC)->last_module != MAP)
223 #define diagnostic_set_last_module(DC, MAP) \
224 (DC)->last_module = MAP
  /development/build/tools/
mk_sdk_repo_xml.sh 339 MAP=""
410 MAP=$(parse_attributes "$PROPS" ${ATTRS[@]})
414 output_attributes "$ELEMENT" "$OUT" $MAP
442 MAP=$(parse_attributes "$PROPS" ${ATTRS_ARCHIVE[@]})
444 if [[ "${MAP/ host-os /}" == "$MAP" ]]; then
445 MAP="$MAP host-os $OS"
447 output_attributes "archive" "$OUT" $MAP
  /external/okhttp/okio/okio/src/main/java/okio/
Base64.java 110 private static final byte[] MAP = new byte[] {
125 return encode(in, MAP);
132 private static String encode(byte[] in, byte[] map) {
137 out[index++] = map[(in[i] & 0xff) >> 2];
138 out[index++] = map[((in[i] & 0x03) << 4) | ((in[i + 1] & 0xff) >> 4)];
139 out[index++] = map[((in[i + 1] & 0x0f) << 2) | ((in[i + 2] & 0xff) >> 6)];
140 out[index++] = map[(in[i + 2] & 0x3f)];
144 out[index++] = map[(in[end] & 0xff) >> 2];
145 out[index++] = map[(in[end] & 0x03) << 4];
150 out[index++] = map[(in[end] & 0xff) >> 2]
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/
vp9_cx_iface.c 450 #define MAP(id, var) case id: *(RECAST(id, arg)) = var; break
456 MAP(VP8E_GET_LAST_QUANTIZER, vp9_get_quantizer(ctx->cpi));
457 MAP(VP8E_GET_LAST_QUANTIZER_64,
462 #undef MAP
471 #define MAP(id, var) case id: var = CAST(id, args); break;
474 MAP(VP8E_SET_CPUUSED, extra_cfg.cpu_used);
475 MAP(VP8E_SET_ENABLEAUTOALTREF, extra_cfg.enable_auto_alt_ref);
476 MAP(VP8E_SET_NOISE_SENSITIVITY, extra_cfg.noise_sensitivity);
477 MAP(VP8E_SET_SHARPNESS, extra_cfg.sharpness);
478 MAP(VP8E_SET_STATIC_THRESHOLD, extra_cfg.static_thresh)
983 vpx_active_map_t *const map = va_arg(args, vpx_active_map_t *); local
    [all...]
vp9_dx_iface.c 479 #define MAP(id, var) case id: var = data; break;
482 MAP(VP8_SET_DBG_COLOR_REF_FRAME, ctx->dbg_color_ref_frame_flag);
483 MAP(VP8_SET_DBG_COLOR_MB_MODES, ctx->dbg_color_mb_modes_flag);
484 MAP(VP8_SET_DBG_COLOR_B_MODES, ctx->dbg_color_b_modes_flag);
485 MAP(VP8_SET_DBG_DISPLAY_MV, ctx->dbg_display_mv_flag);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
MapProfile.java 35 * MapProfile handles Bluetooth MAP profile.
49 BluetoothUuid.MAP,
54 static final String NAME = "MAP";
65 // We just bound to the service, so refresh the UI for any connected MAP devices.
103 BluetoothProfile.MAP);
116 return false; // MAP never connects out
176 return BluetoothProfile.MAP;
205 BluetoothAdapter.getDefaultAdapter().closeProfileProxy(BluetoothProfile.MAP,
209 Log.w(TAG, "Error cleaning up MAP proxy", t);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8_cx_iface.c 487 #define MAP(id, var) case id: *(RECAST(id, arg)) = var; break
494 MAP(VP8E_GET_LAST_QUANTIZER, vp8_get_quantizer(ctx->cpi));
495 MAP(VP8E_GET_LAST_QUANTIZER_64, vp8_reverse_trans(vp8_get_quantizer(ctx->cpi)));
499 #undef MAP
510 #define MAP(id, var) case id: var = CAST(id, args); break;
514 MAP(VP8E_SET_CPUUSED, xcfg.cpu_used);
515 MAP(VP8E_SET_ENABLEAUTOALTREF, xcfg.enable_auto_alt_ref);
516 MAP(VP8E_SET_NOISE_SENSITIVITY, xcfg.noise_sensitivity);
517 MAP(VP8E_SET_SHARPNESS, xcfg.Sharpness);
518 MAP(VP8E_SET_STATIC_THRESHOLD, xcfg.static_thresh)
1155 vpx_active_map_t *map = (vpx_active_map_t *)data; local
    [all...]
vp8_dx_iface.c 806 #define MAP(id, var) case id: var = data; break;
810 MAP (VP8_SET_DBG_COLOR_REF_FRAME, ctx->dbg_color_ref_frame_flag);
811 MAP (VP8_SET_DBG_COLOR_MB_MODES, ctx->dbg_color_mb_modes_flag);
812 MAP (VP8_SET_DBG_COLOR_B_MODES, ctx->dbg_color_b_modes_flag);
813 MAP (VP8_SET_DBG_DISPLAY_MV, ctx->dbg_display_mv_flag);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/util/
AssertTest.java 26 import java.util.Map;
138 * Test the assertNotEmpty(Map,String) method
142 final Map MAP = Collections.singletonMap("key", "value");
143 Assert.notNullOrEmpty(MAP, MESSAGE);
147 Assert.notNullOrEmpty((Map) null, MESSAGE);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/util/
AssertTest.java 22 import java.util.Map;
140 * Test the assertNotEmpty(Map,String) method
144 final Map MAP = Collections.singletonMap("key", "value");
145 Assert.notNullOrEmpty(MAP, MESSAGE);
149 Assert.notNullOrEmpty((Map) null, MESSAGE);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
StringPrep.java 42 * <li> Map: For each character in the input, check if it has a mapping
198 private static final int MAP = 0x0001;
372 values.type = MAP;
395 private StringBuffer map( UCharacterIterator iter, int options) method in class:StringPrep
414 }else if((val.type == MAP)){
467 1) Map -- For each character in the input, check if it has a mapping
523 // map
524 StringBuffer mapOut = map(src,options);
  /external/openfst/src/lib/
mapped-file.cc 61 MappedFile* MappedFile::Map(istream* s, const FstReadOptions &opts,
64 if (opts.mode == FstReadOptions::MAP && spos >= 0 &&
72 void *map = mmap(0, upsize, PROT_READ, MAP_SHARED, fd, pos - offset); local
73 char *data = reinterpret_cast<char*>(map);
74 if (close(fd) == 0 && map != MAP_FAILED) {
76 region.mmap = map;
83 << " from " << opts.source.c_str() << " to addr " << map;
fst.cc 186 if (mode == "map") {
187 return MAP;
  /cts/tools/dex-tools/src/dex/reader/
DexFileReader.java 46 private static final int MAP = 1; // no size!
78 readOffset(MAP);
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
CodeGenUtil.kt 110 BracketExpr.BracketAccessor.MAP -> {
  /external/icu/icu4c/source/tools/gensprep/
filterRFC3454.pl 183 $line =~ s/Map to nothing/MAP/;
185 $line =~ s/Case map/MAP/;
186 $line =~ s/Additional folding/MAP/;
303 $comment ="# Map table for SASL profile (rfc4013.txt)\n\n";
309 print $outFH "00A0; 0020; MAP\n";
310 print $outFH "1680; 0020; MAP\n";
311 print $outFH "2000; 0020; MAP\n";
312 print $outFH "2001; 0020; MAP\n"
    [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/deqp/executor/
xeTestResultParser.cpp 187 #define PRINT_HASHES(MAP) printHashes(#MAP, MAP, DE_LENGTH_OF_ARRAY(MAP))
212 throw TestResultParseError(string("Could not map '") + name + "' to " + enumName);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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");
    [all...]
SerializationStressTest3.java 713 objToSave = MAP;
718 assertTrue(MSG_TEST_FAILED + objToSave, MAP.equals(objLoaded));
741 Object col = Collections.synchronizedMap(MAP);
770 Object col = Collections.unmodifiableMap(MAP);
    [all...]
  /external/llvm/lib/Support/
regcomp.c 992 # define MAP(n) (((n) <= 1) ? (n) : ((n) == INFINITY) ? INF : N)
1000 switch (REP(MAP(from), MAP(to))) {
    [all...]
  /external/pcre/dist/
pcre_jit_test.c 123 #define MAP (PCRE_MULTILINE | PCRE_NEWLINE_ANYCRLF | PCRE_UCP)
185 { MAP, 0, "\\B", "_\xa1" },
186 { MAP, 0, "\\b_\\b[,A]\\B", "_," },
    [all...]

Completed in 977 milliseconds

12 3 4 5 6