/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/ |
H A D | PropertiesHelper.java | 21 String propertyValue = null; 23 propertyValue = properties.getProperty(propertyName); 25 if (propertyValue == null) { 26 propertyValue = System.getProperty(propertyName); 28 if (propertyValue == null) { 34 expandedValue = sdkPathStart + propertyValue + sdkPathEnd; 45 String propertyValue = properties.getProperty(propertyName); 46 String expandedPropertyValue = doSingleSubstitution(propertyValue, properties);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
H A D | UnicodePropertySymbolTable.java | 40 // String propertyValue, UnicodeSet result) { 42 // return applyPropertyAlias(propertyName, propertyValue, result); 53 String propertyValue, UnicodeSet result) { 62 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) 63 : propertyName.substring(opPos+1) + "=" + propertyValue; 73 propertyValue = propertyValue.trim(); 74 if (propertyValue.length() != 0) { 75 status = applyPropertyAlias0(propertyName, propertyValue, resul 52 applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) argument 128 applyPropertyAlias0(String propertyName, String propertyValue, UnicodeSet result) argument 213 isValid(UnicodeProperty prop, String propertyValue) argument [all...] |
H A D | UnicodeProperty.java | 322 public final UnicodeSet getSet(String propertyValue) { argument 323 return getSet(propertyValue, null); 332 public final UnicodeSet getSet(String propertyValue, UnicodeSet result) { argument 333 return getSet(new SimpleMatcher(propertyValue, 840 String propertyValue, UnicodeSet result) { 842 System.out.println(propertyName + "=" + propertyValue); 847 UnicodeSet x = prop.getSet(propertyValue, result); 1406 public boolean isValidValue(String propertyValue) { argument 1412 if (UnicodeProperty.compareNames(valueAlias, propertyValue) == 0) { 1416 if (UnicodeProperty.compareNames(valueAlias2, propertyValue) 839 applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) argument [all...] |
H A D | UnicodePropertySource.java | 85 public UnicodeSet getPropertySet(String propertyValue, UnicodeSet result){ argument 90 if (propertyValue.equals(value)) {
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
H A D | UnicodePropertySymbolTable.java | 39 // String propertyValue, UnicodeSet result) { 41 // return applyPropertyAlias(propertyName, propertyValue, result); 52 String propertyValue, UnicodeSet result) { 61 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) 62 : propertyName.substring(opPos+1) + "=" + propertyValue; 72 propertyValue = propertyValue.trim(); 73 if (propertyValue.length() != 0) { 74 status = applyPropertyAlias0(propertyName, propertyValue, resul 51 applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) argument 127 applyPropertyAlias0(String propertyName, String propertyValue, UnicodeSet result) argument 212 isValid(UnicodeProperty prop, String propertyValue) argument [all...] |
H A D | UnicodeProperty.java | 321 public final UnicodeSet getSet(String propertyValue) { argument 322 return getSet(propertyValue, null); 331 public final UnicodeSet getSet(String propertyValue, UnicodeSet result) { argument 332 return getSet(new SimpleMatcher(propertyValue, 839 String propertyValue, UnicodeSet result) { 841 System.out.println(propertyName + "=" + propertyValue); 846 UnicodeSet x = prop.getSet(propertyValue, result); 1405 public boolean isValidValue(String propertyValue) { argument 1411 if (UnicodeProperty.compareNames(valueAlias, propertyValue) == 0) { 1415 if (UnicodeProperty.compareNames(valueAlias2, propertyValue) 838 applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) argument [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/ |
H A D | SkipBeanTest.java | 45 Object propertyValue, Tag customTag) { 46 if (propertyValue == null) { 50 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); 65 Object propertyValue, Tag customTag) { 66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue, 44 representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) argument 64 representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) argument
|
/external/opencv3/samples/winrt/ImageManipulations/common/ |
H A D | suspensionmanager.cpp | 319 void WriteProperty(DataWriter^ writer, IPropertyValue^ propertyValue) 321 switch (propertyValue->Type) 325 writer->WriteByte(propertyValue->GetUInt8()); 329 writer->WriteUInt16(propertyValue->GetUInt16()); 333 writer->WriteUInt32(propertyValue->GetUInt32()); 337 writer->WriteUInt64(propertyValue->GetUInt64()); 341 writer->WriteUInt16(propertyValue->GetInt16()); 345 writer->WriteUInt32(propertyValue->GetInt32()); 349 writer->WriteUInt64(propertyValue->GetInt64()); 353 writer->WriteSingle(propertyValue [all...] |
/external/emma/core/java12/com/vladium/util/exception/ |
H A D | ExceptionCommon.java | 403 String propertyValue = null; 406 propertyValue = rb.getString (propertyName); 409 if (propertyValue != null) return propertyValue; 420 String propertyValue = null; 423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName); 426 if (propertyValue != null) return propertyValue;
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
H A D | Representer.java | 113 * @param propertyValue 121 Object propertyValue, Tag customTag) { 124 boolean hasAlias = this.representedObjects.containsKey(propertyValue); 126 Node nodeValue = representData(propertyValue); 128 if (propertyValue != null && !hasAlias) { 132 if (propertyValue instanceof Enum<?>) { 137 if (property.getType() == propertyValue.getClass()) { 138 if (!(propertyValue instanceof Map<?, ?>)) { 145 checkGlobalTag(property, nodeValue, propertyValue); 120 representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) argument
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue133/ |
H A D | StackOverflowTest.java | 57 Object propertyValue, Tag customTag) { 62 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); 56 representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) argument
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/ |
H A D | FlexibleScalarStylesInJavaBeanTest.java | 118 Object propertyValue, Tag customTag) { 122 propertyValue, customTag); 143 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); 117 representJavaBeanProperty(Object javaBean, Property property, Object propertyValue, Tag customTag) argument
|
/external/pdfium/xfa/src/fxfa/src/fm2js/ |
H A D | xfa_fm2jscontext.cpp | 277 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime);
local 278 FXJSE_Value_GetObjectPropByIdx(argValue, 1, propertyValue);
280 if (FXJSE_Value_IsNull(propertyValue)) {
293 FXJSE_Value_ToUTF8String(propertyValue, propertyStr);
307 FXJSE_Value_Release(propertyValue);
362 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime);
local 365 FXJSE_Value_GetObjectPropByIdx(argValue, 1, propertyValue);
367 if (FXJSE_Value_IsNull(propertyValue)) {
377 FXJSE_Value_ToUTF8String(propertyValue, propertyStr);
385 FXJSE_Value_Release(propertyValue);
446 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 549 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 651 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 680 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 733 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 766 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 788 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 848 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 3042 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 3275 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 5590 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 6408 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 6575 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 6612 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 6719 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 6935 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 6978 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local 7017 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); local [all...] |
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
H A D | UnicodePropertySource.java | 84 public UnicodeSet getPropertySet(String propertyValue, UnicodeSet result){ argument 89 if (propertyValue.equals(value)) {
|
/external/opencv3/modules/ts/src/ |
H A D | ocl_test.cpp | 55 #define DUMP_PROPERTY_XML(propertyName, propertyValue) \ 59 ssValue << (propertyValue); \
|
/external/testng/src/main/java/org/testng/xml/ |
H A D | TestNGContentHandler.java | 794 String propertyValue = System.getProperty(property); 795 if (propertyValue == null) { 796 propertyValue = System.getenv(property); 798 if (propertyValue != null) { 799 result.append(propertyValue);
|
/external/v8/src/debug/ |
H A D | mirrors.js | 2873 var propertyValue = propertyMirror.value(); 2874 if (this.inlineRefs_() && propertyValue.isValue()) { 2875 result.value = this.serializeReferenceWithDisplayData_(propertyValue); 2881 result.ref = propertyValue.handle(); 2904 var propertyValue = propertyMirror.value(); 2905 if (this.inlineRefs_() && propertyValue.isValue()) { 2906 result.value = this.serializeReferenceWithDisplayData_(propertyValue); 2908 result.ref = propertyValue.handle();
|
/external/proguard/src/proguard/ |
H A D | ConfigurationParser.java | 1167 String propertyValue = properties.getProperty(propertyName); 1168 if (propertyValue == null) 1174 word = word.substring(0, fromIndex) + propertyValue + word.substring(toIndex+1); 1176 fromIndex += propertyValue.length();
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.equinox.launcher.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.equinox.launcher_1.1.0.v20100507.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.equinox.registry_3.5.0.v20100503.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/icu/tools/srcgen/currysrc/libs/ |
H A D | org.eclipse.core.contenttype_3.5.0.v20150421-2214.jar | META-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ... |
/external/nanohttpd/core/src/main/java/fi/iki/elonen/ |
H A D | NanoHTTPD.java | 1900 String propertyValue = sep >= 0 ? decodePercent(e.substring(sep + 1)) : null; 1901 if (propertyValue != null) { 1902 parms.get(propertyName).add(propertyValue);
|