/external/chromium_org/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 | 176 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/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/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
D | V8CSSStyleDeclarationCustom.cpp | 159 DEFINE_STATIC_LOCAL(PreAllocatedPropertyVector, propertyNames, ()); in namedPropertyEnumeratorCustom() 162 if (propertyNames.isEmpty()) { in namedPropertyEnumeratorCustom() 166 propertyNames.append(getJSPropertyName(propertyId)); in namedPropertyEnumeratorCustom() 168 std::sort(propertyNames.begin(), propertyNames.end(), codePointCompareLessThan); in namedPropertyEnumeratorCustom() 169 propertyNamesLength = propertyNames.size(); in namedPropertyEnumeratorCustom() 174 String key = propertyNames.at(i); in namedPropertyEnumeratorCustom()
|
/external/chromium_org/extensions/renderer/resources/ |
D | platform_app.js | 91 function disableGetters(object, objectName, propertyNames, opt_messageSuffix) { argument 92 $Array.forEach(propertyNames, function(propertyName) { 133 function disableSetters(object, objectName, propertyNames, opt_messageSuffix) { argument 134 $Array.forEach(propertyNames, function(propertyName) {
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
D | source_row.js | 111 var propertyNames = [ 123 for (var i = 0; i < propertyNames.length; ++i) { 124 var setStyle = noStyleSet && this[propertyNames[i][0]]; 126 this.row_.classList.add(propertyNames[i][1]); 129 this.row_.classList.remove(propertyNames[i][1]);
|
/external/chromium_org/v8/test/mjsunit/es6/ |
D | collection-iterator.js | 17 var propertyNames = Object.getOwnPropertyNames(SetIteratorPrototype); 18 assertArrayEquals(['next'], propertyNames); 117 var propertyNames = Object.getOwnPropertyNames(MapIteratorPrototype); 118 assertArrayEquals(['next'], propertyNames);
|
D | generators-debug-scopes.js | 142 var names = scope.scopeObject().propertyNames();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | RuntimeModel.js | 339 function receivedPropertyNames(propertyNames) argument 342 if (!propertyNames) { 351 propertyNames[commandLineAPI[i]] = true; 353 …ReadyCallback, dotNotation, bracketNotation, expressionString, prefix, Object.keys(propertyNames));
|
/external/chromium_org/v8/src/ |
D | mirror-debugger.js | 717 ObjectMirror.prototype.propertyNames = function(kind, limit) { method in ObjectMirror 721 var propertyNames; 727 propertyNames = TryGetPropertyNames(this.value_); 728 total += propertyNames.length; 735 propertyNames = propertyNames.concat(namedInterceptorNames); 764 for (var i = 0; index < limit && i < propertyNames.length; i++) { 765 names[index++] = propertyNames[i]; 789 var names = this.propertyNames(kind, limit); 1120 UnresolvedFunctionMirror.prototype.propertyNames = function(kind, limit) { method in UnresolvedFunctionMirror 2772 var propertyNames = mirror.propertyNames(PropertyKind.Named); [all …]
|
D | v8natives.js | 1081 var propertyNames = 1090 for (var i = 0; i < propertyNames.length; ++i) { 1091 var name = propertyNames[i]; 1100 propertyNames[j++] = name; 1102 propertyNames.length = j; 1105 return propertyNames;
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
D | RTCPeerConnection.cpp | 180 Vector<String> propertyNames; in parseOfferOptions() local 181 options.getOwnPropertyNames(propertyNames); in parseOfferOptions() 185 …if (propertyNames.isEmpty() || propertyNames.contains("optional") || propertyNames.contains("manda… in parseOfferOptions()
|
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
D | SubtleCrypto.cpp | 183 const char* const propertyNames[] = { "d", "n", "e", "p", "q", "dp", "dq", "qi", "k" }; in copyJwkDictionaryToJson() local 184 for (unsigned i = 0; i < WTF_ARRAY_LENGTH(propertyNames); ++i) in copyJwkDictionaryToJson() 185 copyStringProperty(propertyNames[i], dict, jsonObject.get()); in copyJwkDictionaryToJson()
|
/external/chromium_org/v8/test/mjsunit/bugs/harmony/ |
D | debug-blockscopes.js | 154 var names = scope.scopeObject().propertyNames();
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
D | SerializedScriptValue.cpp | 1155 …DenseArrayState(v8::Handle<v8::Array> array, v8::Handle<v8::Array> propertyNames, StateBase* next,… in DenseArrayState() argument 1160 m_propertyNames = v8::Local<v8::Array>::New(isolate, propertyNames); in DenseArrayState() 1189 …SparseArrayState(v8::Handle<v8::Array> array, v8::Handle<v8::Array> propertyNames, StateBase* next… in SparseArrayState() argument 1192 m_propertyNames = v8::Local<v8::Array>::New(isolate, propertyNames); in SparseArrayState() 1436 v8::Handle<v8::Array> propertyNames = array->GetPropertyNames(); in startArrayState() local 1441 if (shouldSerializeDensely(length, propertyNames->Length())) { in startArrayState() 1443 return push(new DenseArrayState(array, propertyNames, next, isolate())); in startArrayState() 1447 return push(new SparseArrayState(array, propertyNames, next, isolate())); in startArrayState()
|
D | V8Binding.cpp | 919 v8::Local<v8::Array> propertyNames = object->GetPropertyNames(); in v8ToJSONValue() local 920 uint32_t length = propertyNames->Length(); in v8ToJSONValue() 922 v8::Local<v8::Value> name = propertyNames->Get(v8::Int32::New(isolate, i)); in v8ToJSONValue()
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
D | debug-blockscopes.js | 156 var names = scope.scopeObject().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/guava/guava-tests/test/com/google/common/collect/ |
D | MapsTest.java | 743 @Override public Enumeration<?> propertyNames() { in testFromPropertiesNullKey() 761 @Override public Enumeration<?> propertyNames() { in testFromPropertiesNonStringKeys()
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | TransformerImpl.java | 1575 Enumeration names = params.propertyNames(); in setParameters()
|