Searched defs:CB (Results 1 - 14 of 14) sorted by relevance

/external/clang/test/Rewriter/
H A Ddllimport-typedef.c6 typedef __declspec(dllimport) int CB(void); typedef
/external/clang/tools/libclang/
H A DCIndexInclusionStack.cpp25 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB, argument
67 CB((CXFile) FI.getContentCache()->OrigEntry,
H A DIndexing.cpp270 IndexerCallbacks CB;
271 memset(&CB, 0, sizeof(CB));
272 unsigned ClientCBSize = index_callbacks_size < sizeof(CB)
273 ? index_callbacks_size : sizeof(CB);
274 memcpy(&CB, client_index_callbacks, ClientCBSize);
365 IndexAction.reset(new IndexingFrontendAction(client_data, CB,
518 IndexerCallbacks CB; local
519 memset(&CB, 0, sizeof(CB));
[all...]
H A DIndexingContext.h293 IndexerCallbacks &CB; member in class:clang::cxindex::IndexingContext
352 : Ctx(0), ClientData(clientData), CB(indexCallbacks),
375 bool hasDiagnosticCallback() const { return CB.diagnostic; }
/external/clang/lib/StaticAnalyzer/Checkers/
H A DAnalyzerStatsChecker.cpp64 const CFGBlock *CB = BE->getBlock(); local
65 reachable.insert(CB);
76 const CFGBlock *CB = *I; local
79 if (!reachable.count(CB)) {
H A DUnreachableCodeChecker.cpp44 static inline const Stmt *getUnreachableStmt(const CFGBlock *CB);
45 static void FindUnreachableEntryPoints(const CFGBlock *CB,
48 static bool isInvalidPath(const CFGBlock *CB, const ParentMap &PM);
49 static inline bool isEmptyCFGBlock(const CFGBlock *CB);
80 const CFGBlock *CB = BE->getBlock(); local
81 reachable.insert(CB->getBlockID());
98 const CFGBlock *CB = *I; local
100 if (reachable.count(CB->getBlockID()))
104 if (isEmptyCFGBlock(CB))
108 if (!visited.count(CB
171 FindUnreachableEntryPoints(const CFGBlock *CB, CFGBlocksSet &reachable, CFGBlocksSet &visited) argument
190 getUnreachableStmt(const CFGBlock *CB) argument
206 isInvalidPath(const CFGBlock *CB, const ParentMap &PM) argument
239 isEmptyCFGBlock(const CFGBlock *CB) argument
[all...]
H A DIdempotentOperationChecker.cpp90 const CFGBlock *CB,
539 const CFGBlock *CB,
558 if (destBlock == CB || CRA->isReachable(destBlock, CB))
567 if (destBlock == CB || CRA->isReachable(destBlock, CB))
572 // can eventually reach 'CB'.
602 VisitWL visitWL(AC->getCFGStmtMap(), CB, *CRA);
609 if (!CRA->isReachable(&AC->getCFG()->getEntry(), CB))
538 pathWasCompletelyAnalyzed(AnalysisDeclContext *AC, const CFGBlock *CB, const CoreEngine &CE) argument
/external/clang/lib/Analysis/
H A DReachableCode.cpp46 clang::reachable_code::Callback &CB);
53 clang::reachable_code::Callback &CB);
120 clang::reachable_code::Callback &CB) {
153 reportDeadCode(S, CB);
173 reportDeadCode(I->second, CB);
247 clang::reachable_code::Callback &CB) {
250 CB.HandleUnreachable(Loc, R1, R2);
292 void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB) { argument
324 numReachable += DS.scanBackwards(block, CB);
119 scanBackwards(const clang::CFGBlock *Start, clang::reachable_code::Callback &CB) argument
246 reportDeadCode(const Stmt *S, clang::reachable_code::Callback &CB) argument
/external/llvm/include/llvm/ADT/
H A DImmutableMap.h183 CBWrapperRef<Callback> CB(C);
184 Root->foreach(CB);
191 CBWrapper<Callback> CB; local
192 Root->foreach(CB);
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuv_sw.c938 int CR, CB; local
1009 CB = CR = (i-128);
1012 Cb_g_tab[i] = (int) (-(0.114/0.331) * CB);
1013 Cb_b_tab[i] = (int) ( (0.587/0.331) * CB);
/external/chromium/net/tools/flip_server/
H A Depoll_server.h124 typedef EpollCallbackInterface CB; typedef in class:net::EpollServer
166 virtual void RegisterFD(int fd, CB* cb, int event_mask);
176 virtual void RegisterFDForWrite(int fd, CB* cb);
186 virtual void RegisterFDForReadWrite(int fd, CB* cb);
196 virtual void RegisterFDForRead(int fd, CB* cb);
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp139 ConstantInt *CB = dyn_cast<ConstantInt>(B); local
142 if (!CB || !CC) {
146 const APInt &BVal = CB->getValue();
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1362 ConstantInt *CB = dyn_cast<ConstantInt>(PN->getIncomingValue(i)); local
1363 if (CB == 0 || !CB->getType()->isIntegerTy(1)) continue;
1368 BasicBlock *RealDest = BI->getSuccessor(!CB->getZExtValue());
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1372 CaseBlock CB(Condition, BOp->getOperand(0),
1374 SwitchCases.push_back(CB);
1380 CaseBlock CB(ISD::SETEQ, Cond, ConstantInt::getTrue(*DAG.getContext()),
1382 SwitchCases.push_back(CB);
1554 CaseBlock CB(ISD::SETEQ, CondVal, ConstantInt::getTrue(*DAG.getContext()),
1559 visitSwitchCase(CB, BrMBB);
1564 void SelectionDAGBuilder::visitSwitchCase(CaseBlock &CB, argument
1567 SDValue CondLHS = getValue(CB.CmpLHS);
1571 if (CB.CmpMHS == NULL) {
1574 if (CB
[all...]

Completed in 371 milliseconds