HomeSort by relevance Sort by last modified time
    Searched refs:CB (Results 26 - 50 of 96) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemCallbacks.cpp 91 template <typename CB, typename CBArg>
92 void FileSystemCallbacksBase::handleEventOrScheduleCallback(RawPtr<CB> callback, RawPtr<CBArg> arg)
98 template <typename CB, typename CBArg>
99 void FileSystemCallbacksBase::handleEventOrScheduleCallback(RawPtr<CB> callback, CBArg* arg)
111 template <typename CB, typename CBArg>
112 void FileSystemCallbacksBase::handleEventOrScheduleCallback(RawPtr<CB> callback, PassRefPtrWillBeRawPtr<CBArg> arg)
124 template <typename CB>
125 void FileSystemCallbacksBase::handleEventOrScheduleCallback(RawPtr<CB> callback)
  /hardware/qcom/gps/msm8960/utils/
log_util.h 165 #define CALLBACK_LOG_CALLFLOW(CB, SPEC, VAL) LOG_I(TO_AFW, CB, SPEC, VAL)
  /hardware/qcom/gps/utils/
log_util.h 175 #define CALLBACK_LOG_CALLFLOW(CB, SPEC, VAL) LOG_I(TO_AFW, CB, SPEC, VAL)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
accelerometer.css 96 background-color: #7992CB;
103 background-color: #7992CB;
  /external/clang/lib/Analysis/
ReachableCode.cpp 363 clang::reachable_code::Callback &CB);
371 clang::reachable_code::Callback &CB);
443 clang::reachable_code::Callback &CB) {
476 reportDeadCode(Block, S, CB);
496 reportDeadCode(Block, I->second, CB);
571 clang::reachable_code::Callback &CB) {
601 CB.HandleUnreachable(reachable_code::UK_Loop_Increment,
621 CB.HandleUnreachable(UK, Loc, SilenceableCondVal, R1, R2);
638 Callback &CB) {
672 numReachable += DS.scanBackwards(block, CB);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState.h 312 template <typename CB> CB scanReachableSymbols(SVal val) const;
313 template <typename CB> CB scanReachableSymbols(const SVal *beg,
316 template <typename CB> CB
772 template <typename CB>
773 CB ProgramState::scanReachableSymbols(SVal val) const {
774 CB cb(this)
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 510 IndexerCallbacks CB;
511 memset(&CB, 0, sizeof(CB));
512 unsigned ClientCBSize = index_callbacks_size < sizeof(CB)
513 ? index_callbacks_size : sizeof(CB);
514 memcpy(&CB, client_index_callbacks, ClientCBSize);
617 IndexAction.reset(new IndexingFrontendAction(client_data, CB,
769 IndexerCallbacks CB;
770 memset(&CB, 0, sizeof(CB));
    [all...]
IndexingContext.cpp 228 if (!CB.abortQuery)
230 return CB.abortQuery(ClientData, nullptr);
234 if (File && CB.enteredMainFile) {
236 CB.enteredMainFile(ClientData,
248 if (!CB.ppIncludedFile)
257 CXIdxClientFile idxFile = CB.ppIncludedFile(ClientData, &Info);
262 if (!CB.importedASTFile)
276 CXIdxClientASTFile astFile = CB.importedASTFile(ClientData, &Info);
281 if (!CB.importedASTFile)
291 CXIdxClientASTFile astFile = CB.importedASTFile(ClientData, &Info)
    [all...]
IndexingContext.h 276 IndexerCallbacks &CB;
336 : Ctx(nullptr), ClientData(clientData), CB(indexCallbacks),
361 bool hasDiagnosticCallback() const { return CB.diagnostic; }
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 231 typedef void (*CB)(uptr p);
232 CB cb[2][5] = { local
254 CB call = cb[is_write][size_log];
  /external/chromium_org/net/tools/epoll_server/
epoll_server.h 123 typedef EpollCallbackInterface CB;
161 // cb - an instance of a subclass of EpollCallbackInterface
165 virtual void RegisterFD(int fd, CB* cb, int event_mask);
174 // cb - an instance of a subclass of EpollCallbackInterface
175 virtual void RegisterFDForWrite(int fd, CB* cb);
184 // cb - an instance of a subclass of EpollCallbackInterface
185 virtual void RegisterFDForReadWrite(int fd, CB* cb);
541 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
747 AlarmCB* cb = i->second; local
    [all...]
  /external/compiler-rt/test/tsan/
deadlock_detector_stress_test.cc 543 struct CB {
548 // Thread function with CB.
550 CB *cb = (CB*)param; local
551 (cb->lt->*cb->f)();
559 CB cb[kNumThreads] = {{f1, this}, {f2, this}, {f3, this}, {f4, this}}; local
560 for (int i = 0; i < kNumThreads && cb[i].f; i++
    [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 155 MarkLiveCallback CB(SymReaper);
156 ScanReachableSymbols RSScaner(ST, CB);
  /external/ltrace/
dict.h 205 * while CB is only called for items present in the table, and is
211 enum callback_status (*cb)(void *, void *, void *), void *data);
213 #define DICT_EACH(DICTP, KEY_TYPE, VALUE_TYPE, START_AFTER, CB, DATA) \
218 /* Check that CB is typed properly. */ \
220 void *) = CB; \
  /external/llvm/lib/Analysis/
AliasAnalysis.cpp 452 CapturesBefore CB(I, DT);
453 llvm::PointerMayBeCaptured(Object, &CB);
454 if (CB.Captured)
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 273 for (BlockT *CB : depth_first(EntryBB))
275 assert(CB != OutsideLoopPreds[i] &&
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adogpool.h     [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...]
  /external/chromium_org/third_party/icu/source/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...]

Completed in 864 milliseconds

12 3 4