Home
last modified time | relevance | path

Searched refs:keys (Results 1 – 13 of 13) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
DMSwitchInsn.java33 public int[] keys; field in MSwitchInsn
46 newInsn.keys = new int[keys.length]; in clone()
47 System.arraycopy(keys, 0, newInsn.keys, 0, keys.length); in clone()
DCodeTranslator.java408 int[] keys = new int[targetsSize]; in readSwitchInstruction() local
415 keys[0] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, rawPtr); in readSwitchInstruction()
419 keys[i] = keys[i - 1] + 1; in readSwitchInstruction()
425 keys[i] = (int) RawInsnHelper.getUnsignedIntFromFourBytes(dataInsn.rawBytes, in readSwitchInstruction()
439 switchInsn.keys = keys; in readSwitchInstruction()
465 int[] keys = switchInsn.keys; in updateSwitchInstruction() local
487 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[0]); in updateSwitchInstruction()
492 RawInsnHelper.writeUnsignedIntToFourBytes(dataInsn.rawBytes, rawPtr, keys[i]); in updateSwitchInstruction()
/art/test/922-properties/src/art/
DTest922.java63 Set<String> keys = new TreeSet<String>(); in getRecommendedProperties() local
64 keys.add("java.vm.vendor"); in getRecommendedProperties()
65 keys.add("java.vm.version"); in getRecommendedProperties()
66 keys.add("java.vm.name"); in getRecommendedProperties()
67 keys.add("java.vm.info"); in getRecommendedProperties()
68 keys.add("java.library.path"); in getRecommendedProperties()
69 keys.add("java.class.path"); in getRecommendedProperties()
70 return keys; in getRecommendedProperties()
74 Set<String> keys = new TreeSet<String>(); in getAllProperties() local
77 keys.add(p); in getAllProperties()
[all …]
/art/compiler/driver/
Dcompiler_options_map.def22 // This file defines the list of keys for CompilerOptionsMap.
36 // Parse-able keys from the command line.
/art/dex2oat/
Ddex2oat_options.def22 // This file defines the list of keys for Dex2oatOptions.
36 // Parse-able keys from the command line.
/art/test/testrunner/
Drun_build_test_target.py50 for k in sorted(target_config.keys()):
Dtestrunner.py247 default_variants_keys = default_variants.keys()
/art/runtime/interpreter/
Dinterpreter_common.h907 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); in DoPackedSwitch() local
908 DCHECK_ALIGNED(keys, 4); in DoPackedSwitch()
909 int32_t first_key = keys[0]; in DoPackedSwitch()
935 const int32_t* keys = reinterpret_cast<const int32_t*>(&switch_data[2]); in DoSparseSwitch() local
936 DCHECK_ALIGNED(keys, 4); in DoSparseSwitch()
937 const int32_t* entries = keys + size; in DoSparseSwitch()
943 int32_t foundVal = keys[mid]; in DoSparseSwitch()
/art/tools/
Danalyze-init-failures.py121 all_classes = fail_sources | set(class_fail_class.keys())
/art/runtime/
Druntime_options.def22 // This file defines the list of keys for RuntimeOptions.
36 // Parse-able keys from the command line.
/art/runtime/interpreter/mterp/
Dmterp.cc64 const int32_t* keys; in MterpDoSparseSwitch() local
85 keys = reinterpret_cast<const int32_t*>(switchData); in MterpDoSparseSwitch()
90 entries = keys + size; in MterpDoSparseSwitch()
101 int32_t foundVal = keys[mid]; in MterpDoSparseSwitch()
/art/tools/checker/match/
Dtest.py97 self.assertFalse("X" in env.keys())
/art/build/apex/
Dart_apex_test.py378 for name in sorted(self._provider.read_dir(dir_path).keys()):
917 key_list = list(sorted(apex_map.keys()))