/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/ |
D | UnicodePropertySymbolTable.java | 51 public boolean applyPropertyAlias(String propertyName, in applyPropertyAlias() argument 55 int posNotEqual = propertyName.indexOf('\u2260'); in applyPropertyAlias() 56 int posColon = propertyName.indexOf(':'); in applyPropertyAlias() 58 if (posNotEqual < 0) posNotEqual = propertyName.length(); in applyPropertyAlias() 59 if (posColon < 0) posColon = propertyName.length(); in applyPropertyAlias() 61 propertyValue = propertyValue.length() == 0 ? propertyName.substring(opPos+1) in applyPropertyAlias() 62 : propertyName.substring(opPos+1) + "=" + propertyValue; in applyPropertyAlias() 63 propertyName = propertyName.substring(0,opPos); in applyPropertyAlias() 68 if (propertyName.endsWith("!")) { in applyPropertyAlias() 69 propertyName = propertyName.substring(0, propertyName.length() - 1); in applyPropertyAlias() [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/ |
D | PropertiesHelper.java | 20 String propertyName = variableMatcher.group(2); in doSingleSubstitution() local 23 propertyValue = properties.getProperty(propertyName); in doSingleSubstitution() 26 propertyValue = System.getProperty(propertyName); in doSingleSubstitution() 44 String propertyName = (String) propertyNames.nextElement(); in doSubstitutions() local 45 String propertyValue = properties.getProperty(propertyName); in doSubstitutions() 47 properties.setProperty(propertyName, expandedPropertyValue); in doSubstitutions()
|
/external/guava/guava-testlib/test/com/google/common/collect/testing/features/ |
D | FeatureEnumTest.java | 53 for (String propertyName : new String[]{"value", "absent"}) { in assertGoodTesterAnnotation() 56 method = annotationClass.getMethod(propertyName); in assertGoodTesterAnnotation() 59 annotationClass, propertyName)); in assertGoodTesterAnnotation() 63 annotationClass, propertyName), in assertGoodTesterAnnotation() 66 annotationClass, propertyName, annotationClass.getDeclaringClass()), in assertGoodTesterAnnotation()
|
/external/v8/test/webkit/fast/js/ |
D | array-functions-non-arrays.js | 35 for (propertyName in object) { 36 names.push(propertyName); 37 enumerables[propertyName] = 1;
|
/external/v8/test/mjsunit/ |
D | fuzz-accessors.js | 77 var propertyName = builtInPropertyNames[k]; 78 fun(obj, propertyName);
|
D | object-define-property.js | 959 function testDefineProperty(obj, propertyName, desc, resultDesc) { argument 960 Object.defineProperty(obj, propertyName, desc); 961 var actualDesc = Object.getOwnPropertyDescriptor(obj, propertyName);
|
/external/emma/core/java12/com/vladium/util/exception/ |
D | ExceptionCommon.java | 373 private static String lookup (Class namespace, final String propertyName) in lookup() argument 375 if (propertyName == null) return null; in lookup() 406 propertyValue = rb.getString (propertyName); in lookup() 423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName); in lookup()
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssSchema.java | 95 for (String propertyName : propertyNames) { in withProperties() 96 Property prop = DEFINITIONS.get(propertyName); in withProperties() 97 if (prop == null) { throw new IllegalArgumentException(propertyName); } in withProperties() 98 propertiesBuilder.put(propertyName, prop); in withProperties() 128 Property forKey(String propertyName) { in forKey() argument 129 propertyName = Strings.toLowerCase(propertyName); in forKey() 130 Property property = properties.get(propertyName); in forKey() 132 int n = propertyName.length(); in forKey() 133 if (n != 0 && propertyName.charAt(0) == '-') { in forKey() 134 String barePropertyName = stripVendorPrefix(propertyName); in forKey()
|
D | StylingPolicy.java | 95 public void startProperty(String propertyName) { in sanitizeCssProperties() 97 cssProperty = cssSchema.forKey(propertyName); in sanitizeCssProperties() 103 sanitizedCss.append(propertyName).append(':'); in sanitizeCssProperties()
|
D | CssGrammar.java | 206 void startProperty(String propertyName); in startProperty() argument
|
/external/clang/test/SemaObjC/ |
D | property-in-class-extension-1.m | 52 @property (nonatomic, atomic, readonly) float propertyName; // expected-error {{property attributes… property 56 @property (atomic, nonatomic, readonly, readwrite) float propertyName; // expected-error {{property…
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
D | PerformancesView.java | 509 String propertyName = event.getKey(); in preferenceChange() local 513 if (propertyName.equals(IPerformancesConstants.PRE_ECLIPSE_VERSION)) { in preferenceChange() 522 if (propertyName.equals(IPerformancesConstants.PRE_DATABASE_LOCATION)) { in preferenceChange() 530 if (propertyName.equals(IPerformancesConstants.PRE_DATABASE_CONNECTION)) { in preferenceChange() 539 if (propertyName.equals(IPerformancesConstants.PRE_LAST_BUILD)) { in preferenceChange()
|
D | ComponentResultsView.java | 291 String propertyName = event.getKey(); in preferenceChange() local 295 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS)) { in preferenceChange() 302 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_OLD_BUILDS)) { in preferenceChange() 309 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_NIGHTLY_BUILDS)) { in preferenceChange()
|
D | ComponentsView.java | 353 String propertyName = event.getKey(); in preferenceChange() local 357 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS)) { in preferenceChange() 364 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_OLD_BUILDS)) { in preferenceChange() 371 if (propertyName.equals(IPerformancesConstants.PRE_WRITE_STATUS)) { in preferenceChange()
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/ |
D | ServiceConnection.java | 71 public void setRequestProperty(String propertyName, String value) throws IOException; in setRequestProperty() argument
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/ |
D | Properties.java | 209 public Object findValue(String propertyName) { in findValue() argument 210 if (name.equals(propertyName)) { in findValue() 216 Object v = p.findValue(propertyName); in findValue()
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/ |
D | RobolectricTestRunner.java | 420 private static String getSystemProperty(String propertyName, String defaultValue) { 421 String property = System.getProperty(propertyName); 424 logger.info("No system property " + propertyName + " found, default to "
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.ant.core_3.2.200.v20100427.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.equinox.registry_3.5.0.v20100503.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/jetty/src/java/org/eclipse/jetty/util/ajax/ |
D | JSONPojoConvertor.java | 259 public Setter(String propertyName, Method method) in Setter() argument 261 _propertyName = propertyName; in Setter()
|
/external/smali/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/external/nanohttpd/core/src/main/java/fi/iki/elonen/ |
D | NanoHTTPD.java | 343 …String propertyName = (sep >= 0) ? decodePercent(e.substring(0, sep)).trim() : decodePercent(e).tr… in decodeParameters() local 344 if (!parms.containsKey(propertyName)) { in decodeParameters() 345 parms.put(propertyName, new ArrayList<String>()); in decodeParameters() 349 parms.get(propertyName).add(propertyValue); in decodeParameters()
|
/external/proguard/src/proguard/ |
D | ConfigurationParser.java | 1166 String propertyName = word.substring(fromIndex+1, toIndex); in replaceSystemProperties() local 1167 String propertyValue = properties.getProperty(propertyName); in replaceSystemProperties() 1170 throw new ParseException("Value of system property '" + propertyName + in replaceSystemProperties()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
D | ant-junit.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |