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

1 2

  /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...]
  /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/webkit/Source/WebCore/bindings/v8/
ScriptValue.cpp 108 v8::Local<v8::Array> propertyNames = object->GetPropertyNames();
109 uint32_t length = propertyNames->Length();
111 v8::Local<v8::Value> name = propertyNames->Get(v8::Int32::New(i));
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptoriginalglobalobject_p.h 156 JSObjectRef propertyNames
163 Q_ASSERT(JSValueIsObject(m_context, propertyNames));
166 int count = JSValueToNumber(m_context, JSObjectGetProperty(m_context, propertyNames, lengthName, &exception), &exception);
172 JSValueRef tmp = JSObjectGetPropertyAtIndex(m_context, propertyNames, i, &exception);
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.cpp 111 constructor->putDirect(exec->globalData(), exec->propertyNames().prototype, jsPrototype, DontEnum | DontDelete | ReadOnly);
506 JSPropertyNameArrayRef propertyNames = new OpaqueJSPropertyNameArray(globalData);
511 propertyNames->array.reserveInitialCapacity(size);
513 propertyNames->array.append(JSRetainPtr<JSStringRef>(Adopt, OpaqueJSString::create(array[i].ustring()).leakRef()));
515 return JSPropertyNameArrayRetain(propertyNames);
544 PropertyNameArray* propertyNames = toJS(array);
545 APIEntryShim entryShim(propertyNames->globalData());
546 propertyNames->add(propertyName->identifier(propertyNames->globalData()));
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 71 const CommonIdentifiers& propertyNames() const { return *globalData().propertyNames; }
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalData.h 180 CommonIdentifiers* propertyNames;
  /libcore/luni/src/main/java/java/util/
Properties.java 210 Enumeration<?> keys = propertyNames();
442 public Enumeration<?> propertyNames() {
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 100 const CommonIdentifiers& propertyNames() const { return *m_globalData->propertyNames; }
  /external/v8/src/
mirror-debugger.js 621 ObjectMirror.prototype.propertyNames = function(kind, limit) {
625 var propertyNames;
632 propertyNames = %GetLocalPropertyNames(this.value_);
633 total += propertyNames.length;
640 propertyNames = propertyNames.concat(namedInterceptorNames);
669 for (var i = 0; index < limit && i < propertyNames.length; i++) {
670 names[index++] = propertyNames[i];
694 var names = this.propertyNames(kind, limit);
952 UnresolvedFunctionMirror.prototype.propertyNames = function(kind, limit)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java 87 Enumeration<?> propertyNames = systemProperties.propertyNames();
89 while (propertyNames.hasMoreElements()) {
90 propertyName = (String) propertyNames.nextElement();
457 * @tests java.util.Properties#propertyNames()
461 Enumeration names = myPro.propertyNames();
486 Enumeration<?> names = parent.propertyNames();
495 names = current.propertyNames();
506 names = child.propertyNames();
583 Enumeration<?> nameEnum = properties.propertyNames();
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
org.eclipse.ant.core_3.2.200.v20100427.jar 
org.eclipse.core.resources.compatibility_3.4.0.v20090505.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /external/emma/lib/
emma.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 3982 milliseconds

1 2