/development/vndk/tools/header-checker/src/utils/ |
D | config_file.h | 47 auto &&it = map_.find(name); in GetProperty() 48 if (it == map_.end()) { in GetProperty() 51 return it->second; in GetProperty() 95 auto &&it = map_.find(section_name); in GetSection() 96 assert(it != map_.end()); in GetSection() 97 return it->second; in GetSection() 106 auto &&it = map_.find(section_name); in HasProperty() 107 if (it == map_.end()) { in HasProperty() 110 return it->second.HasProperty(property_name); in HasProperty() 115 auto &&it = map_.find(section_name); in GetProperty() [all …]
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
D | MonkeyUtils.java | 100 Iterator<String> it = mValidPackages.iterator(); in dump() local 101 while (it.hasNext()) { in dump() 102 Logger.out.println(":AllowPackage: " + it.next()); in dump() 106 Iterator<String> it = mInvalidPackages.iterator(); in dump() local 107 while (it.hasNext()) { in dump() 108 Logger.out.println(":DisallowPackage: " + it.next()); in dump()
|
/development/vndk/tools/header-checker/src/repr/ |
D | ir_representation.cpp | 109 auto it = AddToMapAndTypeGraph( in AddRecordType() local 111 const std::string &key = GetODRListMapKey(&(it->second)); in AddRecordType() 112 AddToODRListMap(key, &(it->second)); in AddRecordType() 120 auto it = AddToMapAndTypeGraph( in AddFunctionType() local 122 const std::string &key = GetODRListMapKey(&(it->second)); in AddFunctionType() 123 AddToODRListMap(key, &(it->second)); in AddFunctionType() 131 auto it = AddToMapAndTypeGraph( in AddEnumType() local 133 AddToODRListMap(it->second.GetUniqueId() + it->second.GetSourceFile(), in AddEnumType() 134 (&it->second)); in AddEnumType()
|
D | ir_reader.cpp | 65 auto it = module_->builtin_types_.emplace( in IsBuiltinTypeNodePresent() local 67 it.first->second.SetSelfType(builtin_global_type_id); in IsBuiltinTypeNodePresent() 68 it.first->second.SetReferencedType(builtin_global_type_id); in IsBuiltinTypeNodePresent() 69 module_->type_graph_.emplace(builtin_global_type_id, &((it.first)->second)); in IsBuiltinTypeNodePresent() 85 auto it = module_->odr_list_map_.find(ud_type_unique_id_and_source); in DoesUDTypeODRViolationExist() local 86 if (it == module_->odr_list_map_.end()) { in DoesUDTypeODRViolationExist() 98 for (auto &contender_ud : it->second) { in DoesUDTypeODRViolationExist() 111 return MergeStatus(true, (*(it->second.begin()))->GetSelfType()); in DoesUDTypeODRViolationExist() 238 auto it = AddToMapAndTypeGraph(std::move(added_type_ir), specific_type_map, in UpdateUDTypeAccounting() local 241 const std::string &key = GetODRListMapKey(&(it->second)); in UpdateUDTypeAccounting() [all …]
|
D | ir_representation_internal.h | 75 auto it = map_to_update->emplace(GetReferencedTypeMapKey(element), in AddToMapAndTypeGraph() local 77 type_graph->emplace(it.first->second.GetSelfType(), &(it.first->second)); in AddToMapAndTypeGraph() 78 return it.first; in AddToMapAndTypeGraph()
|
/development/samples/UiAutomator/ |
D | README | 8 To run this demo you must build it first and push it on your device: 20 To run this demo you must build it first and push it on your device: 29 To run this demo you must build it first and push it on your device:
|
/development/samples/browseable/SpeedTracker/ |
D | _index.jd | 11 limit and if the speed approaches that limit, it changes the 12 color to yellow and if it exceeds the limit, it turns red. User 13 can also enable recording of coordinates and when it pairs back
|
/development/tools/mkstubs/src/com/android/mkstubs/ |
D | AsmAnalyzer.java | 86 for(Iterator<String> it = keys.iterator(); it.hasNext(); ) { in filter() 87 String key = it.next(); in filter() 94 it.remove(); in filter()
|
/development/host/windows/usb/api/ |
D | BUILDME.TXT | 23 This old version is used because it can build for Windows Vista (WDK 8.1 24 cannot), it includes compilers (so it doesn't require Visual Studio), and it is 26 it should be less risky. 28 When installing the WDK, uncheck `Device Simulation Framework' because it is 29 unnecessary and it installs a kernel-mode driver that we don't need.
|
/development/host/windows/usb/winusb/ |
D | BUILDME.TXT | 23 This old version is used because it can build for Windows Vista (WDK 8.1 24 cannot), it includes compilers (so it doesn't require Visual Studio), and it is 26 it should be less risky. 28 When installing the WDK, uncheck `Device Simulation Framework' because it is 29 unnecessary and it installs a kernel-mode driver that we don't need.
|
/development/host/windows/usb/adb_winapi_test/ |
D | BUILDME.TXT | 23 This old version is used because it can build for Windows Vista (WDK 8.1 24 cannot), it includes compilers (so it doesn't require Visual Studio), and it is 26 it should be less risky. 28 When installing the WDK, uncheck `Device Simulation Framework' because it is 29 unnecessary and it installs a kernel-mode driver that we don't need.
|
/development/vndk/tools/header-checker/src/dumper/ |
D | fixed_argv.h | 60 for (std::vector<const char *>::const_reverse_iterator it = argv_.rbegin(), in GetLastArg() local 61 end = argv_.rend(); it != end; ++it) { in GetLastArg() 63 if (::strcmp(*it, opt) == 0) { in GetLastArg()
|
/development/tools/labpretest/ |
D | README | 9 It will detect if it is in a low battery situation and wait for it to charge 21 script, it will detect the device and go through 100 cycles, running the monkey 25 how many monkey events and finally -x to make it skip the monkey run portion 32 sub directory and put adb and fastboot in it and make sure they are executable. 48 generic functions or details to the flashing process. You must use it to define
|
/development/samples/browseable/MediaBrowserService/ |
D | _index.jd | 12 it to be used in Android Auto, for example. 16 to the Android Auto UI in the same manner as it provides them to the
|
/development/vndk/tools/header-checker/src/repr/json/ |
D | converter.h | 121 auto it = m.find(k); in FindInMap() local 122 if (it == m.end()) { in FindInMap() 126 return it->second; in FindInMap()
|
/development/samples/training/basic/ActivityLifecycle/ |
D | ant.properties | 3 # This file must be checked in Version Control Systems, as it is 12 # You can also use it define how the release builds are signed by declaring
|
D | build.properties | 3 # This file must be checked in Version Control Systems, as it is 12 # You can also use it define how the release builds are signed by declaring
|
/development/samples/browseable/DocumentCentricRelinquishIdentity/ |
D | _index.jd | 8 This sample shows how to relinquish identity to activities above it in the task stack.
|
/development/tools/apkcheck/ |
D | README.txt | 18 API XML file, it has much less detail. 28 analyze the APK, so if you have a large set of APKs it's best to run them 55 In some cases involving generic signatures it may not be possible 92 the enumeration values. This makes it look like an APK is referring 114 that overrides that method must also return Foo, so it would seem that 117 However, it's possible to override gimmeFoo with "public MegaFoo 118 gimmeFoo()" so long as MegaFoo is an instance of Foo. In that case it 123 find a method that matches on everything but the return type, it will 126 it's worth.) 163 signatures into the code (--uses-library=BUILTIN). (At some point it
|
/development/ndk/zlib/ |
D | NOTICE | 8 including commercial applications, and to alter it and redistribute it
|
/development/samples/ |
D | README | 1 Adding a new folder in development/samples is not enough to have it
|
/development/sdk/ |
D | sdk.properties | 3 # If it used by various tools to figure out what the platform can do.
|
/development/samples/browseable/ElevationBasic/ |
D | _index.jd | 10 taps on it, using setTranslationZ().
|
/development/tools/checkcolor/ |
D | build.gradle | 13 * The build server will copy the contents of DIST_DIR to somewhere and make it available. 19 …// the build server does not pass the build number so we infer it from the last folder of the dist…
|
D | README | 8 to presubmit, so it could detects whether hardcoded colors have been
|