/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
D | UnicodePropertySymbolTable.java | 53 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument 62 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) in applyPropertyAlias() 63 : propertyName.substring(opPos+1) + "=" + propertyValue; in applyPropertyAlias() 73 propertyValue = propertyValue.trim(); in applyPropertyAlias() 74 if (propertyValue.length() != 0) { in applyPropertyAlias() 75 status = applyPropertyAlias0(propertyName, propertyValue, result); in applyPropertyAlias() 129 String propertyValue, UnicodeSet result) { 137 String[] parts = GC_REMAP.get(UnicodeProperty.toSkeleton(propertyValue)); 147 … if (propertyValue.length() > 1 && propertyValue.startsWith("/") && propertyValue.endsWith("/")) { 148 …String fixedRegex = unicodeRegex.transform(propertyValue.substring(1, propertyValue.length() - 1)); [all …]
|
D | UnicodeProperty.java | 322 public final UnicodeSet getSet(String propertyValue) { in getSet() argument 323 return getSet(propertyValue, null); in getSet() 332 public final UnicodeSet getSet(String propertyValue, UnicodeSet result) { in getSet() argument 333 return getSet(new SimpleMatcher(propertyValue, in getSet() 840 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument 842 System.out.println(propertyName + "=" + propertyValue); in applyPropertyAlias() 847 UnicodeSet x = prop.getSet(propertyValue, result); in applyPropertyAlias() 1406 public boolean isValidValue(String propertyValue) { in isValidValue() argument 1412 if (UnicodeProperty.compareNames(valueAlias, propertyValue) == 0) { in isValidValue() 1416 if (UnicodeProperty.compareNames(valueAlias2, propertyValue) == 0) { in isValidValue()
|
D | UnicodePropertySource.java | 85 public UnicodeSet getPropertySet(String propertyValue, UnicodeSet result){ in getPropertySet() argument 90 if (propertyValue.equals(value)) { in getPropertySet()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
D | UnicodePropertySymbolTable.java | 52 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument 61 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) in applyPropertyAlias() 62 : propertyName.substring(opPos+1) + "=" + propertyValue; in applyPropertyAlias() 72 propertyValue = propertyValue.trim(); in applyPropertyAlias() 73 if (propertyValue.length() != 0) { in applyPropertyAlias() 74 status = applyPropertyAlias0(propertyName, propertyValue, result); in applyPropertyAlias() 128 String propertyValue, UnicodeSet result) { 136 String[] parts = GC_REMAP.get(UnicodeProperty.toSkeleton(propertyValue)); 146 … if (propertyValue.length() > 1 && propertyValue.startsWith("/") && propertyValue.endsWith("/")) { 147 …String fixedRegex = unicodeRegex.transform(propertyValue.substring(1, propertyValue.length() - 1)); [all …]
|
D | UnicodeProperty.java | 321 public final UnicodeSet getSet(String propertyValue) { in getSet() argument 322 return getSet(propertyValue, null); in getSet() 331 public final UnicodeSet getSet(String propertyValue, UnicodeSet result) { in getSet() argument 332 return getSet(new SimpleMatcher(propertyValue, in getSet() 839 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument 841 System.out.println(propertyName + "=" + propertyValue); in applyPropertyAlias() 846 UnicodeSet x = prop.getSet(propertyValue, result); in applyPropertyAlias() 1405 public boolean isValidValue(String propertyValue) { in isValidValue() argument 1411 if (UnicodeProperty.compareNames(valueAlias, propertyValue) == 0) { in isValidValue() 1415 if (UnicodeProperty.compareNames(valueAlias2, propertyValue) == 0) { in isValidValue()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/ |
D | PropertiesHelper.java | 21 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/opencv3/samples/winrt/ImageManipulations/common/ |
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->GetSingle()); [all …]
|
/external/emma/core/java12/com/vladium/util/exception/ |
D | ExceptionCommon.java | 403 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/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/ |
D | SkipBeanTest.java | 45 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/ |
D | Representer.java | 121 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/pdfium/xfa/src/fxfa/src/fm2js/ |
D | xfa_fm2jscontext.cpp | 277 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); in Avg() local 278 FXJSE_Value_GetObjectPropByIdx(argValue, 1, propertyValue); in Avg() 280 if (FXJSE_Value_IsNull(propertyValue)) { in Avg() 293 FXJSE_Value_ToUTF8String(propertyValue, propertyStr); in Avg() 307 FXJSE_Value_Release(propertyValue); in Avg() 362 FXJSE_HVALUE propertyValue = FXJSE_Value_Create(hruntime); in Count() local 365 FXJSE_Value_GetObjectPropByIdx(argValue, 1, propertyValue); in Count() 367 if (FXJSE_Value_IsNull(propertyValue)) { in Count() 377 FXJSE_Value_ToUTF8String(propertyValue, propertyStr); in Count() 385 FXJSE_Value_Release(propertyValue); in Count() [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue133/ |
D | StackOverflowTest.java | 57 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/ |
D | FlexibleScalarStylesInJavaBeanTest.java | 118 Object propertyValue, Tag customTag) { in representJavaBeanProperty() argument 122 propertyValue, customTag); in representJavaBeanProperty() 143 .representJavaBeanProperty(javaBean, property, propertyValue, customTag); in representJavaBeanProperty()
|
/external/testng/src/main/java/org/testng/xml/ |
D | TestNGContentHandler.java | 794 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/opencv3/modules/ts/src/ |
D | ocl_test.cpp | 55 #define DUMP_PROPERTY_XML(propertyName, propertyValue) \ argument 59 ssValue << (propertyValue); \
|
/external/v8/src/debug/ |
D | mirrors.js | 2876 var propertyValue = propertyMirror.value(); 2877 if (this.inlineRefs_() && propertyValue.isValue()) { 2878 result.value = this.serializeReferenceWithDisplayData_(propertyValue); 2884 result.ref = propertyValue.handle(); 2907 var propertyValue = propertyMirror.value(); 2908 if (this.inlineRefs_() && propertyValue.isValue()) { 2909 result.value = this.serializeReferenceWithDisplayData_(propertyValue); 2911 result.ref = propertyValue.handle();
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
D | UnicodePropertySource.java | 84 public UnicodeSet getPropertySet(String propertyValue, UnicodeSet result){ in getPropertySet() argument 89 if (propertyValue.equals(value)) { in getPropertySet()
|
/external/proguard/src/proguard/ |
D | ConfigurationParser.java | 1167 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/nanohttpd/core/src/main/java/fi/iki/elonen/ |
D | NanoHTTPD.java | 1900 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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 3947 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | UnicodeSet.java | 3860 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
|
/external/clang/test/Analysis/ |
D | retain-release-path-notes.m | 28 @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…
|
D | retain-release-path-notes-gc.m | 28 @property(retain) id propertyValue; property
|