Home
last modified time | relevance | path

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

12

/external/cldr/tools/java/org/unicode/cldr/util/props/
DUnicodePropertySymbolTable.java53 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 …]
DUnicodeProperty.java323 public final UnicodeSet getSet(String propertyValue) { in getSet() argument
324 return getSet(propertyValue, null); in getSet()
333 public final UnicodeSet getSet(String propertyValue, UnicodeSet result) { in getSet() argument
338 Boolean binValue = binaryValueOrNull(propertyValue); in getSet()
356 new StringEqualityMatcher(propertyValue) : new NameMatcher(propertyValue); in getSet()
894 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
896 System.out.println(propertyName + "=" + propertyValue); in applyPropertyAlias()
901 UnicodeSet x = prop.getSet(propertyValue, result); in applyPropertyAlias()
1492 public boolean isValidValue(String propertyValue) { in isValidValue() argument
1498 if (UnicodeProperty.compareNames(valueAlias, propertyValue) == 0) { in isValidValue()
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/winrt/
DInspectableNativeWindow.cpp134 ComPtr<ABI::Windows::Foundation::IPropertyValue> &propertyValue) in GetOptionalPropertyValue() argument
154 result = propertyMap->Lookup(HStringReference(propertyName).Get(), &propertyValue); in GetOptionalPropertyValue()
178 ComPtr<ABI::Windows::Foundation::IPropertyValue> propertyValue; in GetOptionalSizePropertyValue() local
193 HRESULT result = GetOptionalPropertyValue(propertyMap, propertyName, &hasKey, propertyValue); in GetOptionalSizePropertyValue()
196 result = propertyValue->get_Type(&propertyType); in GetOptionalSizePropertyValue()
202 if (SUCCEEDED(propertyValue->GetSize(&sizeValue)) && in GetOptionalSizePropertyValue()
244 ComPtr<ABI::Windows::Foundation::IPropertyValue> propertyValue; in GetOptionalSinglePropertyValue() local
259 HRESULT result = GetOptionalPropertyValue(propertyMap, propertyName, &hasKey, propertyValue); in GetOptionalSinglePropertyValue()
262 result = propertyValue->get_Type(&propertyType); in GetOptionalSinglePropertyValue()
268 if (SUCCEEDED(propertyValue->GetSingle(&scaleValue)) && (scaleValue > 0.0f)) in GetOptionalSinglePropertyValue()
DInspectableNativeWindow.h134 ComPtr<ABI::Windows::Foundation::IPropertyValue> &propertyValue);
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
DCryptoServicesRegistrar.java243 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() argument
247 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in setThreadProperty()
252 localSetThread(property, propertyValue.clone()); in setThreadProperty()
264 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() argument
268 localSetGlobalProperty(property, propertyValue.clone()); in setGlobalProperty()
271 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() argument
281 properties.put(property.name, propertyValue); in localSetThread()
284 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() argument
286 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in localSetGlobalProperty()
292 localSetThread(property, propertyValue); in localSetGlobalProperty()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DCryptoServicesRegistrar.java241 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() argument
245 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in setThreadProperty()
250 localSetThread(property, propertyValue.clone()); in setThreadProperty()
262 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() argument
266 localSetGlobalProperty(property, propertyValue.clone()); in setGlobalProperty()
269 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() argument
279 properties.put(property.name, propertyValue); in localSetThread()
282 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() argument
284 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in localSetGlobalProperty()
290 localSetThread(property, propertyValue); in localSetGlobalProperty()
[all …]
/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/pdfium/fxjs/xfa/
Dcfxjse_formcalc_context.cpp1393 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Avg() local
1394 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Avg()
1397 if (propertyValue->IsNull()) { in Avg()
1413 propertyValue->ToString().AsStringView(), newPropertyValue.get()); in Avg()
1471 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Count() local
1474 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Count()
1476 if (propertyValue->IsNull()) { in Count()
1487 propertyValue->ToString().AsStringView(), newPropertyValue.get()); in Count()
1543 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Max() local
1546 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Max()
[all …]
/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/cldr/tools/java/org/unicode/cldr/test/
DTestMisc.java823 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
825 if (propertyValue.equalsIgnoreCase("case")) { in applyPropertyAlias()
827 } else if (propertyValue.equalsIgnoreCase("canonical")) { in applyPropertyAlias()
829 } else if (propertyValue.equalsIgnoreCase("compatibility")) { in applyPropertyAlias()
834 if (propertyValue.equalsIgnoreCase("case")) { in applyPropertyAlias()
837 } else if (propertyValue.equalsIgnoreCase("canonical")) { in applyPropertyAlias()
840 } else if (propertyValue.equalsIgnoreCase("compatibility")) { in applyPropertyAlias()
846 UnicodeSet temp = caseFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
851 UnicodeSet temp = canonicalFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
856 UnicodeSet temp = caseFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
/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.java1169 String propertyValue = properties.getProperty(propertyName); in replaceSystemProperties() local
1170 if (propertyValue == null) in replaceSystemProperties()
1176 word = word.substring(0, fromIndex) + propertyValue + word.substring(toIndex+1); in replaceSystemProperties()
1178 fromIndex += propertyValue.length(); in replaceSystemProperties()
/external/desugar/java/com/google/devtools/build/android/desugar/
DDesugar.java897 String propertyValue = System.getProperty(LAMBDA_METAFACTORY_DUMPER_PROPERTY); in createAndRegisterLambdaDumpDirectory() local
898 if (propertyValue != null) { in createAndRegisterLambdaDumpDirectory()
899 Path path = Paths.get(propertyValue); in createAndRegisterLambdaDumpDirectory()
/external/cldr/tools/java/org/unicode/cldr/draft/
DUnicodeSetFormat.java166 …public abstract boolean getProperty(String propertyName, String propertyValue, boolean regex, Unic… in getProperty() argument
/external/oj-libjdwp/src/share/back/
Dutil.h429 void setAgentPropertyValue(JNIEnv *env, char *propertyName, char* propertyValue);
Dutil.c1711 setAgentPropertyValue(JNIEnv *env, char *propertyName, char* propertyValue) in setAgentPropertyValue() argument
1724 valueString = JNI_FUNC_PTR(env,NewStringUTF)(env, propertyValue); in setAgentPropertyValue()
/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/v8/src/inspector/
Dvalue-mirror.cc149 std::unique_ptr<protocol::Value> propertyValue; in toProtocolValue() local
151 toProtocolValue(context, property, maxDepth, &propertyValue); in toProtocolValue()
155 std::move(propertyValue)); in toProtocolValue()
/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/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSet.java4026 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUnicodeSet.java3940 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument

12