HomeSort by relevance Sort by last modified time
    Searched refs:propertyNames (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/v8/test/mjsunit/
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...]
  /external/emma/core/java12/com/vladium/util/
XProperties.java 42 // note: must use propertyNames() because that is the only method that recurses
43 for (Enumeration propertyNames = propertyNames (); propertyNames.hasMoreElements (); )
45 _propertyNames.add (propertyNames.nextElement ());
61 // note: must use propertyNames() because that is the only method that recurses
62 for (Enumeration propertyNames = propertyNames (); propertyNames.hasMoreElements (); )
64 _propertyNames.add (propertyNames.nextElement ())
    [all...]
Property.java 76 // note: must use propertyNames() because that is the only method that recurses
79 for (Enumeration overrideNames = overrides.propertyNames (); overrideNames.hasMoreElements (); )
331 // (getProperty() uses a non-virtual call to get(), while propertyNames()
410 // (getProperty() uses a non-virtual call to get(), while propertyNames()
449 for (Enumeration e = System.getProperties ().propertyNames ();
491 // (getProperty() uses a non-virtual call to get(), while propertyNames()
IProperties.java 89 // always use propertyNames() for traversing java.util.Properties:
91 for (Enumeration names = properties.propertyNames (); names.hasMoreElements (); )
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 42 Enumeration<?> propertyNames = properties.propertyNames();
43 while (propertyNames.hasMoreElements()) {
44 String propertyName = (String) propertyNames.nextElement();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 158 DEFINE_STATIC_LOCAL(PreAllocatedPropertyVector, propertyNames, ());
161 if (propertyNames.isEmpty()) {
165 propertyNames.append(getJSPropertyName(propertyId));
167 std::sort(propertyNames.begin(), propertyNames.end(), codePointCompareLessThan);
168 propertyNamesLength = propertyNames.size();
173 String key = propertyNames.at(i);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertiesTest.java 85 Enumeration<?> propertyNames = systemProperties.propertyNames();
87 while (propertyNames.hasMoreElements()) {
88 propertyName = (String) propertyNames.nextElement();
521 Enumeration<?> nameEnum = properties.propertyNames();
537 nameEnum = properties.propertyNames();
578 Enumeration<?> nameEnum = properties.propertyNames();
598 nameEnum = properties.propertyNames();
633 Enumeration e = myProps.propertyNames();
686 e = myProps.propertyNames();
    [all...]
  /libcore/luni/src/main/java/java/util/
PropertyResourceBundle.java 73 return (Enumeration<String>) resources.propertyNames();
Properties.java 210 Enumeration<?> keys = propertyNames();
442 public Enumeration<?> propertyNames() {
  /external/chromium_org/v8/test/mjsunit/harmony/
collection-iterator.js 17 var propertyNames = Object.getOwnPropertyNames(SetIteratorPrototype);
18 assertArrayEquals(['next'], propertyNames);
112 var propertyNames = Object.getOwnPropertyNames(MapIteratorPrototype);
113 assertArrayEquals(['next'], propertyNames);
generators-debug-scopes.js 142 var names = scope.scopeObject().propertyNames();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RuntimeModel.js 336 function receivedPropertyNames(propertyNames)
339 if (!propertyNames) {
348 propertyNames[commandLineAPI[i]] = true;
350 this._reportCompletions(completionsReadyCallback, dotNotation, bracketNotation, expressionString, prefix, Object.keys(propertyNames));
  /external/chromium_org/extensions/renderer/resources/
platform_app.js 89 * @param {Array.<string>} propertyNames names of properties to disable.
91 function disableGetters(object, objectName, propertyNames, opt_messageSuffix) {
92 $Array.forEach(propertyNames, function(propertyName) {
131 * @param {Array.<string>} propertyNames names of properties to disable.
133 function disableSetters(object, objectName, propertyNames, opt_messageSuffix) {
134 $Array.forEach(propertyNames, function(propertyName) {
  /external/chromium_org/v8/src/
mirror-debugger.js 669 ObjectMirror.prototype.propertyNames = function(kind, limit) {
673 var propertyNames;
680 propertyNames =
682 total += propertyNames.length;
689 propertyNames = propertyNames.concat(namedInterceptorNames);
718 for (var i = 0; index < limit && i < propertyNames.length; i++) {
719 names[index++] = propertyNames[i];
743 var names = this.propertyNames(kind, limit);
1074 UnresolvedFunctionMirror.prototype.propertyNames = function(kind, limit)
    [all...]
v8natives.js 1080 var propertyNames =
1089 for (var i = 0; i < propertyNames.length; ++i) {
1090 var name = propertyNames[i];
1099 propertyNames[j++] = name;
1101 propertyNames.length = j;
1104 return propertyNames;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
SubtleCrypto.cpp 182 const char* const propertyNames[] = { "d", "n", "e", "p", "q", "dp", "dq", "qi", "k" };
183 for (unsigned i = 0; i < WTF_ARRAY_LENGTH(propertyNames); ++i)
184 copyStringProperty(propertyNames[i], dict, jsonObject.get());
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 213 for (Enumeration e= p.propertyNames(); e.hasMoreElements(); ) {
  /libcore/luni/src/main/java/java/security/
Security.java 99 for (Enumeration<?> e = provider.propertyNames(); e.hasMoreElements();) {
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8Binding.cpp 875 v8::Local<v8::Array> propertyNames = object->GetPropertyNames();
876 uint32_t length = propertyNames->Length()
    [all...]
SerializedScriptValue.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /frameworks/base/core/java/android/transition/
Transition.java     [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /external/chromium_org/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 154 var names = scope.scopeObject().propertyNames();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 

Completed in 645 milliseconds

1 2 3