/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/protocols/ |
talkd.h | 44 * (to speak to the callee specified in the message). If the lookup 46 * to broadcast an announcement on the callee's login ports requesting 47 * contact. When the callee responds, the local server uses the 49 * address and the caller and callee client programs establish a 70 char r_name[NAME_SIZE];/* callee's name */ 72 char r_tty[TTY_SIZE];/* callee's tty name */ 91 #define LOOK_UP 1 /* check for invitation by callee */ 97 #define NOT_HERE 1 /* callee not logged in */ 100 #define PERMISSION_DENIED 4 /* callee's tty doesn't permit announce */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/protocols/ |
talkd.h | 44 * (to speak to the callee specified in the message). If the lookup 46 * to broadcast an announcement on the callee's login ports requesting 47 * contact. When the callee responds, the local server uses the 49 * address and the caller and callee client programs establish a 70 char r_name[NAME_SIZE];/* callee's name */ 72 char r_tty[TTY_SIZE];/* callee's tty name */ 91 #define LOOK_UP 1 /* check for invitation by callee */ 97 #define NOT_HERE 1 /* callee not logged in */ 100 #define PERMISSION_DENIED 4 /* callee's tty doesn't permit announce */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/protocols/ |
talkd.h | 44 * (to speak to the callee specified in the message). If the lookup 46 * to broadcast an announcement on the callee's login ports requesting 47 * contact. When the callee responds, the local server uses the 49 * address and the caller and callee client programs establish a 70 char r_name[NAME_SIZE];/* callee's name */ 72 char r_tty[TTY_SIZE];/* callee's tty name */ 91 #define LOOK_UP 1 /* check for invitation by callee */ 97 #define NOT_HERE 1 /* callee not logged in */ 100 #define PERMISSION_DENIED 4 /* callee's tty doesn't permit announce */
|
/external/chromium_org/third_party/angle/src/compiler/ |
DetectCallDepth.h | 46 // If a function is already in the callee list, this becomes a no-op. 47 void addCallee(FunctionNode* callee);
|
/external/chromium_org/v8/test/webkit/fast/js/ |
caller-property-expected.txt | 33 FAIL nonStrictCaller(strictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 35 FAIL strictCaller(strictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 37 FAIL nonStrictCaller(boundStrictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 39 FAIL strictCaller(boundStrictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 42 FAIL nonStrictGetter(strictAccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 43 FAIL nonStrictSetter(strictAccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 46 FAIL strictGetter(strictAccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them. 47 FAIL strictSetter(strictAccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
|
/external/llvm/test/Transforms/ArgumentPromotion/ |
control-flow2.ll | 5 define internal i32 @callee(i1 %C, i32* %P) { 19 %X = call i32 @callee( i1 false, i32* %A ) ; <i32> [#uses=1]
|
/external/llvm/test/Transforms/Inline/ |
dynamic_alloca_test.ll | 15 define internal void @callee(i32 %N) { 38 call void @callee(i32 %N)
|
/external/llvm/test/Transforms/InstCombine/ |
add3.ll | 17 tail call i32 @callee( i32 %5 ) 21 declare i32 @callee(i32)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
codegen.ml | 31 let callee = "unary" ^ (String.make 1 op) in 32 let callee = 33 match lookup_function callee the_module with 34 | Some callee -> callee 37 build_call callee [|operand|] "unop" builder 73 let callee = "binary" ^ (String.make 1 op) in 74 let callee = 75 match lookup_function callee the_module with 76 | Some callee -> calle [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
genk-timing.py | 48 def updateTotalCallCount(self, callee): 52 if callee in self.comprehensiveCalledFunctionTable: 53 for child in self.comprehensiveCalledFunctionTable[callee]: 56 def updateFunctionCallMap(self, caller, callee): 60 if not callee in self.calledFunctionTable[caller]: 61 self.calledFunctionTable[caller].append(callee) 64 self.comprehensiveCalledFunctionTable[caller].append(callee) 66 def updateCalledFunctionList(self, callee): 69 self.updateTotalCallCount(callee) 71 if callee in self.calledFunctions [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
genk-timing.py | 48 def updateTotalCallCount(self, callee): 52 if callee in self.comprehensiveCalledFunctionTable: 53 for child in self.comprehensiveCalledFunctionTable[callee]: 56 def updateFunctionCallMap(self, caller, callee): 60 if not callee in self.calledFunctionTable[caller]: 61 self.calledFunctionTable[caller].append(callee) 64 self.comprehensiveCalledFunctionTable[caller].append(callee) 66 def updateCalledFunctionList(self, callee): 69 self.updateTotalCallCount(callee) 71 if callee in self.calledFunctions [all...] |
/external/chromium_org/v8/test/webkit/ |
named-function-expression-expected.txt | 46 PASS: (function closure() { return closure == arguments.callee && !this.closure; })() should be true and is. 47 PASS: (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })() should be true and is. 50 PASS: (function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })() should be true and is. 56 PASS: (function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.closure; })() should be true and is. 58 PASS: (function closure() { eval("var closure"); delete closure; return closure == arguments.callee && !this.closure; })() should be true and is. 59 PASS: (function closure() { eval("function closure() { }"); delete closure; return closure == arguments.callee && !this.closure; })() should be true and is. 60 PASS: (function closure() { eval("closure = 1;"); return closure == arguments.callee && !this.closure; })() should be true and is.
|
/external/llvm/lib/Transforms/Utils/ |
SimplifyLibCalls.cpp | 53 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) 157 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) { 159 FunctionType *FT = Callee->getFunctionType(); 180 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) { 182 FunctionType *FT = Callee->getFunctionType(); 203 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) { 205 FunctionType *FT = Callee->getFunctionType(); 227 virtual Value *callOptimizer(Function *Callee, CallInst *CI, IRBuilder<> &B) { 229 StringRef Name = Callee->getName(); 230 FunctionType *FT = Callee->getFunctionType() [all...] |
/external/llvm/test/Transforms/ObjCARC/ |
invoke.ll | 8 declare void @callee() 39 ; ARCOpt should move the release before the callee calls. 44 ; CHECK: call void @callee() 48 ; CHECK: call void @callee() 61 call void @callee() 67 call void @callee() 119 call void @callee() 155 call void @callee() 214 call void @callee()
|
/external/chromium_org/third_party/mesa/ |
chromium.patch | 800 const char *callee = this->callee_name(); 801 ! if (strcmp(callee, "abs") == 0) { 803 ! } else if (strcmp(callee, "all") == 0) { 810 ! } else if (strcmp(callee, "any") == 0) { 817 ! } else if (strcmp(callee, "acos") == 0) { 821 ! } else if (strcmp(callee, "asin") == 0) { 825 ! } else if (strcmp(callee, "atan") == 0) { 832 const char *callee = this->callee_name(); 833 ! if (safe_strcmp(callee, "abs") == 0) { 835 ! } else if (safe_strcmp(callee, "all") == 0) [all...] |
/external/libffi/testsuite/libffi.call/ |
problem1.c | 16 my_ffi_struct callee(struct my_ffi_struct a1, struct my_ffi_struct a2) function 39 *(my_ffi_struct *)resp = callee(a1, a2); 85 ffi_call(&cif, FFI_FN(callee), &res, args);
|
/external/llvm/test/CodeGen/X86/ |
sse_partial_update.ll | 18 tail call void @callee(double %conv, double %conv3) nounwind 21 declare void @callee(double, double) 33 tail call void @callee(double %conv, double %conv3) nounwind
|
/external/llvm/test/Analysis/BasicAA/ |
args-rets-allocas-loads.ll | 3 declare void @callee(double* %callee_arg) 28 call void @callee(double* %escape_alloca_a0) 29 call void @callee(double* %escape_alloca_a1) 235 ; CHECK-NEXT: Both ModRef: Ptr: double* %arg_a0 <-> call void @callee(double* %escape_alloca_a0) 236 ; CHECK-NEXT: Both ModRef: Ptr: double* %arg_a1 <-> call void @callee(double* %escape_alloca_a0) 237 ; CHECK-NEXT: NoModRef: Ptr: double* %noalias_arg_a0 <-> call void @callee(double* %escape_alloca_a0) 238 ; CHECK-NEXT: NoModRef: Ptr: double* %noalias_arg_a1 <-> call void @callee(double* %escape_alloca_a0) 239 ; CHECK-NEXT: Both ModRef: Ptr: double** %indirect_a0 <-> call void @callee(double* %escape_alloca_a0) 240 ; CHECK-NEXT: Both ModRef: Ptr: double** %indirect_a1 <-> call void @callee(double* %escape_alloca_a0) 241 ; CHECK-NEXT: Both ModRef: Ptr: double* %escape_alloca_a0 <-> call void @callee(double* %escape_alloca_a0 [all...] |
/dalvik/vm/compiler/codegen/arm/armv5te/ |
CallingConvention.S | 18 * Save & restore for callee-save FP registers.
|
/dalvik/vm/compiler/codegen/arm/armv5te-vfp/ |
CallingConvention.S | 18 * Save & restore for callee-save FP registers.
|
/dalvik/vm/compiler/codegen/arm/armv7-a/ |
CallingConvention.S | 18 * Save & restore for callee-save FP registers.
|
/dalvik/vm/compiler/codegen/arm/armv7-a-neon/ |
CallingConvention.S | 18 * Save & restore for callee-save FP registers.
|
/external/chromium_org/ppapi/native_client/tests/nacl_browser/manifest_file/ |
pm_manifest_file_test.html | 34 this.removeEventListener('message', arguments.callee, false); 43 this.removeEventListener('message', arguments.callee, false); 52 this.removeEventListener('message', arguments.callee, false); 68 this.removeEventListener('message', arguments.callee, false);
|
/external/chromium_org/remoting/client/plugin/ |
pepper_plugin_thread_delegate.cc | 21 // which is defined as void(*)(void*, int). The callee will just
|
/external/clang/test/CodeGenObjCXX/ |
arc-references.mm | 7 void callee(); 16 callee(); 22 callee(); 45 callee();
|