Home
last modified time | relevance | path

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

12

/art/libarttools/tools/
Dsystem_properties.h36 std::string Get(const std::string& key, const std::string& default_value) const { in Get()
52 std::string Get(const std::string& key, const std::string& fallback_key, Args... args) const { in Get()
68 std::string GetOrEmpty(const std::string& key, Args... fallback_keys) const { in GetOrEmpty()
74 bool GetBool(const std::string& key, bool default_value) const { in GetBool()
90 bool GetBool(const std::string& key, const std::string& fallback_key, Args... args) const { in GetBool()
96 virtual std::string GetProperty(const std::string& key) const { in GetProperty()
/art/tools/checker/common/
Dimmutables.py17 def __setitem__(self, key, value): argument
20 def __delitem__(self, key): argument
23 def copy_with(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/runtime/interpreter/
Dinterpreter_cache-inl.h26 inline bool InterpreterCache::Get(Thread* self, const void* key, /* out */ size_t* value) { in Get()
36 inline void InterpreterCache::Set(Thread* self, const void* key, size_t value) { in Set()
Dinterpreter_cache.h74 static ALWAYS_INLINE size_t IndexOf(const void* key) { in IndexOf()
/art/cmdline/
Dcmdline_parser_test.cc98 const TKey& key) { in IsExpectedKeyValue()
115 const TKey& key) { in IsExpectedDefaultKeyValue()
168 #define EXPECT_KEY_EXISTS(map, key) EXPECT_TRUE((map).Exists(key)) argument
169 #define EXPECT_KEY_VALUE(map, key, expected) EXPECT_TRUE(IsExpectedKeyValue(expected, map, key)) argument
170 #define EXPECT_DEFAULT_KEY_VALUE(map, key, expected) EXPECT_TRUE(IsExpectedDefaultKeyValue(expected… argument
181 #define EXPECT_SINGLE_PARSE_DEFAULT_VALUE(expected, argv, key)\ argument
187 #define _EXPECT_SINGLE_PARSE_EXISTS(argv, key) \ argument
194 #define EXPECT_SINGLE_PARSE_EXISTS(argv, key) \ argument
198 #define EXPECT_SINGLE_PARSE_VALUE(expected, argv, key) \ argument
203 #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/dex2oat/linker/arm/
Drelative_patcher_thumb2.cc90 ThunkKey key = GetEntrypointCallKey(patch); in PatchEntrypointCall() local
106 ThunkKey key = GetBakerThunkKey(patch); in PatchBakerReadBarrierBranch() local
119 uint32_t Thumb2RelativePatcher::MaxPositiveDisplacement(const ThunkKey& key) { in MaxPositiveDisplacement()
129 uint32_t Thumb2RelativePatcher::MaxNegativeDisplacement(const ThunkKey& key) { in MaxNegativeDisplacement()
Drelative_patcher_arm_base.cc367 uint32_t ArmBaseRelativePatcher::GetThunkTargetOffset(const ThunkKey& key, uint32_t patch_offset) { in GetThunkTargetOffset()
407 ThunkKey key(static_cast<ThunkType>(-1)); in ProcessPatches() local
537 const ThunkKey& key) { in CalculateMaxNextOffset()
/art/test/687-deopt/src/
DMain.java27 Main key = new Main(); in main() local
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc313 ThunkKey key = GetEntrypointCallKey(patch); in PatchEntrypointCall() local
326 ThunkKey key = GetBakerThunkKey(patch); in PatchBakerReadBarrierBranch() local
335 uint32_t Arm64RelativePatcher::MaxPositiveDisplacement(const ThunkKey& key) { in MaxPositiveDisplacement()
345 uint32_t Arm64RelativePatcher::MaxNegativeDisplacement(const ThunkKey& key) { in MaxNegativeDisplacement()
/art/test/odsign/test-src/com/android/tests/odsign/
DDeviceState.java166 public void setProperty(String key, String value) throws Exception { in setProperty()
176 public void setPhenotypeFlag(String key, String value) throws Exception { in setPhenotypeFlag()
/art/tools/ahat/src/main/com/android/ahat/
DDoc.java91 void description(DocString key, DocString value); in description()
DHtmlDoc.java179 public void description(DocString key, DocString value) { in description()
/art/compiler/utils/
Ddedupe_set_test.cc50 void Destroy(const std::vector<uint8_t>* key) { in Destroy()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DDiff.java200 Key key = Key.keyFor(inst); in instances() local
209 Key key = Key.keyFor(inst); in instances() local
DParser.java813 public void put(long key, T value) { in put()
848 public T get(long key) throws HprofFormatException { in get()
861 private int indexOf(long key) { in indexOf()
884 public void put(long key, T value) { in put()
893 public T get(long key) throws HprofFormatException { in get()
/art/libdexfile/dex/
Dtest_dex_file_builder.h58 FieldKey key = { class_descriptor, type, name }; in AddField() local
264 FieldKey key = { class_descriptor, type, name }; in GetFieldIdx() local
346 ProtoKey key = { in CreateProtoKey() local
/art/runtime/
Dinstrumentation_test.cc190 void CheckConfigureStubs(const char* key, Instrumentation::InstrumentationLevel level) { in CheckConfigureStubs()
278 const char* key, bool disable_deoptimization) in UndeoptimizeMethod()
293 void DeoptimizeEverything(Thread* self, const char* key) in DeoptimizeEverything()
305 void UndeoptimizeEverything(Thread* self, const char* key, bool disable_deoptimization) in UndeoptimizeEverything()
320 void EnableMethodTracing(Thread* self, const char* key, bool needs_interpreter) in EnableMethodTracing()
333 void DisableMethodTracing(Thread* self, const char* key) in DisableMethodTracing()
Dinstrumentation.cc907 void Instrumentation::ConfigureStubs(const char* key, InstrumentationLevel desired_level) { in ConfigureStubs()
924 void Instrumentation::EnableEntryExitHooks(const char* key) { in EnableEntryExitHooks()
1222 void Instrumentation::DisableDeoptimization(const char* key) { in DisableDeoptimization()
1261 void Instrumentation::DeoptimizeEverything(const char* key) { in DeoptimizeEverything()
1265 void Instrumentation::UndeoptimizeEverything(const char* key) { in UndeoptimizeEverything()
1270 void Instrumentation::EnableMethodTracing(const char* key, in EnableMethodTracing()
1287 void Instrumentation::DisableMethodTracing(const char* key) { in DisableMethodTracing()
Doat.cc383 const char** key, in GetStoreKeyValuePairByIndex()
446 bool OatHeader::KeyHasValue(const char* key, const char* value, size_t value_size) const { in KeyHasValue() argument
/art/test/055-enum-performance/src/
DMain.java123 static String basisValueOf(String key) { in basisValueOf()
/art/dex2oat/driver/
Dcompiled_method_storage.cc273 ThunkMapKey key = GetThunkMapKey(linker_patch); in GetThunkCode() local
294 ThunkMapKey key = GetThunkMapKey(linker_patch); in SetThunkCode() local
/art/test/testrunner/
Denv.py53 def get_env(key): argument
/art/libartbase/base/
Dhash_set.h483 iterator find(const K& key) { in find()
488 const_iterator find(const K& key) const { in find()
493 iterator FindWithHash(const K& key, size_t hash) { in FindWithHash()
498 const_iterator FindWithHash(const K& key, size_t hash) const { in FindWithHash()

12