Searched refs:propertyNames (Results 51 - 75 of 112) sorted by relevance

12345

/external/webkit/Source/WebCore/bindings/js/
H A DJSSQLTransactionCustom.cpp65 JSValue lengthValue = object->get(exec, exec->propertyNames().length);
H A DJSDOMWindowCustom.cpp213 if (propertyName == exec->propertyNames().toString) {
379 void JSDOMWindow::getPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
384 Base::getPropertyNames(exec, propertyNames, mode);
387 void JSDOMWindow::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
392 Base::getOwnPropertyNames(exec, propertyNames, mode);
/external/v8/src/
H A Dv8natives.js991 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[
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSGlobalObject.cpp237 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()
[all...]
H A DJSString.cpp277 if (propertyName == exec->propertyNames().underscoreProto) {
294 if (propertyName == exec->propertyNames().length) {
313 if (propertyName != exec->propertyNames().underscoreProto)
H A DRegExpConstructor.cpp105 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);
H A DJSArray.cpp274 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, mod
[all...]
H A DJSONObject.cpp214 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);
H A DJSGlobalData.cpp159 , propertyNames(new CommonIdentifiers(this))
305 delete propertyNames;
H A DError.cpp171 : InternalFunction(&exec->globalData(), globalObject, structure, exec->globalData().propertyNames->emptyIdentifier)
H A DJSGlobalData.h180 CommonIdentifiers* propertyNames; member in class:JSC::JSGlobalData
/external/webkit/Source/JavaScriptGlue/
H A DUserObjectImp.cpp92 void UserObjectImp::getOwnPropertyNames(ExecState *exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
102 propertyNames.add(CFStringToIdentifier(propertyName, exec));
107 JSObject::getOwnPropertyNames(exec, propertyNames, mode);
/external/webkit/Source/JavaScriptCore/interpreter/
H A DCallFrame.h71 const CommonIdentifiers& propertyNames() const { return *globalData().propertyNames; } function in class:JSC::ExecState
/external/webkit/Source/JavaScriptCore/parser/
H A DJSParser.cpp365 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) {
1130 const Identifier* ident = &m_globalData->propertyNames->nullIdentifier;
1297 failIfTrue(*name == m_globalData->propertyNames->underscoreProto);
1335 failIfTrue(m_globalData->propertyNames->arguments == *name);
1336 failIfTrue(m_globalData->propertyNames->eval == *name);
1600 failIfTrueIfStrict(m_globalData->propertyNames
[all...]
/external/webkit/Source/WebCore/bridge/
H A DNP_jsobject.cpp469 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());
H A Druntime_object.cpp297 void RuntimeObject::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode) argument
307 instance->getPropertyNames(exec, propertyNames);
/external/webkit/Source/WebCore/inspector/
H A DInjectedScriptSource.js152 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/
H A DProperty.java76 // 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()
H A DIProperties.java89 // always use propertyNames() for traversing java.util.Properties:
91 for (Enumeration names = properties.propertyNames (); names.hasMoreElements (); )
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp1463 } else if (propertyName == exec->propertyNames().length) {
1487 if (propertyName == exec->propertyNames().length) {
1497 void QtRuntimeMetaMethod::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
1500 propertyNames.add(Identifier(exec, "connect"));
1501 propertyNames.add(Identifier(exec, "disconnect"));
1502 propertyNames.add(exec->propertyNames().length);
1505 QtRuntimeMethod::getOwnPropertyNames(exec, propertyNames, mode);
1686 if (propertyName == exec->propertyNames().length) {
1696 if (propertyName == exec->propertyNames()
1706 getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
[all...]
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObjectFunctions.h401 void JSCallbackObject<Base>::getOwnPropertyNames(ExecState* exec, PropertyNameArray& propertyNames, EnumerationMode mode) argument
409 getPropertyNames(execRef, thisRef, toRef(&propertyNames));
419 propertyNames.add(Identifier(exec, name));
430 propertyNames.add(Identifier(exec, name));
435 Base::getOwnPropertyNames(exec, propertyNames, mode);
H A DJSObjectRef.h192 void GetPropertyNames(JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames);
199 (*JSObjectGetPropertyNamesCallback) (JSContextRef ctx, JSObjectRef object, JSPropertyNameAccumulatorRef propertyNames);
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp366 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)
1136 if (property == propertyNames()
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DConsoleView.js379 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));
/external/v8/test/mjsunit/bugs/harmony/
H A Ddebug-blockscopes.js162 var names = scope.scopeObject().propertyNames();

Completed in 339 milliseconds

12345