HomeSort by relevance Sort by last modified time
    Searched refs:propertyNames (Results 51 - 75 of 131) sorted by null

1 23 4 5 6

  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 239 PropertyNameArray propertyNames(exec);
240 m_jsObject->getPropertyNames(exec, propertyNames);
242 NPIdentifier* nameIdentifiers = npnMemNewArray<NPIdentifier>(propertyNames.size());
244 for (size_t i = 0; i < propertyNames.size(); ++i)
245 nameIdentifiers[i] = static_cast<NPIdentifier>(IdentifierRep::get(propertyNames[i].ustring().utf8().data()));
248 *identifierCount = propertyNames.size();
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 71 const CommonIdentifiers& propertyNames() const { return *globalData().propertyNames; }
  /external/webkit/Source/WebCore/bindings/js/
JSSQLTransactionCustom.cpp 65 JSValue lengthValue = object->get(exec, exec->propertyNames().length);
JSDOMWindowCustom.cpp 213 if (propertyName == exec->propertyNames().toString) {
379 void JSDOMWindow::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
384 Base::getPropertyNames(exec, propertyNames, mode);
387 void JSDOMWindow::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
392 Base::getOwnPropertyNames(exec, propertyNames, mode);
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.cpp 237 m_objectPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, objectConstructor, DontEnum);
238 m_functionPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, functionConstructor, DontEnum);
239 m_arrayPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, arrayConstructor, DontEnum);
240 m_booleanPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, booleanConstructor, DontEnum);
241 m_stringPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, stringConstructor, DontEnum);
242 m_numberPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, numberConstructor, DontEnum);
243 m_datePrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, dateConstructor, DontEnum);
244 m_regExpPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, m_regExpConstructor.get(), DontEnum);
245 errorPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, m_errorConstructor.get(), DontEnum);
280 m_evalFunction.set(exec->globalData(), this, new (exec) JSFunction(exec, this, m_functionStructure.get(), 1, exec->propertyNames().eval, globalFuncEval))
    [all...]
JSString.cpp 277 if (propertyName == exec->propertyNames().underscoreProto) {
294 if (propertyName == exec->propertyNames().length) {
313 if (propertyName != exec->propertyNames().underscoreProto)
RegExpConstructor.cpp 105 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, regExpPrototype, DontEnum | DontDelete | ReadOnly);
108 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().length, jsNumber(2), ReadOnly | DontDelete | DontEnum);
147 JSArray::put(exec, exec->propertyNames().index, jsNumber(d->lastOvector()[0]), slot);
148 JSArray::put(exec, exec->propertyNames().input, jsString(exec, d->input), slot);
JSArray.cpp 274 if (propertyName == exec->propertyNames().length) {
289 if (propertyName == exec->propertyNames().length) {
330 if (propertyName == exec->propertyNames().length) {
488 if (propertyName == exec->propertyNames().length)
531 void JSArray::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
542 propertyNames.add(Identifier::from(exec, i));
548 propertyNames.add(Identifier::from(exec, it->first));
552 propertyNames.add(exec->propertyNames().length);
554 JSObject::getOwnPropertyNames(exec, propertyNames, mode)
    [all...]
JSONObject.cpp 214 unsigned length = array->get(exec, exec->globalData().propertyNames->length).toUInt32(exec);
253 PropertyNameForFunctionCall emptyPropertyName(m_exec->globalData().propertyNames->emptyIdentifier);
254 object->putDirect(m_exec->globalData(), m_exec->globalData().propertyNames->emptyIdentifier, value.get());
323 if (!value.isObject() || !asObject(value)->hasProperty(m_exec, m_exec->globalData().propertyNames->toJSON))
326 JSValue toJSONFunction = asObject(value)->get(m_exec, m_exec->globalData().propertyNames->toJSON);
486 m_size = m_object->get(exec, exec->globalData().propertyNames->length).toUInt32(exec);
804 finalHolder->put(m_exec, m_exec->globalData().propertyNames->emptyIdentifier, outValue, slot);
JSGlobalData.cpp 159 , propertyNames(new CommonIdentifiers(this))
305 delete propertyNames;
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.cpp 92 void UserObjectImp::getOwnPropertyNames(ExecState *exec, PropertyNameArray& propertyNames, EnumerationMode mode)
102 propertyNames.add(CFStringToIdentifier(propertyName, exec));
107 JSObject::getOwnPropertyNames(exec, propertyNames, mode);
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObjectFunctions.h 401 void JSCallbackObject<Base>::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode)
409 getPropertyNames(execRef, thisRef, toRef(&propertyNames));
419 propertyNames.add(Identifier(exec, name));
430 propertyNames.add(Identifier(exec, name));
435 Base::getOwnPropertyNames(exec, propertyNames, mode);
JSObjectRef.h 192 void GetPropertyNames(JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames);
199 (*JSObjectGetPropertyNamesCallback) (JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames);
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp 365 bool isValidStrictMode = m_globalData->propertyNames->eval != *ident && m_globalData->propertyNames->arguments != *ident;
382 bool isArguments = m_globalData->propertyNames->arguments == *ident;
383 bool isValidStrictMode = m_declaredVariables.add(ident->ustring().impl()).second && m_globalData->propertyNames->eval != *ident && !isArguments;
691 if (!hasSetStrict && m_globalData->propertyNames->useStrictIdentifier == *directive) {
    [all...]
  /external/webkit/Source/WebCore/bridge/
NP_jsobject.cpp 469 PropertyNameArray propertyNames(exec);
471 obj->imp->getPropertyNames(exec, propertyNames);
472 unsigned size = static_cast<unsigned>(propertyNames.size());
477 identifiers[i] = _NPN_GetStringIdentifier(propertyNames[i].ustring().utf8().data());
runtime_object.cpp 297 void RuntimeObject::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode)
307 instance->getPropertyNames(exec, propertyNames);
  /external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js 152 var propertyNames = ignoreHasOwnProperty ? this._getPropertyNames(object) : Object.getOwnPropertyNames(object);
154 propertyNames.push("__proto__");
157 for (var i = 0; i < propertyNames.length; ++i) {
158 var propertyName = propertyNames[i];
  /external/emma/core/java12/com/vladium/util/
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/webkit/Source/WebCore/bridge/qt/
qt_runtime.cpp     [all...]
  /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...]
v8natives.js 991 var propertyNames = %GetLocalElementNames(obj);
998 propertyNames = propertyNames.concat(indexedInterceptorNames);
1005 propertyNames = propertyNames.concat(%GetLocalPropertyNames(obj));
1013 propertyNames = propertyNames.concat(namedInterceptorNames);
1020 for (var i = 0; i < propertyNames.length; ++i) {
1021 var name = ToString(propertyNames[i]);
1029 propertyNames[j++] = name
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 366 RegisterID* argumentsRegister = addVar(propertyNames().arguments, false); // Can be changed by assigning to 'arguments'.
434 if (!canLazilyCreateFunctions || ident == propertyNames().arguments)
473 emitGetById(funcProto.get(), func.get(), globalData()->propertyNames->prototype);
560 if (ident == propertyNames().thisIdentifier)
570 if (ident == propertyNames().arguments)
578 if (ident != propertyNames().arguments)
596 ASSERT(willResolveToArguments(propertyNames().arguments));
598 SymbolTableEntry entry = symbolTable().get(propertyNames().arguments.impl());
625 if (ident == propertyNames().thisIdentifier)
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ConsoleView.js 379 var propertyNames = {};
381 propertyNames[properties[i].name] = true;
382 reportCompletions.call(this, propertyNames);
385 function reportCompletions(propertyNames)
391 propertyNames[commandLineAPI[i]] = true;
394 this._reportCompletions(bestMatchOnly, completionsReadyCallback, dotNotation, bracketNotation, prefix, Object.keys(propertyNames));
    [all...]
  /libcore/luni/src/main/java/java/util/
Properties.java 210 Enumeration<?> keys = propertyNames();
442 public Enumeration<?> propertyNames() {

Completed in 1010 milliseconds

1 23 4 5 6