Searched refs:thisValue (Results 1 – 11 of 11) sorted by relevance
/external/proguard/src/proguard/evaluation/ |
D | Variables.java | 125 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()
|
D | Stack.java | 131 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/ |
D | V8ErrorHandler.cpp | 67 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/ |
D | function-apply-aliased.js | 36 function forwarder(f, thisValue, args) { argument 38 return f.apply(thisValue, arguments);
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
D | CppVariant.cpp | 96 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/ |
D | CSSVariablesMapForEachCallback.h | 42 …virtual void handleItem(ScriptValue thisValue, const String& value, const String& name, CSSVariabl…
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
D | V8TestCallbackInterface.h | 62 …virtual void callbackWithThisValueVoidMethodStringArg(ScriptValue thisValue, const String& stringA…
|
D | V8TestCallbackInterface.cpp | 218 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/ |
D | callback_interface.cpp | 72 v8::Handle<v8::Value> thisHandle = thisValue.v8Value();
|
/external/v8/test/es5conform/ |
D | es5conform.status | 314 # Array.prototype.reduce - null passed as thisValue to strict callbackfn
|
/external/clang/lib/CodeGen/ |
D | CGClass.cpp | 1390 llvm::Value *thisValue = CGF.LoadCXXThis(); in Emit() local 1392 LValue ThisLV = CGF.MakeAddrLValue(thisValue, RecordTy); in Emit()
|