/development/ndk/platforms/android-9/include/linux/mtd/ |
D | map.h | 25 #define map_bankwidth_is_1(map) (0) argument 27 #define map_bankwidth_is_2(map) (0) argument 29 #define map_bankwidth_is_4(map) (0) argument 31 #define map_calc_words(map) ((map_bankwidth(map) + (sizeof(unsigned long)-1))/ sizeof(unsigned long… argument 33 #define map_bankwidth_is_8(map) (0) argument 35 #define map_bankwidth_is_16(map) (0) argument 37 #define map_bankwidth_is_32(map) (0) argument 67 struct mtd_info *(*probe)(struct map_info *map); 74 struct mtd_info *do_map_probe(const char *name, struct map_info *map); 76 #define ENABLE_VPP(map) do { if(map->set_vpp) map->set_vpp(map, 1); } while(0) argument [all …]
|
D | cfi.h | 165 #define CMD(x) cfi_build_cmd((x), map, cfi) 168 #define MERGESTATUS(x) cfi_merge_status((x), map, cfi) 184 typedef int (*varsize_frob_t)(struct map_info *map, struct flchip *chip,
|
/development/testrunner/tests/ |
D | am_instrument_parser_tests.py | 77 map = result.GetResultFields() 78 self.assertEquals('testLaunchComplexActivity', map['test']) 79 self.assertEquals('LaunchPerformanceTest', map['class']) 80 self.assertEquals('1', map['current']) 81 self.assertEquals('2', map['numtests']) 82 self.assertEquals('InstrumentationTestRunner', map['id']) 86 map = result.GetResultFields() 87 self.assertEquals('testLaunchComplexActivity', map['test']) 88 self.assertEquals('866', map['cpu_time']) 89 self.assertEquals('1242', map['execution_time']) [all …]
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | mpspec_32.h | 32 #define physid_set(physid, map) set_bit(physid, (map).mask) argument 34 #define physid_clear(physid, map) clear_bit(physid, (map).mask) argument 35 #define physid_isset(physid, map) test_bit(physid, (map).mask) argument 36 #define physid_test_and_set(physid, map) test_and_set_bit(physid, (map).mask) argument 40 #define physids_clear(map) bitmap_zero((map).mask, MAX_APICS) argument 42 #define physids_empty(map) bitmap_empty((map).mask, MAX_APICS) argument 45 #define physids_weight(map) bitmap_weight((map).mask, MAX_APICS) argument 49 #define physids_coerce(map) ((map).mask[0]) argument
|
D | e820.h | 40 struct e820entry map[E820MAX]; member
|
/development/ide/emacs/ |
D | android-host.el | 55 (let ((map android-host-command-map)) 56 (define-key map (kbd "a") 'android-adb-root) 57 (define-key map (kbd "r") 'android-adb-remount) 58 (define-key map (kbd "s") 'android-adb-sync) 59 (define-key map (kbd "b") 'android-adb-shell-reboot-bootloader) 60 (define-key map (kbd "f") 'android-fastboot-flashall))
|
/development/ndk/platforms/android-9/include/ |
D | zconf.h | 317 # pragma map(deflateInit_,"DEIN") 318 # pragma map(deflateInit2_,"DEIN2") 319 # pragma map(deflateEnd,"DEEND") 320 # pragma map(deflateBound,"DEBND") 321 # pragma map(inflateInit_,"ININ") 322 # pragma map(inflateInit2_,"ININ2") 323 # pragma map(inflateEnd,"INEND") 324 # pragma map(inflateSync,"INSY") 325 # pragma map(inflateSetDictionary,"INSEDI") 326 # pragma map(compressBound,"CMBND") [all …]
|
/development/apps/Development/src/com/android/development/ |
D | MediaScannerActivity.java | 177 final ContentValues map = mValues[i]; in addAlbum() local 178 map.put(MediaStore.MediaColumns.DATA, in addAlbum() 180 map.put(MediaStore.MediaColumns.TITLE, in addAlbum() 182 map.put(MediaStore.MediaColumns.MIME_TYPE, "audio/mp3"); in addAlbum() 184 map.put(Audio.Media.ARTIST, artist); in addAlbum() 185 map.put("album_artist", albumArtist); in addAlbum() 186 map.put(Audio.Media.ALBUM, albumName); in addAlbum() 187 map.put(Audio.Media.TRACK, i + 1); in addAlbum() 188 map.put(Audio.Media.DURATION, 4*60*1000); in addAlbum() 189 map.put(Audio.Media.IS_MUSIC, 1); in addAlbum() [all …]
|
/development/vndk/tools/definition-tool/assets/visual/ |
D | dep-graph.js | 202 let map = {}; 205 let node = map[name], i; 207 node = map[name] = data || { name : name, children : [] }; 219 return d3.hierarchy(map[""]); 223 let map = {}, depends = []; 226 nodes.forEach(function(d) { map[d.data.name] = d; }); 232 let l = map[d.data.name].path(map[i]); 237 map[d.data.name].not_allow = true; 239 map[i].not_allow = true; 240 let l = map[d.data.name].path(map[i]); [all …]
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
D | DictionaryDatabase.java | 70 HashMap<String,String> map = new HashMap<String,String>(); in buildColumnMap() local 71 map.put(KEY_WORD, KEY_WORD); in buildColumnMap() 72 map.put(KEY_DEFINITION, KEY_DEFINITION); in buildColumnMap() 73 map.put(BaseColumns._ID, "rowid AS " + in buildColumnMap() 75 map.put(SearchManager.SUGGEST_COLUMN_INTENT_DATA_ID, "rowid AS " + in buildColumnMap() 77 map.put(SearchManager.SUGGEST_COLUMN_SHORTCUT_ID, "rowid AS " + in buildColumnMap() 79 return map; in buildColumnMap()
|
/development/vndk/tools/header-checker/header-abi-diff/src/ |
D | abi_diff.h | 59 static inline void AddToMap(std::map<std::string, const T *> *dst, 65 const std::map<std::string, const T *> &old_elements_map, 66 const std::map<std::string, const T *> &new_elements_map, 72 const std::map<std::string, const T *> &old_elements_map, 73 const std::map<std::string, const T *> &new_elements_map, 98 std::map<std::string, const T *> *dst, in AddToMap()
|
D | abi_diff.cpp | 107 std::map<std::string, const T*> old_elements_map; in Collect() 108 std::map<std::string, const T*> new_elements_map; in Collect() 133 const std::map<std::string, const T*> &old_elements_map, in PopulateRemovedElements() 134 const std::map<std::string, const T*> &new_elements_map, in PopulateRemovedElements() 156 const std::map<std::string, const T *> &old_elements_map, in PopulateCommonElements() 157 const std::map<std::string, const T *> &new_elements_map, in PopulateCommonElements() 160 typename std::map<std::string, const T *>::const_iterator old_element = in PopulateCommonElements() 162 typename std::map<std::string, const T *>::const_iterator new_element = in PopulateCommonElements()
|
/development/samples/LunarLander/src/com/example/android/lunarlander/ |
D | LunarView.java | 386 public Bundle saveState(Bundle map) { in saveState() argument 388 if (map != null) { in saveState() 389 map.putInt(KEY_DIFFICULTY, Integer.valueOf(mDifficulty)); in saveState() 390 map.putDouble(KEY_X, Double.valueOf(mX)); in saveState() 391 map.putDouble(KEY_Y, Double.valueOf(mY)); in saveState() 392 map.putDouble(KEY_DX, Double.valueOf(mDX)); in saveState() 393 map.putDouble(KEY_DY, Double.valueOf(mDY)); in saveState() 394 map.putDouble(KEY_HEADING, Double.valueOf(mHeading)); in saveState() 395 map.putInt(KEY_LANDER_WIDTH, Integer.valueOf(mLanderWidth)); in saveState() 396 map.putInt(KEY_LANDER_HEIGHT, Integer in saveState() [all …]
|
/development/samples/Snake/src/com/example/android/snake/ |
D | Snake.java | 70 Bundle map = savedInstanceState.getBundle(ICICLE_KEY); in onCreate() local 71 if (map != null) { in onCreate() 72 mSnakeView.restoreState(map); in onCreate()
|
D | SnakeView.java | 207 Bundle map = new Bundle(); in saveState() local 209 map.putIntArray("mAppleList", coordArrayListToArray(mAppleList)); in saveState() 210 map.putInt("mDirection", Integer.valueOf(mDirection)); in saveState() 211 map.putInt("mNextDirection", Integer.valueOf(mNextDirection)); in saveState() 212 map.putLong("mMoveDelay", Long.valueOf(mMoveDelay)); in saveState() 213 map.putLong("mScore", Long.valueOf(mScore)); in saveState() 214 map.putIntArray("mSnakeTrail", coordArrayListToArray(mSnakeTrail)); in saveState() 216 return map; in saveState()
|
/development/samples/browseable/DeviceOwner/src/com.example.android.deviceowner/ |
D | DeviceOwnerFragment.java | 318 HashMap<String, String> map = new HashMap<>(); in createData() local 319 map.put(KEY_PACKAGE_NAME, info.activityInfo.packageName); in createData() 320 map.put(KEY_ACTIVITY_NAME, info.activityInfo.name); in createData() 321 data.add(map); in createData() 328 HashMap<String, String> map = (HashMap<String, String>) getItem(position); in getComponentName() local 329 return new ComponentName(map.get(KEY_PACKAGE_NAME), map.get(KEY_ACTIVITY_NAME)); in getComponentName()
|
/development/samples/TtsEngine/src/com/example/android/ttsengine/ |
D | RobotSpeakTtsService.java | 218 Map<Character, Integer> map = new HashMap<Character, Integer>(); in buildFrequencyMap() local 225 map.put(parts[0].charAt(0), Integer.parseInt(parts[1])); in buildFrequencyMap() 227 map.put(' ', 0); in buildFrequencyMap() 228 return map; in buildFrequencyMap()
|
/development/libraries/stereocamera/ |
D | README.txt | 3 This SDK component contains static libraries for computing the depth map of a pair of stereo images.
|
/development/ndk/platforms/android-21/arch-x86/include/asm/ |
D | e820.h | 45 struct e820entry map[E820_X_MAX]; member
|
/development/ndk/platforms/android-21/arch-x86_64/include/asm/ |
D | e820.h | 45 struct e820entry map[E820_X_MAX]; member
|
/development/samples/ShortcutDemo/publisher/src/com/example/android/pm/shortcutdemo/ |
D | ShortcutPublisher.java | 106 final Map<String, ShortcutInfo> map = new ArrayMap<>(); in getAllShortcuts() local 109 if (!map.containsKey(si.getId())) { in getAllShortcuts() 110 map.put(si.getId(), si); in getAllShortcuts() 115 if (!map.containsKey(si.getId())) { in getAllShortcuts() 116 map.put(si.getId(), si); in getAllShortcuts() 121 if (!map.containsKey(si.getId())) { in getAllShortcuts() 122 map.put(si.getId(), si); in getAllShortcuts() 125 return new ArrayList<>(map.values()); in getAllShortcuts()
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | bootinfo.h | 64 } map[BOOT_MEM_MAP_MAX]; member
|
/development/host/windows/usb/api/ |
D | adb_api_instance.h | 111 typedef std::map< ADBAPIINSTANCEHANDLE, AdbApiInstance* > AdbApiInstanceMap;
|
/development/vndk/tools/header-checker/header-abi-dumper/src/ |
D | header_checker.cpp | 53 llvm::StringMap<llvm::cl::Option *> &map = llvm::cl::getRegisteredOptions(); in HideIrrelevantCommandLineOptions() local 54 for (llvm::StringMapEntry<llvm::cl::Option *> &p : map) { in HideIrrelevantCommandLineOptions()
|
/development/samples/browseable/NfcProvisioning/src/com.example.android.nfcprovisioning/ |
D | ProvisioningValuesLoader.java | 187 private static <Key, Value> void putIfMissing(HashMap<Key, Value> map, Key key, Value value) { in putIfMissing() argument 188 if (!map.containsKey(key)) { in putIfMissing() 189 map.put(key, value); in putIfMissing()
|