Home
last modified time | relevance | path

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

12

/external/cldr/tools/java/org/unicode/cldr/util/props/
DUnicodePropertySymbolTable.java54 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
63 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) in applyPropertyAlias()
64 : propertyName.substring(opPos+1) + "=" + propertyValue; in applyPropertyAlias()
74 propertyValue = propertyValue.trim(); in applyPropertyAlias()
75 if (propertyValue.length() != 0) { in applyPropertyAlias()
76 status = applyPropertyAlias0(propertyName, propertyValue, result); in applyPropertyAlias()
130 String propertyValue, UnicodeSet result) {
138 String[] parts = GC_REMAP.get(UnicodeProperty.toSkeleton(propertyValue));
148 … if (propertyValue.length() > 1 && propertyValue.startsWith("/") && propertyValue.endsWith("/")) {
149 …String fixedRegex = unicodeRegex.transform(propertyValue.substring(1, propertyValue.length() - 1));
[all …]
DUnicodeProperty.java324 public final UnicodeSet getSet(String propertyValue) { in getSet() argument
325 return getSet(propertyValue, null); in getSet()
334 public final UnicodeSet getSet(String propertyValue, UnicodeSet result) { in getSet() argument
339 Boolean binValue = binaryValueOrNull(propertyValue); in getSet()
357 new StringEqualityMatcher(propertyValue) : new NameMatcher(propertyValue); in getSet()
901 String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
903 System.out.println(propertyName + "=" + propertyValue); in applyPropertyAlias()
908 UnicodeSet x = prop.getSet(propertyValue, result); in applyPropertyAlias()
1521 public boolean isValidValue(String propertyValue) { in isValidValue() argument
1527 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.h135 ComPtr<ABI::Windows::Foundation::IPropertyValue> &propertyValue);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DCryptoServicesRegistrar.java268 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() argument
272 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in setThreadProperty()
277 localSetThread(property, propertyValue.clone()); in setThreadProperty()
289 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() argument
293 localSetGlobalProperty(property, propertyValue.clone()); in setGlobalProperty()
296 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() argument
306 properties.put(property.name, propertyValue); in localSetThread()
309 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() argument
311 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in localSetGlobalProperty()
317 localSetThread(property, propertyValue); in localSetGlobalProperty()
[all …]
/external/angle/src/common/
Dsystem_utils.cpp56 std::string propertyValue; in GetEnvironmentVarOrUnCachedAndroidProperty() local
64 auto propertyValue = reinterpret_cast<std::string *>(cookie); in GetEnvironmentVarOrUnCachedAndroidProperty() local
65 *propertyValue = value; in GetEnvironmentVarOrUnCachedAndroidProperty()
67 &propertyValue); in GetEnvironmentVarOrUnCachedAndroidProperty()
71 SetEnvironmentVar(variableName, propertyValue.c_str()); in GetEnvironmentVarOrUnCachedAndroidProperty()
72 return propertyValue; in GetEnvironmentVarOrUnCachedAndroidProperty()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
DCryptoServicesRegistrar.java270 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() argument
274 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in setThreadProperty()
279 localSetThread(property, propertyValue.clone()); in setThreadProperty()
291 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() argument
295 localSetGlobalProperty(property, propertyValue.clone()); in setGlobalProperty()
298 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() argument
308 properties.put(property.name, propertyValue); in localSetThread()
311 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() argument
313 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in localSetGlobalProperty()
319 localSetThread(property, propertyValue); in localSetGlobalProperty()
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/
DCryptoServicesRegistrar.java270 public static <T> void setThreadProperty(Property property, T... propertyValue) in setThreadProperty() argument
274 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in setThreadProperty()
279 localSetThread(property, propertyValue.clone()); in setThreadProperty()
291 public static <T> void setGlobalProperty(Property property, T... propertyValue) in setGlobalProperty() argument
295 localSetGlobalProperty(property, propertyValue.clone()); in setGlobalProperty()
298 private static <T> void localSetThread(Property property, T[] propertyValue) in localSetThread() argument
308 properties.put(property.name, propertyValue); in localSetThread()
311 private static <T> void localSetGlobalProperty(Property property, T... propertyValue) in localSetGlobalProperty() argument
313 if (!property.type.isAssignableFrom(propertyValue[0].getClass())) in localSetGlobalProperty()
319 localSetThread(property, propertyValue); in localSetGlobalProperty()
[all …]
/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/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/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/chromium-trace/catapult/third_party/polymer/components/shadycss/src/
Dstyle-properties.js166 let propertyValue = self.valueForProperty(props[value], props);
168 if (!propertyValue || propertyValue === 'initial') {
170 propertyValue = self.valueForProperty(props[fallback] || fallback, props) ||
172 } else if (propertyValue === 'apply-shim-inherit') {
176 propertyValue = 'inherit';
178 return prefix + (propertyValue || '') + suffix;
/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/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/
DProperties.java57 String propertyValue = getPropertyValue(propertyName); in isOverrideSetTo() local
60 return isSetTrue(propertyValue); in isOverrideSetTo()
62 return isSetFalse(propertyValue); in isOverrideSetTo()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DProperties.java55 String propertyValue = getPropertyValue(propertyName); in isOverrideSetTo() local
58 return isSetTrue(propertyValue); in isOverrideSetTo()
60 return isSetFalse(propertyValue); in isOverrideSetTo()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/
DProperties.java57 String propertyValue = getPropertyValue(propertyName); in isOverrideSetTo() local
60 return isSetTrue(propertyValue); in isOverrideSetTo()
62 return isSetFalse(propertyValue); in isOverrideSetTo()
/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/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/cldr/tools/java/org/unicode/cldr/test/
DTestMisc.java826 … public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) { in applyPropertyAlias() argument
828 if (propertyValue.equalsIgnoreCase("case")) { in applyPropertyAlias()
830 } else if (propertyValue.equalsIgnoreCase("canonical")) { in applyPropertyAlias()
832 } else if (propertyValue.equalsIgnoreCase("compatibility")) { in applyPropertyAlias()
837 if (propertyValue.equalsIgnoreCase("case")) { in applyPropertyAlias()
840 } else if (propertyValue.equalsIgnoreCase("canonical")) { in applyPropertyAlias()
843 } else if (propertyValue.equalsIgnoreCase("compatibility")) { in applyPropertyAlias()
849 UnicodeSet temp = caseFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
854 UnicodeSet temp = canonicalFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
859 UnicodeSet temp = caseFolder.reduce(new UnicodeSet(propertyValue.replace( in applyPropertyAlias()
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
DAddAnnotation.java246 Object propertyValue, in markerAnnotationWithPropertyFromFlatFile() argument
251 annotationClassName, propertyName, propertyClass, propertyValue, locators); in markerAnnotationWithPropertyFromFlatFile()
268 Object propertyValue, in markerAnnotationWithPropertyFromLocators() argument
273 new AnnotationInfo(annotationClass, Collections.singletonMap(propertyName, propertyValue)); in markerAnnotationWithPropertyFromLocators()
/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/llvm-project/clang/test/Analysis/
Dretain-release-path-notes.m28 @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…
/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()

12