HomeSort by relevance Sort by last modified time
    Searched full:callee (Results 126 - 150 of 1069) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/chromeos/notifications/
balloon_view_host.h 32 // is owned and deleted by callee.
  /external/chromium_org/chrome/browser/chromeos/notifications/
balloon_view_host_chromeos.h 35 // is owned and deleted by callee.
  /external/chromium_org/content/test/data/media/
peerconnection-call.html 592 function negotiateBetween(caller, callee) {
598 connectOnIceCandidate(caller, callee);
602 onOfferCreated(offer, caller, callee);
606 function onOfferCreated(offer, caller, callee) {
610 receiveOffer(offer.sdp, caller, callee);
614 function receiveOffer(offerSdp, caller, callee) {
619 callee.setRemoteDescription(parsedOffer);
620 callee.createAnswer(function (answer) {
621 onAnswerCreated(answer, caller, callee);
623 expectEquals('have-remote-offer', callee.signalingState)
    [all...]
  /external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/
irt_manifest_file_test.html 34 this.removeEventListener('message', arguments.callee, false);
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 58 "argumentsObject()": "['callee', 'length']",
59 "argumentsObject(1)": "['0', 'callee', 'length']",
60 "argumentsObject(1,2,3)": "['0', '1', '2', 'callee', 'length']",
61 "(function(){arguments.__proto__=[1,2,3];return arguments;})()": "['callee', 'length']",
  /external/clang/test/CodeGen/
2008-01-25-ByValReadNone.c 12 // the callee might write to the byval parameter. The inliner
  /external/llvm/include/llvm/Analysis/
InlineCost.h 127 /// \brief Get an InlineCost with the callee explicitly specified.
129 /// pointer. This behaves exactly as the version with no explicit callee
134 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
137 bool isInlineViable(Function &Callee);
  /external/llvm/include/llvm/CodeGen/
RegisterClassInfo.h 11 // information about target register classes. Callee saved and reserved
55 // Callee saved registers of last MF. Assumed to be valid until the next
92 /// contains no reserved registers, and registers that alias callee saved
108 /// getLastCalleeSavedAlias - Returns the last callee saved register that
  /external/llvm/test/CodeGen/Thumb2/
2010-02-24-BigStack.ll 2 ; This test creates a big stack frame without spilling any callee-saved registers.
  /external/llvm/test/CodeGen/X86/
tailcall-ri64.ll 4 ; TAILJMPri64 should not receive "callee-saved" registers beyond epilogue.
unwind-init.ll 3 ; Check that all callee-saved registers are saved and restored in functions
  /dalvik/vm/compiler/
InlineTransformation.cpp 21 /* Convert the reg id from the callee to the original id passed by the caller */
237 /* Empty callee - do nothing */
285 /* Empty callee - do nothing by checking the clazz pointer */
366 /* Callee has been previously compiled */
370 /* Compile the callee first */
411 /* Callee has been previously compiled */
415 /* Compile the callee first */
  /external/llvm/include/llvm/Support/
CallSite.h 97 /// setCalledFunction - Set the callee to the specified value.
105 /// callee operand's Use.
191 /// \brief Return true if the call or the callee has the given attribute.
282 return 1; // Skip Callee
284 return 3; // Skip BB, BB, Callee
288 if (isCall()) // Skip Callee
290 else // Skip BB, BB, Callee
  /art/compiler/jni/quick/
calling_convention.h 160 // | { Callee saves } |
198 // | { Callee saves } | ([1])
207 // [1] We must save all callee saves here to enable any exception throws to restore
208 // callee saves for frames above this one.
230 // Callee save registers to spill prior to native code (which may clobber)
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 53 PeerConnectionTestWrapper* callee) {
55 callee, &PeerConnectionTestWrapper::AddIceCandidate);
56 callee->SignalOnIceCandidateReady.connect(
60 callee, &PeerConnectionTestWrapper::ReceiveOfferSdp);
61 callee->SignalOnSdpReady.connect(
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_function_inlining.cpp 110 foreach_iter(exec_list_iterator, iter_sig, this->callee->parameters)
119 exec_list_iterator sig_param_iter = this->callee->parameters.iterator();
164 foreach_iter(exec_list_iterator, iter, callee->body) {
176 sig_param_iter = this->callee->parameters.iterator();
199 sig_param_iter = this->callee->parameters.iterator();
  /external/llvm/test/Other/
lint.ll 17 ; CHECK: Caller and callee calling convention differ
73 ; CHECK: Call argument count mismatches callee argument count
75 ; CHECK: Call argument count mismatches callee argument count
77 ; CHECK: Call argument type mismatches callee parameter type
179 ; CHECK: Call return type mismatches callee return type
  /external/mesa3d/src/glsl/
opt_function_inlining.cpp 110 foreach_iter(exec_list_iterator, iter_sig, this->callee->parameters)
119 exec_list_iterator sig_param_iter = this->callee->parameters.iterator();
164 foreach_iter(exec_list_iterator, iter, callee->body) {
176 sig_param_iter = this->callee->parameters.iterator();
199 sig_param_iter = this->callee->parameters.iterator();
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 83 Function *Callee = CS.getCalledFunction();
84 if (!Callee || !Callee->isDeclaration())
86 return Callee;
98 Function *Callee = getCalledFunction(V, LookThroughBitCast);
99 if (!Callee)
103 StringRef FnName = Callee->getName();
126 FunctionType *FTy = Callee->getFunctionType();
312 Function *Callee = CI->getCalledFunction();
313 if (Callee == 0 || !Callee->isDeclaration()
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 206 // callee isn't.
862 static IntrinsicInst *FindInitTrampoline(Value *Callee) {
863 Callee = Callee->stripPointerCasts();
864 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMachineFunctionInfo.h 66 /// GPRCS1Offset, GPRCS2Offset, DPRCSOffset - Starting offset of callee saved
69 /// GPR callee-saved (1) : r4, r5, r6, r7, lr
71 /// GPR callee-saved (2) : r8, r10, r11
73 /// DPR callee-saved : d8 - d15
81 /// GPRCS1Size, GPRCS2Size, DPRCSSize - Sizes of callee saved register spills
93 /// NumAlignedDPRCS2Regs - The number of callee-saved DPRs that are saved in
  /bionic/libc/arch-mips/include/machine/
regdef.h 75 #define s0 $16 /* saved across subroutine calls (callee saved) */
89 #define s8 $30 /* one more callee saved */
  /development/ndk/platforms/android-9/arch-mips/include/machine/
regdef.h 75 #define s0 $16 /* saved across subroutine calls (callee saved) */
89 #define s8 $30 /* one more callee saved */
  /external/chromium_org/chrome/browser/extensions/api/idle/
idle_manager.h 91 // Override default event class. Callee assumes ownership. Used for testing.
94 // Override default idle time calculations. Callee assumes ownership. Used
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 24 const Expr *Callee = CE->getCallee();
25 SVal L = State->getSVal(Callee, Pred->getLocationContext());

Completed in 1256 milliseconds

1 2 3 4 56 7 8 91011>>