HomeSort by: relevance | last modified time | path
    Searched defs:Family (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
AVR.cpp 34 StringRef Family;
289 return Optional<StringRef>(MCU.Family);
327 // We do not have an entry for this CPU in the family
394 // If the family name is known, we can link with the device-specific libgcc.
411 // Specify the family name as the emulation mode to use.
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Host.cpp 589 static void detectX86FamilyModel(unsigned EAX, unsigned *Family,
591 *Family = (EAX >> 8) & 0xf; // Bits 8 - 11
593 if (*Family == 6 || *Family == 0xf) {
594 if (*Family == 0xf)
595 // Examine extended family ID if family ID is F.
596 *Family += (EAX >> 20) & 0xff; // Bits 20 - 27
597 // Examine extended model ID if family ID is 6 or F.
603 getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 597 ObjCMethodFamily Family = MD->getMethodFamily();
598 if (OMF_init == Family || OMF_copy == Family || OMF_mutableCopy == Family)
MallocChecker.cpp 112 /// Print expected name of an allocator based on the deallocator's family
114 static void printExpectedAllocName(raw_ostream &os, AllocationFamily Family);
117 /// family.
118 static void printExpectedDeallocName(raw_ostream &os, AllocationFamily Family);
146 AllocationFamily Family;
148 RefState(Kind k, const Stmt *s, AllocationFamily family)
149 : S(s), K(k), Family(family) {
150 assert(family != AF_None);
159 AllocationFamily getAllocationFamily() const { return Family; }
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclObjC.cpp 34 /// family, is a valid member of that family.
174 if (ObjCMethodFamily Family = Overridden->getMethodFamily())
178 << Family;
226 ObjCMethodFamily family = method->getMethodFamily(); local
227 switch (family) {
478 ObjCMethodFamily Family = MDecl->getMethodFamily();
479 if (Family == OMF_dealloc) {
484 } else if (Family == OMF_finalize) {
2495 // to fall out of the family
2502 ObjCMethodFamily family = declFamily; local
    [all...]

Completed in 32 milliseconds