/external/webkit/Source/JavaScriptCore/runtime/ |
BooleanPrototype.cpp | 56 JSValue thisValue = exec->hostThisValue(); 57 if (thisValue == jsBoolean(false)) 60 if (thisValue == jsBoolean(true)) 63 if (!thisValue.inherits(&BooleanObject::s_info)) 66 if (asBooleanObject(thisValue)->internalValue() == jsBoolean(false)) 69 ASSERT(asBooleanObject(thisValue)->internalValue() == jsBoolean(true)); 75 JSValue thisValue = exec->hostThisValue(); 76 if (thisValue.isBoolean()) 77 return JSValue::encode(thisValue); 79 if (!thisValue.inherits(&BooleanObject::s_info) [all...] |
CallData.cpp | 35 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args) 38 return exec->interpreter()->executeCall(exec, asObject(functionObject), callType, callData, thisValue, args);
|
RegExpPrototype.cpp | 63 JSValue thisValue = exec->hostThisValue(); 64 if (!thisValue.inherits(&RegExpObject::s_info)) 66 return JSValue::encode(asRegExpObject(thisValue)->test(exec)); 71 JSValue thisValue = exec->hostThisValue(); 72 if (!thisValue.inherits(&RegExpObject::s_info)) 74 return JSValue::encode(asRegExpObject(thisValue)->exec(exec)); 79 JSValue thisValue = exec->hostThisValue(); 80 if (!thisValue.inherits(&RegExpObject::s_info)) 110 asRegExpObject(thisValue)->setRegExp(regExp.release()); 111 asRegExpObject(thisValue)->setLastIndex(0) [all...] |
ObjectPrototype.cpp | 85 JSValue thisValue = exec->hostThisValue(); 86 return JSValue::encode(thisValue.toThisObject(exec)); 91 JSValue thisValue = exec->hostThisValue(); 92 return JSValue::encode(jsBoolean(thisValue.toThisObject(exec)->hasOwnProperty(exec, Identifier(exec, exec->argument(0).toString(exec))))); 97 JSValue thisValue = exec->hostThisValue(); 98 JSObject* thisObj = thisValue.toThisObject(exec); 116 JSValue thisValue = exec->hostThisValue(); 120 thisValue.toThisObject(exec)->defineGetter(exec, Identifier(exec, exec->argument(0).toString(exec)), asObject(exec->argument(1))); 126 JSValue thisValue = exec->hostThisValue(); 130 thisValue.toThisObject(exec)->defineSetter(exec, Identifier(exec, exec->argument(0).toString(exec)), asObjec (…) [all...] |
DatePrototype.cpp | 456 JSValue thisValue = exec->hostThisValue(); 457 if (!thisValue.inherits(&DateInstance::s_info)) 460 DateInstance* thisDateObj = asDateInstance(thisValue); 474 JSValue thisValue = exec->hostThisValue(); 475 if (!thisValue.inherits(&DateInstance::s_info)) 478 DateInstance* thisDateObj = asDateInstance(thisValue); 492 JSValue thisValue = exec->hostThisValue(); 493 if (!thisValue.inherits(&DateInstance::s_info)) 496 DateInstance* thisDateObj = asDateInstance(thisValue); 511 JSValue thisValue = exec->hostThisValue() [all...] |
StringPrototype.cpp | 299 JSValue thisValue = exec->hostThisValue(); 300 JSString* sourceVal = thisValue.toThisJSString(exec); 472 JSValue thisValue = exec->hostThisValue(); 475 if (thisValue.isString()) 476 return JSValue::encode(thisValue); 478 if (thisValue.inherits(&StringObject::s_info)) 479 return JSValue::encode(asStringObject(thisValue)->internalValue()); 486 JSValue thisValue = exec->hostThisValue(); 487 if (thisValue.isUndefinedOrNull()) // CheckObjectCoercible 489 UString s = thisValue.toThisString(exec) [all...] |
Completion.cpp | 50 Completion evaluate(ExecState* exec, ScopeChainNode* scopeChain, const SourceCode& source, JSValue thisValue) 62 JSObject* thisObj = (!thisValue || thisValue.isUndefinedOrNull()) ? exec->dynamicGlobalObject() : thisValue.toObject(exec);
|
PropertySlot.cpp | 37 return call(exec, m_data.getterFunc, callType, callData, thisValue(), exec->emptyList());
|
CallData.h | 60 JSValue call(ExecState*, JSValue functionObject, CallType, const CallData&, JSValue thisValue, const ArgList&);
|
FunctionPrototype.cpp | 87 JSValue thisValue = exec->hostThisValue(); 88 if (thisValue.inherits(&JSFunction::s_info)) { 89 JSFunction* function = asFunction(thisValue); 98 if (thisValue.inherits(&InternalFunction::s_info)) { 99 InternalFunction* function = asInternalFunction(thisValue); 108 JSValue thisValue = exec->hostThisValue(); 110 CallType callType = getCallData(thisValue, callData); 132 return JSValue::encode(call(exec, thisValue, callType, callData, exec->argument(0), applyArgs)); 137 JSValue thisValue = exec->hostThisValue(); 139 CallType callType = getCallData(thisValue, callData) [all...] |
NumberPrototype.cpp | 67 static ALWAYS_INLINE bool toThisNumber(JSValue thisValue, double &x) 69 JSValue v = thisValue.getJSNumber(); 132 JSValue thisValue = exec->hostThisValue(); 133 JSValue v = thisValue.getJSNumber(); 170 JSValue thisValue = exec->hostThisValue(); 171 JSValue v = thisValue.getJSNumber(); 205 JSValue thisValue = exec->hostThisValue(); 206 JSValue v = thisValue.getJSNumber(); 289 JSValue thisValue = exec->hostThisValue(); 292 JSValue v = thisValue.getJSNumber() [all...] |
Completion.h | 59 Completion evaluate(ExecState*, ScopeChainNode*, const SourceCode&, JSValue thisValue = JSValue());
|
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPMethod.cpp | 55 JSValue thisValue = exec->hostThisValue(); 58 if (thisValue.inherits(&JSHTMLElement::s_info)) { 59 JSHTMLElement* element = static_cast<JSHTMLElement*>(asObject(thisValue)); 63 thisValue = scriptObject; 66 if (thisValue.inherits(&JSNPObject::s_info)) { 67 JSNPObject* jsNPObject = static_cast<JSNPObject*>(asObject(thisValue));
|
/external/webkit/Source/WebCore/bindings/js/ |
JSMainThreadExecState.h | 45 static JSC::JSValue call(JSC::ExecState* exec, JSC::JSValue functionObject, JSC::CallType callType, const JSC::CallData& callData, JSC::JSValue thisValue, const JSC::ArgList& args) 48 return JSC::call(exec, functionObject, callType, callData, thisValue, args); 51 static JSC::Completion evaluate(JSC::ExecState* exec, JSC::ScopeChainNode* chain, const JSC::SourceCode& source, JSC::JSValue thisValue) 54 return JSC::evaluate(exec, chain, source, thisValue);
|
JSDOMGlobalObject.cpp | 45 JSDOMGlobalObject::JSDOMGlobalObject(JSGlobalData& globalData, Structure* structure, PassRefPtr<DOMWrapperWorld> world, JSObject* thisValue) 46 : JSGlobalObject(globalData, structure, thisValue)
|
JSErrorHandler.cpp | 93 JSValue thisValue = globalObject->toThisObject(exec); 96 JSValue returnValue = JSC::call(exec, jsFunction, callType, callData, thisValue, args);
|
ScheduledAction.cpp | 90 void ScheduledAction::executeFunctionInContext(JSGlobalObject* globalObject, JSValue thisValue, ScriptExecutionContext* context) 109 JSMainThreadExecState::call(exec, m_function.get(), callType, callData, thisValue, args); 111 JSC::call(exec, m_function.get(), callType, callData, thisValue, args);
|
ScheduledAction.h | 61 void executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue thisValue, ScriptExecutionContext*);
|
/external/proguard/src/proguard/evaluation/ |
Variables.java | 125 Value thisValue = this.values[index]; 133 if (thisValue != null && 135 thisValue.computationalType() == otherValue.computationalType()) 137 Value newValue = thisValue.generalize(otherValue); 139 changed = changed || !thisValue.equals(newValue); 145 changed = changed || thisValue != null; 296 Value thisValue = this.values[index]; 304 if (thisValue != null && 306 thisValue.computationalType() == otherValue.computationalType() && 307 !thisValue.equals(otherValue) [all...] |
Stack.java | 131 Value thisValue = this.values[index]; 133 if (thisValue != null) 141 newValue = thisValue.generalize(otherValue); 144 changed = changed || !thisValue.equals(newValue); 517 Value thisValue = this.values[index]; 519 if (thisValue == null ? otherValue != null : 520 !thisValue.equals(otherValue))
|
/external/webkit/Source/JavaScriptCore/debugger/ |
DebuggerCallFrame.cpp | 79 JSValue thisValue = m_callFrame->uncheckedR(codeBlock->thisRegister()).jsValue(); 80 if (!thisValue.isObject()) 83 return asObject(thisValue);
|
/external/webkit/Source/WebCore/bridge/ |
runtime_method.cpp | 98 JSValue thisValue = exec->hostThisValue(); 99 if (thisValue.inherits(&RuntimeObject::s_info)) { 100 RuntimeObject* runtimeObject = static_cast<RuntimeObject*>(asObject(thisValue)); 106 if (thisValue.inherits(&JSHTMLElement::s_info)) { 107 HTMLElement* element = static_cast<JSHTMLElement*>(asObject(thisValue))->impl();
|
/external/webkit/Source/WebCore/bindings/v8/ |
V8WindowErrorHandler.cpp | 55 v8::Local<v8::Object> thisValue = v8::Context::GetCurrent()->Global(); 59 returnValue = callFunction->Call(thisValue, 3, parameters);
|
V8WorkerContextErrorHandler.cpp | 55 v8::Local<v8::Object> thisValue = v8::Context::GetCurrent()->Global(); 57 returnValue = callFunction->Call(thisValue, 3, parameters);
|
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
JSTestObj.cpp | [all...] |