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

1 2

  /external/clang/test/Rewriter/
dllimport-typedef.c 6 typedef __declspec(dllimport) int CB(void);
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 44 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);
77 const CFGBlock *CB = BE->getBlock();
78 reachable.insert(CB->getBlockID());
90 const CFGBlock *CB = *I;
92 if (reachable.count(CB->getBlockID()))
96 if (isEmptyCFGBlock(CB))
100 if (!visited.count(CB->getBlockID())
    [all...]
AnalyzerStatsChecker.cpp 50 const CFGBlock *CB = BE->getBlock();
51 reachable.insert(CB);
63 const CFGBlock *CB = *I;
66 if (!reachable.count(CB)) {
IdempotentOperationChecker.cpp 89 const CFGBlock *CB,
535 const CFGBlock *CB,
554 if (destBlock == CB || CRA->isReachable(destBlock, CB))
563 if (destBlock == CB || CRA->isReachable(destBlock, CB))
568 // can eventually reach 'CB'.
598 VisitWL visitWL(AC->getCFGStmtMap(), CB, *CRA);
605 if (!CRA->isReachable(&AC->getCFG()->getEntry(), CB))
  /external/webkit/Source/WebCore/fileapi/
DOMFileSystem.h 67 template <typename CB, typename CBArg>
68 static void scheduleCallback(ScriptExecutionContext*, PassRefPtr<CB>, PassRefPtr<CBArg>);
70 template <typename CB, typename CBArg>
71 void scheduleCallback(PassRefPtr<CB> callback, PassRefPtr<CBArg> callbackArg)
80 template <typename CB, typename CBArg>
83 DispatchCallbackTask(PassRefPtr<CB> callback, PassRefPtr<CBArg> arg)
95 RefPtr<CB> m_callback;
100 template <typename CB, typename CBArg>
101 void DOMFileSystem::scheduleCallback(ScriptExecutionContext* scriptExecutionContext, PassRefPtr<CB> callback, PassRefPtr<CBArg> arg)
105 scriptExecutionContext->postTask(new DispatchCallbackTask<CB, CBArg>(callback, arg))
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ReachableCode.h 51 void FindUnreachableCode(AnalysisContext &AC, Callback &CB);
  /external/clang/tools/libclang/
IndexingContext.cpp 40 if (!CB.ppIncludedFile)
48 CB.ppIncludedFile(ClientData, &Info);
54 if (!CB.ppMacroDefined)
61 CXIdxMacro idxMacro = CB.ppMacroDefined(ClientData, &Info);
67 if (!CB.ppMacroUndefined)
73 CB.ppMacroUndefined(ClientData, &Info);
78 if (!CB.ppMacroExpanded)
84 CB.ppMacroExpanded(ClientData, &Info);
89 if (CB.startedTranslationUnit)
90 idxCont = CB.startedTranslationUnit(ClientData, 0)
    [all...]
CIndexInclusionStack.cpp 25 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB,
67 CB((CXFile) FI.getContentCache()->OrigEntry,
Indexing.cpp 277 IndexerCallbacks CB;
278 memset(&CB, 0, sizeof(CB));
279 unsigned ClientCBSize = index_callbacks_size < sizeof(CB)
280 ? index_callbacks_size : sizeof(CB);
281 memcpy(&CB, client_index_callbacks, ClientCBSize);
366 IndexAction.reset(new IndexingFrontendAction(client_data, CB,
IndexingContext.h 27 IndexerCallbacks &CB;
67 : Ctx(0), ClientData(clientData), CB(indexCallbacks),
  /external/clang/lib/Analysis/
ReachableCode.cpp 46 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);
290 void FindUnreachableCode(AnalysisContext &AC, Callback &CB) {
322 numReachable += DS.scanBackwards(block, CB);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 283 template <typename CB> CB scanReachableSymbols(SVal val) const;
284 template <typename CB> CB scanReachableSymbols(const SVal *beg,
287 template <typename CB> CB
762 template <typename CB>
763 CB ProgramState::scanReachableSymbols(SVal val) const {
764 CB cb(this)
    [all...]
  /external/chromium/net/tools/flip_server/
epoll_server.h 124 typedef EpollCallbackInterface CB;
162 // cb - an instance of a subclass of EpollCallbackInterface
166 virtual void RegisterFD(int fd, CB* cb, int event_mask);
175 // cb - an instance of a subclass of EpollCallbackInterface
176 virtual void RegisterFDForWrite(int fd, CB* cb);
185 // cb - an instance of a subclass of EpollCallbackInterface
186 virtual void RegisterFDForReadWrite(int fd, CB* cb);
546 mutable EpollCallbackInterface* cb; member in struct:net::EpollServer::CBAndEventMask
    [all...]
epoll_server.cc 116 CB* cb = cb_iter->cb; local
119 if (cb) {
120 cb->OnShutdown(this, fd);
190 void EpollServer::RegisterFD(int fd, CB* cb, int event_mask) {
191 CHECK(cb);
199 CB* other_cb = fd_i->cb;
280 CB* cb = fd_i->cb; local
477 AlarmCB* cb = iterator_token->second; local
758 AlarmCB* cb = i->second; local
    [all...]
  /external/llvm/include/llvm/ADT/
ImmutableMap.h 183 CBWrapperRef<Callback> CB(C);
184 Root->foreach(CB);
191 CBWrapper<Callback> CB;
192 Root->foreach(CB);
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 159 MarkLiveCallback CB(SymReaper);
160 ScanReachableSymbols RSScaner(ST, CB);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_yuv_sw.c 109 unsigned char *cb, unsigned char *out,
113 unsigned char *cb, unsigned char *out,
127 unsigned char *cb, unsigned char *out,
131 unsigned char *cb, unsigned char *out,
137 unsigned char *cb, unsigned char *out,
165 + colortab[ *cb + 2*256 ];
166 cb_b = 2*768+256 + colortab[ *cb + 3*256 ];
167 ++cr; ++cb;
207 unsigned char *cb, unsigned char *out,
237 + colortab[ *cb + 2*256 ]
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp     [all...]
  /external/icu4c/data/sprep/
rfc3491.txt 497 00CB; 00EB; MAP
623 01CB; 01CC; MAP
712 03AB; 03CB; MAP
719 03D4; 03CB; MAP
836 04CB; 04CC; MAP
1251 24CB; 24E5; MAP
1298 33CB; 0068 0070; MAP
    [all...]
rfc3530csci.txt 496 00CB; 00EB; MAP
622 01CB; 01CC; MAP
711 03AB; 03CB; MAP
718 03D4; 03CB; MAP
835 04CB; 04CC; MAP
1250 24CB; 24E5; MAP
1297 33CB; 0068 0070; MAP
    [all...]
rfc3722.txt 497 00CB; 00EB; MAP
623 01CB; 01CC; MAP
712 03AB; 03CB; MAP
719 03D4; 03CB; MAP
836 04CB; 04CC; MAP
1251 24CB; 24E5; MAP
1298 33CB; 0068 0070; MAP
    [all...]
rfc3920node.txt 497 00CB; 00EB; MAP
623 01CB; 01CC; MAP
712 03AB; 03CB; MAP
719 03D4; 03CB; MAP
836 04CB; 04CC; MAP
1251 24CB; 24E5; MAP
1298 33CB; 0068 0070; MAP
    [all...]
rfc4518ci.txt 464 00CB; 00EB; MAP
590 01CB; 01CC; MAP
679 03AB; 03CB; MAP
686 03D4; 03CB; MAP
803 04CB; 04CC; MAP
1218 24CB; 24E5; MAP
1265 33CB; 0068 0070; MAP
    [all...]
  /external/icu4c/test/testdata/
nfs4_cis_prep.txt 487 00CB; 00EB; MAP
613 01CB; 01CC; MAP
702 03AB; 03CB; MAP
709 03D4; 03CB; MAP
826 04CB; 04CC; MAP
1241 24CB; 24E5; MAP
1288 33CB; 0068 0070; MAP
    [all...]

Completed in 894 milliseconds

1 2