Home
last modified time | relevance | path

Searched refs:propertyValue (Results 1 – 18 of 18) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
DPropertiesHelper.java21 String propertyValue = null; in doSingleSubstitution() local
23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution()
25 if (propertyValue == null) { in doSingleSubstitution()
26 propertyValue = System.getProperty(propertyName); in doSingleSubstitution()
28 if (propertyValue == null) { in doSingleSubstitution()
34 expandedValue = sdkPathStart + propertyValue + sdkPathEnd; in doSingleSubstitution()
45 String propertyValue = properties.getProperty(propertyName); in doSubstitutions() local
46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties); in doSubstitutions()
/external/emma/core/java12/com/vladium/util/exception/
DExceptionCommon.java403 String propertyValue = null; in lookup() local
406 propertyValue = rb.getString (propertyName); in lookup()
409 if (propertyValue != null) return propertyValue; in lookup()
420 String propertyValue = null; in lookup() local
423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName); in lookup()
426 if (propertyValue != null) return propertyValue; in lookup()
/external/hamcrest/hamcrest-library/src/test/java/org/hamcrest/beans/
DHasPropertyWithValueTest.java116 private final String propertyValue; field in HasPropertyWithValueTest.BeanWithInfo
118 public BeanWithInfo(String propertyValue) { in BeanWithInfo() argument
119 this.propertyValue = propertyValue; in BeanWithInfo()
123 return propertyValue; in property()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
DSkipBeanTest.java45 Object propertyValue, Tag customTag) { in representJavaBeanProperty() argument
46 if (propertyValue == null) { in representJavaBeanProperty()
50 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); in representJavaBeanProperty()
65 Object propertyValue, Tag customTag) { in representJavaBeanProperty() argument
66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue, in representJavaBeanProperty()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
DRepresenter.java121 Object propertyValue, Tag customTag) { in representJavaBeanProperty() argument
124 boolean hasAlias = this.representedObjects.containsKey(propertyValue); in representJavaBeanProperty()
126 Node nodeValue = representData(propertyValue); in representJavaBeanProperty()
128 if (propertyValue != null && !hasAlias) { in representJavaBeanProperty()
132 if (propertyValue instanceof Enum<?>) { in representJavaBeanProperty()
137 if (property.getType() == propertyValue.getClass()) { in representJavaBeanProperty()
138 if (!(propertyValue instanceof Map<?, ?>)) { in representJavaBeanProperty()
145 checkGlobalTag(property, nodeValue, propertyValue); in representJavaBeanProperty()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue133/
DStackOverflowTest.java57 Object propertyValue, Tag customTag) { in representJavaBeanProperty() argument
62 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); in representJavaBeanProperty()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/
DFlexibleScalarStylesInJavaBeanTest.java118 Object propertyValue, Tag customTag) { in representJavaBeanProperty() argument
122 propertyValue, customTag); in representJavaBeanProperty()
143 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); in representJavaBeanProperty()
/external/pdfium/xfa/fxfa/fm2js/
Dxfa_fm2jscontext.cpp561 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Avg() local
562 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Avg()
565 if (propertyValue->IsNull()) { in Avg()
581 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Avg()
640 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Count() local
643 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Count()
645 if (propertyValue->IsNull()) { in Count()
656 propertyValue->ToString().AsStringC(), newPropertyValue.get()); in Count()
713 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Max() local
716 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Max()
[all …]
/external/v8/src/inspector/
Dv8-value-copier.cc153 std::unique_ptr<protocol::Value> propertyValue; in toProtocolValue() local
155 toProtocolValue(context, property, maxDepth, &propertyValue); in toProtocolValue()
158 std::move(propertyValue)); in toProtocolValue()
/external/testng/src/main/java/org/testng/xml/
DTestNGContentHandler.java794 String propertyValue = System.getProperty(property); in expandValue() local
795 if (propertyValue == null) { in expandValue()
796 propertyValue = System.getenv(property); in expandValue()
798 if (propertyValue != null) { in expandValue()
799 result.append(propertyValue); in expandValue()
/external/proguard/src/proguard/
DConfigurationParser.java1167 String propertyValue = properties.getProperty(propertyName); in replaceSystemProperties() local
1168 if (propertyValue == null) in replaceSystemProperties()
1174 word = word.substring(0, fromIndex) + propertyValue + word.substring(toIndex+1); in replaceSystemProperties()
1176 fromIndex += propertyValue.length(); in replaceSystemProperties()
/external/desugar/java/com/google/devtools/build/android/desugar/
DDesugar.java578 String propertyValue = System.getProperty(LAMBDA_METAFACTORY_DUMPER_PROPERTY); in createAndRegisterLambdaDumpDirectory() local
579 if (propertyValue != null) { in createAndRegisterLambdaDumpDirectory()
580 Path path = Paths.get(propertyValue).toAbsolutePath(); in createAndRegisterLambdaDumpDirectory()
/external/nanohttpd/core/src/main/java/fi/iki/elonen/
DNanoHTTPD.java1900 String propertyValue = sep >= 0 ? decodePercent(e.substring(sep + 1)) : null; in decodeParameters() local
1901 if (propertyValue != null) { in decodeParameters()
1902 parms.get(propertyName).add(propertyValue); in decodeParameters()
/external/python/cpython2/Mac/Modules/qt/
D_Qtmodule.c9141 void * propertyValue; in Qt_SpriteMediaSetProperty() local
9149 &propertyValue)) in Qt_SpriteMediaSetProperty()
9154 propertyValue); in Qt_SpriteMediaSetProperty()
9167 void * propertyValue; in Qt_SpriteMediaGetProperty() local
9175 &propertyValue)) in Qt_SpriteMediaGetProperty()
9180 propertyValue); in Qt_SpriteMediaGetProperty()
9348 void * propertyValue; in Qt_SpriteMediaSetSpriteProperty() local
9356 &propertyValue)) in Qt_SpriteMediaSetSpriteProperty()
9361 propertyValue); in Qt_SpriteMediaSetSpriteProperty()
9374 void * propertyValue; in Qt_SpriteMediaGetSpriteProperty() local
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUnicodeSet.java3877 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSet.java3964 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
/external/clang/test/Analysis/
Dretain-release-path-notes.m28 @property(retain) id propertyValue; property
65 …id leaked = foo.propertyValue; // expected-note{{Property returns an Objective-C object with a +0 …
96 …id object = foo.propertyValue; // expected-note{{Property returns an Objective-C object with a +0 …
120 …id result = self.propertyValue; // expected-note{{Property returns an Objective-C object with a +0…
Dretain-release-path-notes-gc.m28 @property(retain) id propertyValue; property