/external/v8/test/mjsunit/ |
D | object-get-own-property-names.js | 32 var propertyNames = Object.getOwnPropertyNames(obj); 33 propertyNames.sort(); 34 assertEquals(2, propertyNames.length); 35 assertEquals("a", propertyNames[0]); 36 assertEquals("b", propertyNames[1]); 39 var propertyNames = Object.getOwnPropertyNames(obj); 40 propertyNames.sort(); 41 assertEquals(2, propertyNames.length); 42 assertEquals("a", propertyNames[0]); 43 assertEquals("b", propertyNames[1]); [all …]
|
D | mirror-object.js | 68 var names = mirror.propertyNames();
|
D | debug-scopes.js | 193 var names = scope.scopeObject().propertyNames();
|
/external/emma/core/java12/com/vladium/util/ |
D | XProperties.java | 43 for (Enumeration propertyNames = propertyNames (); propertyNames.hasMoreElements (); ) in list() 45 _propertyNames.add (propertyNames.nextElement ()); in list() 62 for (Enumeration propertyNames = propertyNames (); propertyNames.hasMoreElements (); ) in list() 64 _propertyNames.add (propertyNames.nextElement ()); in list()
|
D | Property.java | 79 … for (Enumeration overrideNames = overrides.propertyNames (); overrideNames.hasMoreElements (); ) in combine() 449 for (Enumeration e = System.getProperties ().propertyNames (); in keys()
|
D | IProperties.java | 91 for (Enumeration names = properties.propertyNames (); names.hasMoreElements (); ) in wrap()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/ |
D | PropertiesHelper.java | 42 Enumeration<?> propertyNames = properties.propertyNames(); in doSubstitutions() local 43 while (propertyNames.hasMoreElements()) { in doSubstitutions() 44 String propertyName = (String) propertyNames.nextElement(); in doSubstitutions()
|
/external/v8/test/mjsunit/es6/ |
D | collection-iterator.js | 17 var propertyNames = Object.getOwnPropertyNames(SetIteratorPrototype); 18 assertArrayEquals(['next'], propertyNames); 126 var propertyNames = Object.getOwnPropertyNames(MapIteratorPrototype); 127 assertArrayEquals(['next'], propertyNames);
|
D | generators-debug-scopes.js | 143 var names = scope.scopeObject().propertyNames();
|
D | debug-blockscopes.js | 158 var names = scope.scopeObject().propertyNames();
|
/external/guice/core/src/com/google/inject/name/ |
D | Names.java | 64 for (Enumeration<?> e = properties.propertyNames(); e.hasMoreElements(); ) { in bindProperties()
|
/external/v8/test/mjsunit/bugs/harmony/ |
D | debug-blockscopes.js | 155 var names = scope.scopeObject().propertyNames();
|
/external/jetty/src/java/org/eclipse/jetty/util/log/ |
D | Log.java | 118 … Enumeration<String> systemKeyEnum = (Enumeration<String>)System.getProperties().propertyNames(); in AccessController.doPrivileged()
|
/external/v8/src/debug/ |
D | mirrors.js | 754 ObjectMirror.prototype.propertyNames = function() { method in ObjectMirror 768 var names = this.propertyNames(); 1088 UnresolvedFunctionMirror.prototype.propertyNames = function(kind, limit) { method in UnresolvedFunctionMirror 2808 var properties = mirror.propertyNames();
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | CssSchema.java | 92 Iterable<? extends String> propertyNames) { in withProperties() argument 95 for (String propertyName : propertyNames) { in withProperties()
|
/external/apache-http/src/org/apache/commons/logging/ |
D | LogFactory.java | 625 Enumeration names = props.propertyNames(); in getFactory()
|
/external/testng/src/main/java/org/testng/ |
D | TestNGAntTask.java | 696 Enumeration en= props.propertyNames(); in printDebugInfo()
|
/external/chromium-trace/catapult/tracing/third_party/components/webcomponentsjs/ |
D | ShadowDOM.js | 100 function oneOf(object, propertyNames) { argument 101 for (var i = 0; i < propertyNames.length; i++) { 102 if (propertyNames[i] in object) return propertyNames[i];
|
D | webcomponents.js | 142 function oneOf(object, propertyNames) { argument 143 for (var i = 0; i < propertyNames.length; i++) { 144 if (propertyNames[i] in object) return propertyNames[i];
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | ShadowDOM.js | 100 function oneOf(object, propertyNames) { argument 101 for (var i = 0; i < propertyNames.length; i++) { 102 if (propertyNames[i] in object) return propertyNames[i];
|
D | webcomponents.js | 142 function oneOf(object, propertyNames) { argument 143 for (var i = 0; i < propertyNames.length; i++) { 144 if (propertyNames[i] in object) return propertyNames[i];
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapsTest.java | 1091 @Override public Enumeration<?> propertyNames() { in testFromPropertiesNullKey() 1109 @Override public Enumeration<?> propertyNames() { in testFromPropertiesNonStringKeys()
|
/external/jetty/src/java/org/eclipse/jetty/xml/ |
D | XmlConfiguration.java | 1231 Enumeration<?> ensysprop = System.getProperties().propertyNames(); in main()
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | TransformerImpl.java | 1577 Enumeration names = params.propertyNames(); in setParameters()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ToStream.java | 573 propNames = format.propertyNames(); in setOutputFormat()
|