/external/clang/test/CodeGenCXX/ |
H A D | 2003-11-27-MultipleInheritanceThunk.cpp | 5 struct CallSite { struct 8 CallSite(const CallSite &CS); 14 virtual int getModRefInfo(CallSite CS); 24 int getModRefInfo(CallSite CS) {
|
H A D | x86_32-arguments.cpp | 34 // CHECK: %struct.CallSite* byval align 4 %CS) 35 struct CallSite { struct 37 CallSite(unsigned XX) : Ptr(XX) {} function in struct:CallSite 42 virtual void getModRefInfo(CallSite CS) = 0; 50 void getModRefInfo(CallSite CS); 53 void BasicAliasAnalysis::getModRefInfo(CallSite CS) {
|
/external/clang/lib/StaticAnalyzer/Core/ |
H A D | BlockCounter.cpp | 25 const StackFrameContext *CallSite; member in class:__anon18254::CountKey 30 : CallSite(CS), BlockID(ID) {} 33 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID); 37 return std::tie(CallSite, BlockID) < std::tie(RHS.CallSite, RHS.BlockID); 41 ID.AddPointer(CallSite); 58 unsigned BlockCounter::getNumVisited(const StackFrameContext *CallSite, argument 61 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID)); 75 const StackFrameContext *CallSite, 74 IncrementCount(BlockCounter BC, const StackFrameContext *CallSite, unsigned BlockID) argument [all...] |
H A D | CallEvent.cpp | 929 const Stmt *CallSite = CalleeCtx->getCallSite(); local 931 if (CallSite) { 932 if (const CallExpr *CE = dyn_cast<CallExpr>(CallSite)) 935 switch (CallSite->getStmtClass()) { 943 return getCXXConstructorCall(cast<CXXConstructExpr>(CallSite), 947 return getCXXAllocatorCall(cast<CXXNewExpr>(CallSite), State, CallerCtx); 949 return getObjCMethodCall(cast<ObjCMessageExpr>(CallSite),
|
H A D | PathDiagnostic.cpp | 1128 const Stmt *CallSite = CExit.getCalleeContext()->getCallSite(); local 1129 const CallExpr *CE = dyn_cast_or_null<CallExpr>(CallSite);
|
H A D | BugReporter.cpp | 1283 const Stmt *CallSite = Callee->getCallSite(); local 1284 if (const CallExpr *CE = dyn_cast_or_null<CallExpr>(CallSite)) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ |
H A D | FunctionReceiverChecker.java | 30 private final Map<String, Set<CallSite>> callSitesByFunctionName = new HashMap<>(); 79 .add(new CallSite(hasReceiver, functionCall)); 225 private void processFunctionCallSites(FunctionRecord function, Set<CallSite> callSites) { 230 for (CallSite callSite : callSites) { 288 private static class CallSite { class in class:FunctionReceiverChecker 292 public CallSite(boolean hasReceiver, Node callNode) { method in class:FunctionReceiverChecker.CallSite
|
/external/llvm/include/llvm/IR/ |
H A D | CallSite.h | 1 //===- CallSite.h - Abstract Call & Invoke instrs ---------------*- C++ -*-===// 10 // This file defines the CallSite class, which is a handy wrapper for code that 22 // accessors of CallSite are employed. 305 /// hasArgument - Returns true if this CallSite passes the given Value* as an 331 class CallSite : public CallSiteBase<Function, Value, User, Instruction, class in namespace:llvm 336 CallSite() {} function in class:llvm::CallSite 337 CallSite(Base B) : Base(B) {} function in class:llvm::CallSite 338 CallSite(Value* V) : Base(V) {} function in class:llvm::CallSite 339 CallSite(CallInst *CI) : Base(CI) {} function in class:llvm::CallSite 340 CallSite(InvokeIns function in class:llvm::CallSite 341 CallSite(Instruction *II) : Base(II) {} function in class:llvm::CallSite [all...] |
/external/chromium_org/v8/src/ |
H A D | messages.js | 754 return new CallSite(recv, fun, pos, false).toString(); 760 var CallSiteReceiverKey = NEW_PRIVATE_OWN("CallSite#receiver"); 761 var CallSiteFunctionKey = NEW_PRIVATE_OWN("CallSite#function"); 762 var CallSitePositionKey = NEW_PRIVATE_OWN("CallSite#position"); 763 var CallSiteStrictModeKey = NEW_PRIVATE_OWN("CallSite#strict_mode"); 765 function CallSite(receiver, fun, pos, strict_mode) { function 972 SetUpLockedPrototype(CallSite, $Array("receiver", "fun", "pos"), $Array( 1054 frames.push(new CallSite(recv, fun, pos, (sloppy_frames < 0)));
|
/external/llvm/lib/CodeGen/ |
H A D | SjLjEHPrepare.cpp | 130 Value *CallSite = Builder.CreateGEP(FuncCtx, Idxs, "call_site"); local 135 Builder.CreateStore(CallSiteNoC, CallSite, true /*volatile*/);
|
/external/clang/include/clang/Analysis/ |
H A D | AnalysisContext.h | 267 const Stmt *CallSite; member in class:clang::StackFrameContext 279 : LocationContext(StackFrame, ctx, parent), CallSite(s), 285 const Stmt *getCallSite() const { return CallSite; }
|
/external/llvm/lib/ExecutionEngine/JIT/ |
H A D | JITEmitter.cpp | 133 void *CallSite) const { 138 CallSiteToFunctionMap.upper_bound(CallSite); 145 void AddCallSite(void *CallSite, Function *F) { argument 147 std::make_pair(CallSite, F)).second; 150 FunctionToCallSitesMap[F].insert(CallSite);
|
/external/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 314 llvm::CallInst *CallSite = Builder.CreateCall( local 321 CallSite
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/ |
H A D | jsdoc-validator.jar | META-INF/ META-INF/MANIFEST.MF org/ org/chromium/ org/chromium/devtools/ org/chromium/devtools/jsdoc/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | findbugs.jar | META-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ... |
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
H A D | compiler.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ... |
/external/chromium_org/third_party/closure_compiler/compiler/ |
H A D | compiler.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ... |