HomeSort by relevance Sort by last modified time
    Searched refs:JSObject (Results 251 - 275 of 357) sorted by null

<<1112131415

  /external/v8/src/
debug.cc 929 // Ignore check if break point object is not a JSObject.
    [all...]
objects-debug.cc 148 JSObject::cast(this)->JSObjectPrint();
250 JSObject::cast(this)->JSObjectVerify();
400 void JSObject::PrintProperties() {
442 void JSObject::PrintElements() {
523 void JSObject::JSObjectPrint() {
524 PrintF("%p: [JSObject]\n", this);
534 void JSObject::JSObjectVerify() {
904 // JSObject: Compilation error.
    [all...]
objects.h 49 // - JSObject
195 // inobject properties when normalizing properties of a JSObject.
223 // JSObject for GC purposes. The first four entries here have typeof
638 // Convert to a JSObject if needed.
    [all...]
  /external/webkit/WebCore/bridge/objc/
objc_utility.mm 249 JSObject* imp = [obj _imp];
361 JSObject *throwError(ExecState *exec, ErrorType type, NSString *message)
367 JSObject *error = throwError(exec, type, UString(buffer, length));
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 34 #include "JSObject.h"
130 JSObject *object = val.toObject(exec);
147 QVariant convertValueToQVariant(ExecState* exec, JSValue value, QMetaType::Type hint, int *distance, HashSet<JSObject*>* visitedObjects)
152 JSObject* object = 0;
642 JSObject* object = value.toObject(exec);
757 HashSet<JSObject*> visitedObjects;
859 JSObject* ret = constructEmptyObject(exec);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Executable.cpp 63 JSObject* EvalExecutable::compile(ExecState* exec, ScopeChainNode* scopeChainNode)
84 JSObject* ProgramExecutable::checkSyntax(ExecState* exec)
94 JSObject* ProgramExecutable::compile(ExecState* exec, ScopeChainNode* scopeChainNode)
JSNumberCell.h 43 class JSObject;
63 virtual JSObject* toObject(ExecState*) const;
66 virtual JSObject* toThisObject(ExecState*) const;
JSArray.cpp 48 // * The regular JSObject property map.
55 // integer) are not considered array indices and will be stored in the JSObject property map.
134 : JSObject(structure)
145 : JSObject(structure)
167 : JSObject(structure)
224 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, i), slot);
239 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
270 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
293 JSObject::put(exec, propertyName, value, slot);
432 return JSObject::deleteProperty(exec, propertyName)
    [all...]
JSFunction.h 48 JSObject* construct(ExecState*, const ArgList&);
  /external/webkit/JavaScriptGlue/
JSUtils.cpp 33 #include "JSObject.h"
41 JSObject* imp;
250 JSObject *object = inValue.toObject(exec);
254 JSObject* imp = object;
  /external/webkit/JavaScriptCore/debugger/
Debugger.cpp 105 JSObject* error = eval->compile(globalCallFrame, globalCallFrame->scopeChain());
  /external/webkit/WebCore/bindings/js/
JSHTMLAllCollectionCustom.cpp 61 static JSValue JSC_HOST_CALL callHTMLAllCollection(ExecState* exec, JSObject* function, JSValue, const ArgList& args)
JSInjectedScriptHostCustom.cpp 134 JSObject* object = args.at(0).getObject();
222 JSObject* injectedScript = globalObject->injectedScript();
228 globalObject->setInjectedScript(injectedScriptObject.jsObject());
ScriptControllerMac.mm 143 static void updateStyleIfNeededForBindings(JSC::ExecState*, JSC::JSObject* rootObject)
  /external/webkit/WebCore/bridge/
runtime_method.cpp 88 static JSValue JSC_HOST_CALL callRuntimeMethod(ExecState* exec, JSObject* function, JSValue thisValue, const ArgList& args)
  /external/v8/src/ia32/
builtins-ia32.cc 152 // Now allocate the JSObject on the heap.
158 // Allocated the JSObject, now initialize the fields.
160 // ebx: JSObject
162 __ mov(Operand(ebx, JSObject::kMapOffset), eax);
164 __ mov(Operand(ebx, JSObject::kPropertiesOffset), ecx);
165 __ mov(Operand(ebx, JSObject::kElementsOffset), ecx);
168 // ebx: JSObject
172 __ lea(ecx, Operand(ebx, JSObject::kHeaderSize));
182 // Add the object tag to make the JSObject real, so that we can continue and
187 // ebx: JSObject
    [all...]
  /external/v8/src/x64/
builtins-x64.cc 501 // result: JSObject
504 __ movq(FieldOperand(result, JSObject::kMapOffset), scratch1);
520 // result: JSObject
527 // result: JSObject
530 __ Move(FieldOperand(scratch1, JSObject::kMapOffset),
617 // result: JSObject
622 __ movq(FieldOperand(result, JSObject::kMapOffset), elements_array);
631 // result: JSObject
638 // result: JSObject
643 __ Move(FieldOperand(elements_array, JSObject::kMapOffset)
    [all...]
fast-codegen-x64.cc 95 FieldOperand(receiver_reg(), JSObject::kPropertiesOffset));
139 FieldOperand(receiver_reg(), JSObject::kPropertiesOffset));
  /external/v8/src/arm/
fast-codegen-arm.cc 96 FieldMemOperand(receiver_reg(), JSObject::kPropertiesOffset));
134 FieldMemOperand(receiver_reg(), JSObject::kPropertiesOffset));
  /external/v8/test/cctest/
test-alloc.cc 64 CHECK(!Heap::CopyJSObject(JSObject::cast(object))->IsFailure());
84 int instance_size = JSObject::kHeaderSize;
  /external/v8/test/mjsunit/
getter-in-value-prototype.js 31 // JSObject.
  /external/webkit/WebCore/dom/
EventTarget.h 144 void invalidateJSEventListeners(JSC::JSObject*);
202 inline void EventTarget::invalidateJSEventListeners(JSC::JSObject* wrapper)
  /external/webkit/WebCore/inspector/
JavaScriptProfileNode.cpp 48 typedef HashMap<ProfileNode*, JSObject*> ProfileNodeMap;
223 JSObject* profileNodeWrapper = profileNodeCache().get(profileNode);
  /external/webkit/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm 686 uint32_t NetscapePluginInstanceProxy::idForObject(JSObject* object)
721 if (JSObject* object = frame->script()->jsObjectForPluginElement([m_pluginView element]))
781 JSObject* object = m_objects.get(objectID);
815 JSObject* object = m_objects.get(objectID);
848 JSObject* object = m_objects.get(objectID);
    [all...]
  /external/webkit/JavaScriptCore/API/
JSCallbackObjectFunctions.h 310 JSObject* JSCallbackObject<Base>::construct(ExecState* exec, JSObject* constructor, const ArgList& args)
322 JSObject* result;
373 JSValue JSCallbackObject<Base>::call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args)
563 JSObject* o = new (exec) JSCallbackFunction(exec, callAsFunction, propertyName);

Completed in 593 milliseconds

<<1112131415