/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/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/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/v8/src/ |
D | mirror-debugger.js | 2850 var propertyValue = propertyMirror.value(); 2851 if (this.inlineRefs_() && propertyValue.isValue()) { 2852 result.value = this.serializeReferenceWithDisplayData_(propertyValue); 2860 result.ref = propertyValue.handle(); 2883 var propertyValue = propertyMirror.value(); 2884 if (this.inlineRefs_() && propertyValue.isValue()) { 2885 result.value = this.serializeReferenceWithDisplayData_(propertyValue); 2887 result.ref = propertyValue.handle();
|
D | d8.js | 1263 var property_value = value.propertyValue(i); 1934 ProtocolValue.prototype.propertyValue = function(index) { method in ProtocolValue
|
/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 | 347 String propertyValue = (sep >= 0) ? decodePercent(e.substring(sep + 1)) : null; in decodeParameters() local 348 if (propertyValue != null) { in decodeParameters() 349 parms.get(propertyName).add(propertyValue); in decodeParameters()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 3900 … 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
|