Home
last modified time | relevance | path

Searched refs:map (Results 1 – 25 of 37) sorted by relevance

12

/development/ndk/platforms/android-3/include/linux/mtd/
Dmap.h25 #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 …]
Dcfi.h165 #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/
Dam_instrument_parser_tests.py77 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/
Dmpspec_32.h32 #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
De820.h40 struct e820entry map[E820MAX]; member
/development/ndk/platforms/android-3/include/
Dzconf.h317 # 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/ide/emacs/
Dandroid-host.el55 (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/apps/Development/src/com/android/development/
DMediaScannerActivity.java177 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/samples/SearchableDictionary/src/com/example/android/searchabledict/
DDictionaryDatabase.java70 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/samples/LunarLander/src/com/example/android/lunarlander/
DLunarView.java386 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/
DSnakeView.java207 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()
DSnake.java70 Bundle map = savedInstanceState.getBundle(ICICLE_KEY); in onCreate() local
71 if (map != null) { in onCreate()
72 mSnakeView.restoreState(map); in onCreate()
/development/samples/TtsEngine/src/com/example/android/ttsengine/
DRobotSpeakTtsService.java218 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/ndk/sources/android/ndk_helper/
Dshader.cpp31 const std::map<std::string, std::string>& map_parameters ) in CompileShader()
45 std::map<std::string, std::string>::const_iterator it = map_parameters.begin(); in CompileShader()
46 std::map<std::string, std::string>::const_iterator itEnd = map_parameters.end(); in CompileShader()
Dshader.h100 const std::map<std::string, std::string>& map_parameters );
/development/libraries/stereocamera/
DREADME.txt3 This SDK component contains static libraries for computing the depth map of a pair of stereo images.
/development/ndk/platforms/android-L/arch-x86/include/asm/
De820.h45 struct e820entry map[E820_X_MAX]; member
/development/ndk/platforms/android-L/arch-x86_64/include/asm/
De820.h45 struct e820entry map[E820_X_MAX]; member
/development/ndk/platforms/android-9/arch-mips/include/asm/
Dbootinfo.h64 } map[BOOT_MEM_MAP_MAX]; member
/development/host/windows/usb/api/
Dadb_api_instance.h111 typedef std::map< ADBAPIINSTANCEHANDLE, AdbApiInstance* > AdbApiInstanceMap;
Dadb_object_handle.h185 typedef std::map< ADBAPIHANDLE, AdbObjectHandle* > AdbObjectHandleMap;
/development/tools/axl/
Dlog.py40 for ln in " ".join(map(str, logstrs)).split("\n"):
/development/samples/Support4Demos/src/com/example/android/supportv4/
DSupport4Demos.java144 Map<String, Object> map = (Map<String, Object>)l.getItemAtPosition(position); in onListItemClick() local
146 Intent intent = (Intent) map.get("intent"); in onListItemClick()
/development/samples/ApiDemos/src/com/example/android/apis/
DApiDemos.java144 Map<String, Object> map = (Map<String, Object>)l.getItemAtPosition(position); in onListItemClick() local
146 Intent intent = new Intent((Intent) map.get("intent")); in onListItemClick()
/development/samples/Support7Demos/src/com/example/android/supportv7/
DSupport7Demos.java146 Map<String, Object> map = (Map<String, Object>)l.getItemAtPosition(position); in onListItemClick() local
148 Intent intent = (Intent) map.get("intent"); in onListItemClick()

12