HomeSort by relevance Sort by last modified time
    Searched refs:Caller (Results 1 - 25 of 46) sorted by null

1 2

  /prebuilts/go/darwin-x86/misc/swig/callback/
callback.cc 11 std::string Caller::call() {
callback.h 11 class Caller {
15 Caller(): callback_(0) { }
16 ~Caller() { delCallback(); }
  /prebuilts/go/linux-x86/misc/swig/callback/
callback.cc 11 std::string Caller::call() {
callback.h 11 class Caller {
15 Caller(): callback_(0) { }
16 ~Caller() { delCallback(); }
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 48 STATISTIC(NumCallerCallersAnalyzed, "Number of caller-callers analyzed");
90 /// calling function, then bump up the caller's stack protection level.
91 static void AdjustCallerSSPLevel(Function *Caller, Function *Callee) {
99 AttributeSet OldSSPAttr = AttributeSet::get(Caller->getContext(),
104 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
105 Caller->addFnAttr(Attribute::SafeStack);
107 !Caller->hasFnAttribute(Attribute::SafeStack)) {
108 Caller->removeAttributes(AttributeSet::FunctionIndex, OldSSPAttr);
109 Caller->addFnAttr(Attribute::StackProtectReq);
111 !Caller->hasFnAttribute(Attribute::SafeStack) &
    [all...]
  /external/clang/lib/Sema/
SemaCUDA.cpp 92 Sema::IdentifyCUDAPreference(const FunctionDecl *Caller,
100 (Caller != nullptr) ? IdentifyCUDATarget(Caller) : Sema::CFT_Host;
151 bool Sema::CheckCUDATarget(const FunctionDecl *Caller,
156 return IdentifyCUDAPreference(Caller,Callee) == CFP_Never;
163 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller),
189 // If the caller is implicit then the check always passes.
190 if (Caller->isImplicit()) return false;
200 Diag(Caller->getLocation(),
202 << Callee->getNameAsString() << Caller->getNameAsString()
    [all...]
SemaOverload.cpp     [all...]
  /external/opencv3/modules/flann/test/
test_lshtable_badarg.cpp 52 struct Caller
69 Caller caller; local
71 caller.features = cvtest::randomMat(rng, featuresSize, CV_8UC1, 0, 255, false);
72 caller.table_number = 12;
73 caller.multi_probe_level = 2;
76 caller.key_size = 0;
77 errors += run_test_case(Error::StsBadArg, "key_size is zero", caller);
79 caller.key_size = static_cast<int>(sizeof(size_t) * CHAR_BIT);
80 errors += run_test_case(Error::StsBadArg, "key_size is too big", caller);
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 104 /// Forward the 'resume' instruction to the caller's landing pad block.
163 /// Forward the 'resume' instruction to the caller's landing pad block.
245 Function *Caller = FirstNewBlock->getParent();
254 for (Function::iterator I = FirstNewBlock->getIterator(), E = Caller->end();
271 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end();
301 Function *Caller = FirstNewBlock->getParent();
329 // This connects all the instructions which 'unwind to caller' to the invoke
331 for (Function::iterator BB = FirstNewBlock->getIterator(), E = Caller->end();
370 E = Caller->end();
388 /// aliasing scopes from a function inlined into a caller multiple times coul
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 68 CallSite Caller; // Holds the call that called subframes.
78 Caller(O.Caller), Values(std::move(O.Values)),
85 Caller = O.Caller;
Execution.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
LazyCallGraph.h 21 /// visited prior to a caller (given any SCC constraints), or vice versa. As
279 /// There must be an existing path from the caller to the callee. This
287 /// There must be an existing path from the callee to the caller in this
296 /// caller and callee are very nearby in the graph. See comments in the
314 /// Both the \a Caller and the \a Callee must be within this SCC. Removing
353 /// always visits SCCs for a callee prior to visiting the SCC for a caller
447 void insertEdge(Node &Caller, Function &Callee);
450 void insertEdge(Function &Caller, Function &Callee) {
451 return insertEdge(get(Caller), Callee);
455 void removeEdge(Node &Caller, Function &Callee)
    [all...]
TargetTransformInfoImpl.h 341 bool areInlineCompatible(const Function *Caller,
343 return (Caller->getFnAttribute("target-cpu") ==
345 (Caller->getFnAttribute("target-features") ==
TargetTransformInfo.h 276 /// transformation. The caller will initialize UP with the current
530 bool areInlineCompatible(const Function *Caller,
635 virtual bool areInlineCompatible(const Function *Caller,
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 32 ATTRIBUTE Caller-ID 31 string
dictionary.ascend 69 ATTRIBUTE Ascend-FT1-Caller 175 integer
179 VALUE Ascend-FT1-Caller FT1-No 0
180 VALUE Ascend-FT1-Caller FT1-Yes 1
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ScopeRequestIntegrationTest.java 118 Callable<SomeObject> callable = injector.getInstance(Caller.class);
129 callable = ServletScopes.scopeRequest(injector.getInstance(Caller.class), map);
161 private static class Caller implements Callable<SomeObject> {
  /frameworks/base/core/java/com/android/internal/os/
TransferPipe.java 51 interface Caller {
73 static void go(Caller caller, IInterface iface, FileDescriptor out,
75 go(caller, iface, out, prefix, args, DEFAULT_TIMEOUT);
78 static void go(Caller caller, IInterface iface, FileDescriptor out,
83 caller.go(iface, out, prefix, args);
91 caller.go(iface, tp.getWriteFd().getFileDescriptor(), prefix, args);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 689 // If the caller function is nounwind, mark the call as nounwind, even if the
    [all...]
  /external/llvm/lib/Target/X86/
X86TargetTransformInfo.h 95 bool areInlineCompatible(const Function *Caller,
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 553 : PathDiagnosticPiece(Call), Caller(callerD), Callee(nullptr),
556 PathDiagnosticCallPiece(PathPieces &oldPath, const Decl *caller)
557 : PathDiagnosticPiece(Call), Caller(caller), Callee(nullptr),
560 const Decl *Caller;
579 const Decl *getCaller() const { return Caller; }
610 const Decl *caller);
  /external/llvm/lib/Analysis/
InlineCost.cpp 58 // analysis in the caller function; we want the inline cost query to be
90 // allocas on the caller stack which could be simplified through SROA.
93 // The mapping of caller Alloca values to their accumulated cost savings. If
525 // caller. This will also trip if the callee function has a non-null
532 // Is this an alloca in the caller? This is distinct from the attribute case
    [all...]
TargetTransformInfo.cpp 339 bool TargetTransformInfo::areInlineCompatible(const Function *Caller,
341 return TTIImpl->areInlineCompatible(Caller, Callee);
  /external/v8/test/mjsunit/compiler/
inline-context-slots.js 33 // Caller/callee without a local context.
  /external/opencv3/modules/imgproc/src/
templmatch.cpp 549 typedef bool (*Caller)(InputArray _img, InputArray _templ, OutputArray _result);
551 static const Caller callers[] =
556 const Caller caller = callers[method]; local
558 return caller(_img, _templ, _result);
    [all...]

Completed in 529 milliseconds

1 2