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

1 2 3

  /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);
80 const CFGBlock *CB = BE->getBlock();
81 reachable.insert(CB->getBlockID());
98 const CFGBlock *CB = *I;
100 if (reachable.count(CB->getBlockID()))
104 if (isEmptyCFGBlock(CB))
108 if (!visited.count(CB->getBlockID())
    [all...]
AnalyzerStatsChecker.cpp 64 const CFGBlock *CB = BE->getBlock();
65 reachable.insert(CB);
76 const CFGBlock *CB = *I;
79 if (!reachable.count(CB)) {
IdempotentOperationChecker.cpp 91 const CFGBlock *CB,
540 const CFGBlock *CB,
559 if (destBlock == CB || CRA->isReachable(destBlock, CB))
568 if (destBlock == CB || CRA->isReachable(destBlock, CB))
573 // can eventually reach 'CB'.
600 VisitWL visitWL(AC->getCFGStmtMap(), CB, *CRA);
607 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 52 void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB);
  /external/eigen/blas/
lsame.f 1 LOGICAL FUNCTION LSAME(CA,CB)
8 CHARACTER CA,CB
14 * LSAME returns .TRUE. if CA is the same letter as CB regardless of
22 * CB (input) CHARACTER*1
23 * CA and CB specify the single characters to be compared.
36 LSAME = CA .EQ. CB
49 INTB = ICHAR(CB)
  /device/asus/flo/nfc/
libnfc-brcm-20791b05.conf 28 NFA_DM_START_UP_CFG={42:CB:01:01:A5:01:01:CA:14:00:00:00:00:0E:C0:D4:01:00:0F:00:00:00:00:C0:C6:2D:00:14:0A:B5:03:01:03:FF:80:01:01:C9:03:03:0F:AB:5B:01:02:B2:04:E8:03:00:00:CF:02:02:08:B1:06:00:20:00:00:00:12:C2:02:01:C8}
31 #NFA_DM_START_UP_CFG={48:CB:01:01:A5:01:01:CA:14:00:00:00:00:0E:C0:D4:01:00:0F:00:00:00:00:C0:C6:2D:00:14:0A:B5:03:01:03:FF:80:01:01:C9:03:03:0F:AB:5B:01:02:B2:04:E8:03:00:00:CF:02:02:08:B1:06:00:20:00:00:00:12:C2:08:01:08:00:04:80:C3:C9:01}
  /device/lge/mako/nfc/
libnfc-brcm.conf 80 NFA_DM_START_UP_CFG={2E:CB:01:01:A5:01:01:CA:14:00:00:00:00:06:E8:03:00:00:00:00:00:00:00:00:00:00:00:00:00:80:01:01:C2:08:61:40:82:04:40:4B:4C:00:B5:03:01:01:01}
  /device/samsung/manta/nfc/
libnfc-brcm.conf 80 NFA_DM_START_UP_CFG={2E:CB:01:01:A5:01:01:CA:14:00:00:00:00:06:E8:03:00:00:00:00:00:00:00:00:00:00:00:00:00:80:01:01:C2:08:61:40:82:04:40:4B:4C:00:B5:03:01:01:01}
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 25 void clang_getInclusions(CXTranslationUnit TU, CXInclusionVisitor CB,
67 CB(static_cast<CXFile>(
Indexing.cpp 530 IndexerCallbacks CB;
531 memset(&CB, 0, sizeof(CB));
532 unsigned ClientCBSize = index_callbacks_size < sizeof(CB)
533 ? index_callbacks_size : sizeof(CB);
534 memcpy(&CB, client_index_callbacks, ClientCBSize);
628 IndexAction.reset(new IndexingFrontendAction(client_data, CB,
767 IndexerCallbacks CB;
768 memset(&CB, 0, sizeof(CB));
    [all...]
IndexingContext.cpp 227 if (!CB.abortQuery)
229 return CB.abortQuery(ClientData, 0);
233 if (File && CB.enteredMainFile) {
235 CB.enteredMainFile(ClientData,
246 if (!CB.ppIncludedFile)
255 CXIdxClientFile idxFile = CB.ppIncludedFile(ClientData, &Info);
260 if (!CB.importedASTFile)
275 CXIdxClientASTFile astFile = CB.importedASTFile(ClientData, &Info);
280 if (!CB.importedASTFile)
290 CXIdxClientASTFile astFile = CB.importedASTFile(ClientData, &Info)
    [all...]
IndexingContext.h 283 IndexerCallbacks &CB;
342 : Ctx(0), ClientData(clientData), CB(indexCallbacks),
367 bool hasDiagnosticCallback() const { return CB.diagnostic; }
  /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);
292 void FindUnreachableCode(AnalysisDeclContext &AC, Callback &CB) {
324 numReachable += DS.scanBackwards(block, CB);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 311 template <typename CB> CB scanReachableSymbols(SVal val) const;
312 template <typename CB> CB scanReachableSymbols(const SVal *beg,
315 template <typename CB> CB
769 template <typename CB>
770 CB ProgramState::scanReachableSymbols(SVal val) const {
771 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 182 MarkLiveCallback CB(SymReaper);
183 ScanReachableSymbols RSScaner(ST, CB);
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 447 CapturesBefore CB(I, DT);
448 llvm::PointerMayBeCaptured(Object, &CB);
449 if (CB.Captured)
  /external/elfutils/libdwfl/
libdwflP.h 83 DWFL_ERROR (CB, N_("Callback returned failure")) \
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/test/Object/
coff-archive.test 13 CHECKIDX: ??_C@_0BC@IHENMCGI@b?5cannot?5be?5zero?$CB?$AA@ in Debug\mymath.obj
148 CHECKIDX: 00000000 R ??_C@_0BC@IHENMCGI@b?5cannot?5be?5zero?$CB?$AA@
  /external/qemu/distrib/sdl-1.2.15/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...]

Completed in 1192 milliseconds

1 2 3