Home
last modified time | relevance | path

Searched refs:propertyNames (Results 1 – 25 of 30) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/
Dobject-get-own-property-names.js32 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 …]
Dmirror-object.js68 var names = mirror.propertyNames();
Ddebug-scopes.js176 var names = scope.scopeObject().propertyNames();
/external/emma/core/java12/com/vladium/util/
DXProperties.java43 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()
DProperty.java79 … for (Enumeration overrideNames = overrides.propertyNames (); overrideNames.hasMoreElements (); ) in combine()
449 for (Enumeration e = System.getProperties ().propertyNames (); in keys()
DIProperties.java91 for (Enumeration names = properties.propertyNames (); names.hasMoreElements (); ) in wrap()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
DPropertiesHelper.java42 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/
DV8CSSStyleDeclarationCustom.cpp159 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/
Dplatform_app.js91 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/
Dsource_row.js111 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/
Dcollection-iterator.js17 var propertyNames = Object.getOwnPropertyNames(SetIteratorPrototype);
18 assertArrayEquals(['next'], propertyNames);
117 var propertyNames = Object.getOwnPropertyNames(MapIteratorPrototype);
118 assertArrayEquals(['next'], propertyNames);
Dgenerators-debug-scopes.js142 var names = scope.scopeObject().propertyNames();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DRuntimeModel.js339 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/
Dmirror-debugger.js717 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 …]
Dv8natives.js1081 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/
DRTCPeerConnection.cpp180 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/
DSubtleCrypto.cpp183 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/
Ddebug-blockscopes.js154 var names = scope.scopeObject().propertyNames();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DSerializedScriptValue.cpp1155 …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()
DV8Binding.cpp919 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/
Ddebug-blockscopes.js156 var names = scope.scopeObject().propertyNames();
/external/owasp/sanitizer/src/main/org/owasp/html/
DCssSchema.java92 Iterable<? extends String> propertyNames) { in withProperties() argument
95 for (String propertyName : propertyNames) { in withProperties()
/external/apache-http/src/org/apache/commons/logging/
DLogFactory.java625 Enumeration names = props.propertyNames(); in getFactory()
/external/guava/guava-tests/test/com/google/common/collect/
DMapsTest.java743 @Override public Enumeration<?> propertyNames() { in testFromPropertiesNullKey()
761 @Override public Enumeration<?> propertyNames() { in testFromPropertiesNonStringKeys()
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerImpl.java1575 Enumeration names = params.propertyNames(); in setParameters()

12