Home
last modified time | relevance | path

Searched defs:key (Results 1 – 25 of 29) sorted by relevance

12

/art/tools/checker/common/
Dimmutables.py16 def __setitem__(self, key, value): argument
19 def __delitem__(self, key): argument
22 def copyWith(self, key, value): argument
/art/test/922-properties/src/art/
DTest922.java54 String key = generate(allProperties); in doTest() local
92 private static void checkProperty(String key) { in checkProperty()
126 String key = sb.toString(); in generateUnique() local
153 private static native String getSystemProperty(String key); in getSystemProperty()
154 private static native void setSystemProperty(String key, String value); in setSystemProperty()
/art/cmdline/
Dcmdline_parser_test.cc88 const TKey& key) { in IsExpectedKeyValue()
105 const TKey& key) { in IsExpectedDefaultKeyValue()
157 #define EXPECT_KEY_EXISTS(map, key) EXPECT_TRUE((map).Exists(key)) argument
158 #define EXPECT_KEY_VALUE(map, key, expected) EXPECT_TRUE(IsExpectedKeyValue(expected, map, key)) argument
159 #define EXPECT_DEFAULT_KEY_VALUE(map, key, expected) EXPECT_TRUE(IsExpectedDefaultKeyValue(expected… argument
170 #define EXPECT_SINGLE_PARSE_DEFAULT_VALUE(expected, argv, key)\ argument
176 #define _EXPECT_SINGLE_PARSE_EXISTS(argv, key) \ argument
183 #define EXPECT_SINGLE_PARSE_EXISTS(argv, key) \ argument
187 #define EXPECT_SINGLE_PARSE_VALUE(expected, argv, key) \ argument
192 #define EXPECT_SINGLE_PARSE_VALUE_STR(expected, argv, key) \ argument
/art/test/922-properties/
Dproperties.cc58 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring key) { in Java_art_Test922_getSystemProperty()
78 JNIEnv* env, jclass Main_klass ATTRIBUTE_UNUSED, jstring key, jstring value) { in Java_art_Test922_setSystemProperty()
/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc295 uint32_t ArmBaseRelativePatcher::GetThunkTargetOffset(const ThunkKey& key, uint32_t patch_offset) { in GetThunkTargetOffset()
323 ThunkKey key(key_type, ThunkParams{{ 0u, 0u }}); // NOLINT(whitespace/braces) in ProcessPatches() local
332 ThunkKey key = GetBakerReadBarrierKey(patch); in ProcessPatches() local
Drelative_patcher_thumb2.cc99 std::vector<uint8_t> Thumb2RelativePatcher::CompileThunk(const ThunkKey& key) { in CompileThunk()
/art/runtime/
Dinstrumentation_test.cc153 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { in CheckConfigureStubs()
223 const char* key, bool disable_deoptimization) in UndeoptimizeMethod()
238 void DeoptimizeEverything(Thread* self, const char* key, bool enable_deoptimization) in DeoptimizeEverything()
253 void UndeoptimizeEverything(Thread* self, const char* key, bool disable_deoptimization) in UndeoptimizeEverything()
268 void EnableMethodTracing(Thread* self, const char* key, bool needs_interpreter) in EnableMethodTracing()
280 void DisableMethodTracing(Thread* self, const char* key) in DisableMethodTracing()
Dinstrumentation.cc575 void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) { in ConfigureStubs()
848 void Instrumentation::DisableDeoptimization(const char* key) { in DisableDeoptimization()
879 void Instrumentation::DeoptimizeEverything(const char* key) { in DeoptimizeEverything()
884 void Instrumentation::UndeoptimizeEverything(const char* key) { in UndeoptimizeEverything()
890 void Instrumentation::EnableMethodTracing(const char* key, bool needs_interpreter) { in EnableMethodTracing()
900 void Instrumentation::DisableMethodTracing(const char* key) { in DisableMethodTracing()
Doat.cc433 bool OatHeader::GetStoreKeyValuePairByIndex(size_t index, const char** key, in GetStoreKeyValuePairByIndex()
493 bool OatHeader::KeyHasValue(const char* key, const char* value, size_t value_size) const { in KeyHasValue() argument
Doat_file.cc577 StringPiece key(oat_dex_file->GetDexFileLocation()); in Setup() local
1223 StringPiece key(dex_location); in GetOatDexFile() local
/art/runtime/base/
Dhash_set.h367 iterator Find(const K& key) { in Find()
372 const_iterator Find(const K& key) const { in Find()
377 iterator FindWithHash(const K& key, size_t hash) { in FindWithHash()
382 const_iterator FindWithHash(const K& key, size_t hash) const { in FindWithHash()
/art/tools/ahat/src/heapdump/
DDiff.java194 Key key = Key.keyFor(inst); in instances() local
203 Key key = Key.keyFor(inst); in instances() local
/art/tools/ahat/src/
DDoc.java91 void description(DocString key, DocString value); in description()
DHtmlDoc.java175 public void description(DocString key, DocString value) { in description()
/art/compiler/utils/
Ddedupe_set_test.cc49 void Destroy(const std::vector<uint8_t>* key) { in Destroy()
Dtest_dex_file_builder.h56 FieldKey key = { class_descriptor, type, name }; in AddField() local
260 FieldKey key = { class_descriptor, type, name }; in GetFieldIdx() local
342 ProtoKey key = { in CreateProtoKey() local
/art/test/055-enum-performance/src/
DMain.java123 static String basisValueOf(String key) { in basisValueOf()
/art/runtime/arch/
Dinstruction_set_features_test.cc45 std::string key = StringPrintf("dalvik.vm.isa.%s.variant", GetInstructionSetString(kRuntimeISA)); local
/art/tools/dexfuzz/src/dexfuzz/
DOptions.java219 private static void handleKeyValueOption(String key, String value) { in handleKeyValueOption()
/art/tools/dexfuzz/src/dexfuzz/executors/
DDevice.java68 private String checkForEnvVar(Map<String, String> envVars, String key) { in checkForEnvVar() argument
/art/test/testrunner/
Denv.py80 def get_env(key): argument
/art/compiler/linker/arm64/
Drelative_patcher_arm64.cc307 ThunkKey key = GetBakerReadBarrierKey(patch); in PatchBakerReadBarrierBranch() local
402 std::vector<uint8_t> Arm64RelativePatcher::CompileThunk(const ThunkKey& key) { in CompileThunk()
Drelative_patcher_arm64_test.cc163 ArmBaseRelativePatcher::ThunkKey key( in CompileMethodCallThunk() local
470 ArmBaseRelativePatcher::ThunkKey key = patcher->GetBakerReadBarrierKey(patch); in CompileBakerOffsetThunk() local
478 ArmBaseRelativePatcher::ThunkKey key = patcher->GetBakerReadBarrierKey(patch); in CompileBakerGcRootThunk() local
/art/test/099-vmdebug/src/
DMain.java160 long key = Long.parseLong(kv[0]); in checkHistogram() local
/art/sigchainlib/
Dsigchain.cc126 static pthread_key_t key; in GetHandlingSignalKey() local

12