HomeSort by relevance Sort by last modified time
    Searched defs:Handlers (Results 1 - 25 of 48) sorted by null

1 2

  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
CVTypeVisitor.h 43 TinyPtrVector<TypeServerHandler *> Handlers;
  /frameworks/av/media/libaudiohal/include/media/audiohal/hidl/
HalDeathHandler.h 44 // Used both for (un)registering handlers, and for passing to
50 typedef std::unordered_map<void*, AtExitHandler> Handlers;
57 Handlers mHandlers;
  /external/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Lex/
Pragma.h 90 /// Handlers - This is a map of the handlers in this namespace with their name
93 llvm::StringMap<PragmaHandler*> Handlers;
114 return Handlers.empty();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
signalmodule.c 87 } Handlers[NSIG];
172 Handlers[sig_num].tripped = 1;
218 /* Issue #10311: asynchronously executing signal handlers should not
320 old_handler = Handlers[sig_num].func;
321 Handlers[sig_num].tripped = 0;
323 Handlers[sig_num].func = obj;
354 old_handler = Handlers[sig_num].func;
536 "This module provides mechanisms to use signal handlers in Python.\n\
608 Handlers[0].tripped = 0;
612 Handlers[i].tripped = 0;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
signalmodule.c 87 } Handlers[NSIG];
172 Handlers[sig_num].tripped = 1;
218 /* Issue #10311: asynchronously executing signal handlers should not
320 old_handler = Handlers[sig_num].func;
321 Handlers[sig_num].tripped = 0;
323 Handlers[sig_num].func = obj;
351 old_handler = Handlers[sig_num].func;
528 "This module provides mechanisms to use signal handlers in Python.\n\
600 Handlers[0].tripped = 0;
604 Handlers[i].tripped = 0;
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 188 SmallVector<CatchHandler, 8> Handlers;
196 Handlers.push_back(CatchHandler());
197 CatchHandler &Handler = Handlers.back();
212 EHCatchScope *Catch = CGF.EHStack.pushCatch(Handlers.size());
213 for (unsigned I = 0, E = Handlers.size(); I != E; ++I)
214 Catch->setHandler(I, Handlers[I].TypeInfo, Handlers[I].Block);
227 // Emit the handlers.
228 for (unsigned I = 0, E = Handlers.size(); I != E; ++I) {
229 CatchHandler &Handler = Handlers[I]
    [all...]
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 137 SmallVector<HandlerInfo, 1> Handlers;
  /external/python/cpython2/Modules/
signalmodule.c 87 } Handlers[NSIG];
172 Handlers[sig_num].tripped = 1;
218 /* Issue #10311: asynchronously executing signal handlers should not
320 old_handler = Handlers[sig_num].func;
321 Handlers[sig_num].tripped = 0;
323 Handlers[sig_num].func = obj;
354 old_handler = Handlers[sig_num].func;
536 "This module provides mechanisms to use signal handlers in Python.\n\
608 Handlers[0].tripped = 0;
612 Handlers[i].tripped = 0
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 147 SmallVector<HandlerInfo, 1> Handlers;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
AsmPrinter.h 147 SmallVector<HandlerInfo, 1> Handlers;

Completed in 1168 milliseconds

1 2