HomeSort by relevance Sort by last modified time
    Searched defs:getProperty (Results 1 - 25 of 1900) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/lib/
Properties.h 43 static inline uint32_t getProperty(const char *str) {
  /system/libvintf/
utils-common.cpp 26 std::string PropertyFetcher::getProperty(const std::string&,
  /cts/hostsidetests/sample/src/android/sample/cts/
SampleHostDeviceInfo.java 34 store.addResult("model", getProperty("ro.product.model"));
35 store.addResult("brand", getProperty("ro.product.brand"));
36 store.addResult("name", getProperty("ro.product.name"));
37 store.addResult("device", getProperty("ro.product.device"));
38 store.addResult("board", getProperty("ro.product.board"));
40 String abi = getProperty("ro.product.cpu.abilist");
45 store.addResult("sdk", getProperty("ro.build.version.sdk"));
46 store.addResult("codename", getProperty("ro.build.version.codename"));
47 store.addResult("security_patch", getProperty("ro.build.version.security_patch"));
48 store.addResult("base_os", getProperty("ro.build.version.base_os"))
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
JSystem.cs 66 public static string getProperty( string name )
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
JSystem.cs 65 public static string getProperty( string name )
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
KvmSerializable.java 40 Object getProperty(int index);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IGLPropertyAccessor.java 27 IGLProperty getProperty(IGLProperty state);
CurrentVboPropertyAccessor.java 51 public IGLProperty getProperty(IGLProperty state) {
53 IGLProperty currentBinding = mVboBindingAccessor.getProperty(state);
64 mVboProperty).getProperty(state);
TextureUnitPropertyAccessor.java 43 public IGLProperty getProperty(IGLProperty state) {
45 IGLProperty activeTextureProperty = mActiveTextureAccessor.getProperty(state);
57 return targetAccessor.getProperty(state);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
CsmAttribute.java 31 public ObservableProperty getProperty() {
CsmSingleReference.java 32 public ObservableProperty getProperty() {
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
PropertyChange.java 14 public ObservableProperty getProperty() {
  /external/oauth/core/src/main/java/net/oauth/
OAuthConsumer.java 50 public Object getProperty(String name) {
OAuthAccessor.java 52 public Object getProperty(String name) {
67 * method; that is getProperty("httpMethod") or (if that's null)
68 * consumer.getProperty("httpMethod") or (if that's null)
75 method = (String) this.getProperty("httpMethod");
77 method = (String) this.consumer.getProperty("httpMethod");
85 Object accepted = consumer.getProperty(OAuthConsumer.ACCEPT_ENCODING);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
AnimatableProperty.java 44 public abstract Property getProperty();
77 public Property getProperty() {
102 public Property getProperty() {
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 439 public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
ValidatorHandler.java 448 public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/media/
CustomVCardEntry.java 45 public VCardProperty getProperty(String name) {
  /packages/services/Car/tools/emulator/
vhal_emulator.py 47 v.getProperty(c.VEHICLEPROPERTY_HVAC_TEMPERATURE_SET, c.VEHICLEAREAZONE_ROW_1_LEFT)
49 # Get the response message to getProperty()
188 def getProperty(self, prop, area_id):
190 Sends a getProperty command for the specified property ID and area ID.
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
ParallaxFloatTest.java 76 assertSame(keyValue.getProperty(), var1);
87 assertSame(keyValue.getProperty(), var1);
98 assertSame(keyValue.getProperty(), var1);
103 assertSame(keyValue2.getProperty(), var1);
ParallaxIntTest.java 73 assertSame(keyValue.getProperty(), var1);
84 assertSame(keyValue.getProperty(), var1);
95 assertSame(keyValue.getProperty(), var1);
100 assertSame(keyValue2.getProperty(), var1);
  /external/easymock/src/org/easymock/internal/
EasyMockProperties.java 95 public String getProperty(String key, String defaultValue) {
96 return properties.getProperty(key, defaultValue);
107 public String getProperty(String key) {
108 return properties.getProperty(key);
  /external/guava/guava-tests/test/com/google/common/base/
StandardSystemPropertyTest.java 38 assertEquals(System.getProperty(property.key()), property.value());
  /external/opencv/otherlibs/highgui/
_highgui.h 72 virtual double getProperty(int) { return 0; }
  /frameworks/base/tests/testables/tests/src/android/testing/
DexmakerShareClassLoaderRuleTest.java 62 assertThat(System.getProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY), is("asdf"));
108 return Boolean.parseBoolean(System.getProperty(DEXMAKER_SHARE_CLASSLOADER_PROPERTY));

Completed in 404 milliseconds

1 2 3 4 5 6 7 8 91011>>