OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tryGetProperty
(Results
1 - 7
of
7
) sorted by null
/system/core/include/utils/
PropertyMap.h
69
bool
tryGetProperty
(const String8& key, String8& outValue) const;
70
bool
tryGetProperty
(const String8& key, bool& outValue) const;
71
bool
tryGetProperty
(const String8& key, int32_t& outValue) const;
72
bool
tryGetProperty
(const String8& key, float& outValue) const;
/system/core/libutils/
PropertyMap.cpp
58
bool PropertyMap::
tryGetProperty
(const String8& key, String8& outValue) const {
68
bool PropertyMap::
tryGetProperty
(const String8& key, bool& outValue) const {
70
if (!
tryGetProperty
(key, intValue)) {
78
bool PropertyMap::
tryGetProperty
(const String8& key, int32_t& outValue) const {
80
if (!
tryGetProperty
(key, stringValue) || stringValue.length() == 0) {
95
bool PropertyMap::
tryGetProperty
(const String8& key, float& outValue) const {
97
if (!
tryGetProperty
(key, stringValue) || stringValue.length() == 0) {
/frameworks/native/libs/input/
Keyboard.cpp
46
if (deviceConfiguration->
tryGetProperty
(String8("keyboard.layout"),
57
if (deviceConfiguration->
tryGetProperty
(String8("keyboard.characterMap"),
161
if (deviceConfiguration->
tryGetProperty
(String8("keyboard.builtIn"), builtIn)
/frameworks/native/services/inputflinger/
InputReader.cpp
[
all
...]
EventHub.cpp
[
all
...]
/frameworks/native/services/inputflinger/host/
InputDriver.cpp
246
if (!map->propertyMap->
tryGetProperty
(keyString, prop->value)) {
/frameworks/native/services/inputflinger/tests/
InputReader_test.cpp
[
all
...]
Completed in 130 milliseconds