Home
last modified time | relevance | path

Searched refs:propertyValue (Results 1 – 25 of 43) 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.java322 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()
/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/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/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/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/cldr/tools/java/org/unicode/cldr/test/
DTestMisc.java815 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
817 if (propertyValue.equalsIgnoreCase("case")) { in applyPropertyAlias()
819 } else if (propertyValue.equalsIgnoreCase("canonical")) { in applyPropertyAlias()
821 } else if (propertyValue.equalsIgnoreCase("compatibility")) { in applyPropertyAlias()
826 if (propertyValue.equalsIgnoreCase("case")) { in applyPropertyAlias()
829 } else if (propertyValue.equalsIgnoreCase("canonical")) { in applyPropertyAlias()
832 } else if (propertyValue.equalsIgnoreCase("compatibility")) { in applyPropertyAlias()
838 UnicodeSet temp = caseFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
843 UnicodeSet temp = canonicalFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
848 UnicodeSet temp = caseFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
/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/fxjs/
Dcfxjse_formcalc_context.cpp668 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Avg() local
669 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Avg()
672 if (propertyValue->IsNull()) { in Avg()
688 propertyValue->ToString().AsStringView(), newPropertyValue.get()); in Avg()
746 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Count() local
749 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Count()
751 if (propertyValue->IsNull()) { in Count()
762 propertyValue->ToString().AsStringView(), newPropertyValue.get()); in Count()
818 auto propertyValue = pdfium::MakeUnique<CFXJSE_Value>(pIsolate); in Max() local
821 argValue->GetObjectPropertyByIdx(1, propertyValue.get()); in Max()
[all …]
/external/v8/src/inspector/
Dv8-value-utils.cc89 std::unique_ptr<protocol::Value> propertyValue; in toProtocolValue() local
91 toProtocolValue(context, property, maxDepth, &propertyValue); in toProtocolValue()
95 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.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/icu/tools/srcgen/currysrc/libs/
Dorg.eclipse.core.contenttype_3.7.0.v20180426-1644.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_ ...
/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/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/guice/lib/build/
Dspring-beans.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/springframework/ org/ ...
/external/junit-params/lib/
Dassertj-core-1.7.1.jarMETA-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/ ...
/external/guice/extensions/struts2/lib/
Dstruts2-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...

12