/external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/ |
pm_pre_init_manifest_file_test.html | 34 this.removeEventListener('message', arguments.callee, false);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
CustomElementConstructorBuilder.cpp | 273 Document* document = V8Document::toNative(info.Callee()->GetHiddenValue(V8HiddenPropertyName::customElementDocument(isolate)).As<v8::Object>()); 274 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, namespaceURI, info.Callee()->GetHiddenValue(V8HiddenPropertyName::customElementNamespaceURI(isolate))); 275 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, tagName, info.Callee()->GetHiddenValue(V8HiddenPropertyName::customElementTagName(isolate))); 276 v8::Handle<v8::Value> maybeType = info.Callee()->GetHiddenValue(V8HiddenPropertyName::customElementType(isolate));
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebMessagePortChannel.h | 52 // Callee receives ownership of the passed vector.
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_function_detect_recursion.cpp | 30 * is part of a cycle, it will have a caller and it will have a callee (it 221 function *const target = this->get_function(call->callee); 223 /* Create a link from the caller to the callee. 229 /* Create a link from the callee to the caller.
|
/external/chromium_org/ui/base/gtk/ |
g_object_destructor_filo.cc | 79 // problem: if callee wants to modify the caller list.
|
/external/chromium_org/v8/src/ |
code.h | 42 // callee.
|
/external/chromium_org/v8/test/webkit/ |
dfg-inline-function-dot-caller.js | 42 f=f.arguments.callee.caller;
|
/external/chromium_org/v8/test/webkit/fast/js/ |
Object-getOwnPropertyNames-expected.txt | 52 PASS getSortedOwnPropertyNames(argumentsObject()) is ['callee', 'length'] 53 PASS getSortedOwnPropertyNames(argumentsObject(1)) is ['0', 'callee', 'length'] 54 PASS getSortedOwnPropertyNames(argumentsObject(1,2,3)) is ['0', '1', '2', 'callee', 'length'] 55 PASS getSortedOwnPropertyNames((function(){arguments.__proto__=[1,2,3];return arguments;})()) is ['callee', 'length']
|
basic-strict-mode.js | 99 shouldThrow("(function (){'use strict'; arguments.callee; })()"); 105 shouldThrow("(function (arg){'use strict'; arguments.callee; })()"); 199 shouldBeUndefined("(function f(arg){'use strict'; return Object.getOwnPropertyDescriptor(arguments, 'callee').value; })()"); 202 shouldBeTrue("(function f(arg){'use strict'; var descriptor = Object.getOwnPropertyDescriptor(arguments, 'callee'); return descriptor.get === descriptor.set; })()");
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
VirtualCallChecker.cpp | 68 /// This method adds a CallExpr to the worklist and marks the callee as 94 // If the callee is PreVisited, walk its body. 105 // Otherwise, the callee is PostVisited. 155 // Get the callee.
|
/external/libvpx/libvpx/test/ |
register_state_check.h | 35 // destruction. These registers should be preserved by the callee on
|
/external/llvm/lib/Analysis/IPA/ |
CallGraphSCCPass.cpp | 253 Function *Callee = CS.getCalledFunction(); 254 if (Callee && Callee->isIntrinsic()) continue; 266 // Verify that the callee is right. 285 if (Function *Callee = CS.getCalledFunction()) { 286 CalleeNode = CG.getOrInsertFunction(Callee); 292 << Callee->getName() << "'\n"); 309 if (Function *Callee = CS.getCalledFunction()) { 310 CalleeNode = CG.getOrInsertFunction(Callee);
|
/external/llvm/lib/Target/MSP430/ |
MSP430MachineFunctionInfo.h | 26 /// CalleeSavedFrameSize - Size of the callee-saved register portion of the
|
/external/llvm/lib/Target/Mips/ |
Mips16ISelLowering.h | 47 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const;
|
MipsSEISelLowering.h | 57 CallLoweringInfo &CLI, SDValue Callee, SDValue Chain) const;
|
/external/llvm/lib/Target/SystemZ/ |
SystemZFrameLowering.h | 67 // Return the number of bytes in the callee-allocated part of the frame.
|
/external/llvm/lib/Target/X86/ |
X86CompilationCallback_Win64.asm | 40 ; JIT callee
|
/external/llvm/lib/Transforms/IPO/ |
PruneEH.cpp | 11 // call-graph, turning invoke instructions into calls, iff the callee cannot 118 } else if (Function *Callee = CI->getCalledFunction()) { 119 CallGraphNode *CalleeNode = CG[Callee]; 120 // If the callee is outside our current SCC then we may
|
/external/llvm/test/CodeGen/Thumb2/ |
2013-02-19-tail-call-register-hint.ll | 4 ; callee-saved register. Register hinting from t2LDRDri was getting this
|
/external/mesa3d/src/glsl/ |
ir_function_detect_recursion.cpp | 30 * is part of a cycle, it will have a caller and it will have a callee (it 221 function *const target = this->get_function(call->callee); 223 /* Create a link from the caller to the callee. 229 /* Create a link from the callee to the caller.
|
/external/v8/src/ |
code.h | 40 // callee.
|
/frameworks/av/include/camera/ |
IProCameraUser.h | 62 // Note that the callee gets a copy of the metadata.
|
/frameworks/av/media/mtp/ |
MtpDatabase.h | 56 // callee should delete[] the results from these
|
/frameworks/av/services/camera/libcameraservice/api_pro/ |
ProCamera2Client.h | 46 // Note that the callee gets a copy of the metadata.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/ |
SipPhone.java | 482 SipProfile callee = local 484 SipConnection c = new SipConnection(this, callee, 519 SipProfile callee = sipAudioCall.getPeerProfile(); local 520 SipConnection c = new SipConnection(this, callee); 806 public SipConnection(SipCall owner, SipProfile callee, 810 mPeer = callee; 814 public SipConnection(SipCall owner, SipProfile callee) { 815 this(owner, callee, getUriString(callee)); [all...] |