HomeSort by relevance Sort by last modified time
    Searched defs:thisValue (Results 1 - 11 of 11) sorted by null

  /external/webkit/JavaScriptCore/interpreter/
CallFrame.cpp 34 JSValue CallFrame::thisValue()
  /external/webkit/WebCore/bindings/js/
JSEventListener.cpp 163 JSValue thisValue = globalObject->toThisObject(exec);
166 JSValue returnValue = JSC::call(exec, jsFunction, callType, callData, thisValue, args);
  /external/webkit/WebCore/bindings/v8/
V8WorkerContextEventListener.cpp 116 v8::Local<v8::Object> thisValue = v8::Context::GetCurrent()->Global();
119 returnValue = callFunction->Call(thisValue, 3, parameters);
  /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/icu4c/i18n/
selfmt.cpp 385 UnicodeString* thisValue = (UnicodeString*)thisKeyToVal.pointer;
391 if ( *otherElemValue != *thisValue){
  /libcore/luni/src/main/java/java/lang/
Integer.java 127 int thisValue = value;
129 return thisValue < thatValue ? -1 : (thisValue == thatValue ? 0 : 1);
Long.java 114 long thisValue = this.value;
116 return thisValue < thatValue ? -1 : (thisValue == thatValue ? 0 : 1);
  /external/webkit/WebKit/qt/Api/
qwebelement.cpp 683 static bool setupScriptContext(WebCore::Element* element, JSC::JSValue& thisValue, ScriptState*& state, ScriptController*& scriptController)
704 thisValue = toJS(state, element);
705 if (!thisValue)
721 JSC::JSValue thisValue;
724 if (!setupScriptContext(m_element, thisValue, state, scriptController))
729 JSC::Completion completion = JSC::evaluate(state, scopeChain, JSC::makeSource(script), thisValue);
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp     [all...]
JITOpcodes.cpp 175 JSValue thisValue;
182 JSValue thisValue;
192 JSValue thisValue;
197 JSValue thisValue;
227 storePtr(regT2, Address(stackPointerRegister, OBJECT_OFFSETOF(NativeCallFrameStructure, thisValue) + OBJECT_OFFSETOF(JSValue, u.asBits.payload)));
228 storePtr(regT3, Address(stackPointerRegister, OBJECT_OFFSETOF(NativeCallFrameStructure, thisValue) + OBJECT_OFFSETOF(JSValue, u.asBits.tag)));
    [all...]

Completed in 309 milliseconds