Home
last modified time | relevance | path

Searched refs:thisValue (Results 1 – 11 of 11) sorted by relevance

/external/proguard/src/proguard/evaluation/
DVariables.java125 Value thisValue = this.values[index]; in generalize() local
133 if (thisValue != null && in generalize()
135 thisValue.computationalType() == otherValue.computationalType()) in generalize()
137 Value newValue = thisValue.generalize(otherValue); in generalize()
139 changed = changed || !thisValue.equals(newValue); in generalize()
145 changed = changed || thisValue != null; in generalize()
296 Value thisValue = this.values[index]; in equals() local
304 if (thisValue != null && in equals()
306 thisValue.computationalType() == otherValue.computationalType() && in equals()
307 !thisValue.equals(otherValue)) in equals()
DStack.java131 Value thisValue = this.values[index]; in generalize() local
133 if (thisValue != null) in generalize()
141 newValue = thisValue.generalize(otherValue); in generalize()
144 changed = changed || !thisValue.equals(newValue); in generalize()
517 Value thisValue = this.values[index]; in equals() local
519 if (thisValue == null ? otherValue != null : in equals()
520 !thisValue.equals(otherValue)) in equals()
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DV8ErrorHandler.cpp67 v8::Local<v8::Object> thisValue = isolate->GetCurrentContext()->Global(); in callListenerFunction() local
77 …returnValue = V8ScriptRunner::callFunction(callFunction, context, thisValue, WTF_ARRAY_LENGTH(para… in callListenerFunction()
79 …returnValue = ScriptController::callFunction(context, callFunction, thisValue, WTF_ARRAY_LENGTH(pa… in callListenerFunction()
/external/chromium_org/v8/test/webkit/
Dfunction-apply-aliased.js36 function forwarder(f, thisValue, args) { argument
38 return f.apply(thisValue, arguments);
/external/chromium_org/third_party/WebKit/Source/testing/runner/
DCppVariant.cpp96 NPObject* thisValue = value.objectValue; in isEqual() local
98 return thisValue->_class == otherValue->_class in isEqual()
99 && thisValue->referenceCount == otherValue->referenceCount; in isEqual()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSVariablesMapForEachCallback.h42 …virtual void handleItem(ScriptValue thisValue, const String& value, const String& name, CSSVariabl…
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
DV8TestCallbackInterface.h62 …virtual void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringA…
DV8TestCallbackInterface.cpp218 void V8TestCallbackInterface::callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const… in callbackWithThisValueVoidMethodStringArg() argument
231 v8::Handle<v8::Value> thisHandle = thisValue.v8Value(); in callbackWithThisValueVoidMethodStringArg()
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
Dcallback_interface.cpp72 v8::Handle<v8::Value> thisHandle = thisValue.v8Value();
/external/v8/test/es5conform/
Des5conform.status314 # Array.prototype.reduce - null passed as thisValue to strict callbackfn
/external/clang/lib/CodeGen/
DCGClass.cpp1390 llvm::Value *thisValue = CGF.LoadCXXThis(); in Emit() local
1392 LValue ThisLV = CGF.MakeAddrLValue(thisValue, RecordTy); in Emit()