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

1 2

  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 47 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
49 if (!SL.isFile() || Invalid)
52 const SrcMgr::FileInfo &FI = SL.getFile();
  /external/icu4c/test/intltest/
itspoof.cpp 140 const uint32_t SL = USPOOF_SINGLE_SCRIPT_CONFUSABLE;
146 CHECK_SKELETON(SL, " A 1ong \\u02b9identifier' that will overflow implementation stack buffers, forcing heap allocations."
160 CHECK_SKELETON(SL, "\\uFC5F", " \\u064d\\u0651");
162 CHECK_SKELETON(SL, "nochange", "nochange");
169 CHECK_SKELETON(SL, "\\u059c", "\\u0301");
170 CHECK_SKELETON(SL, "\\u2A74", "\\u003A\\u003A\\u003D");
171 CHECK_SKELETON(SL, "\\u247E", "\\u0028\\u006C\\u006C\\u0029"); // "(ll)"
172 CHECK_SKELETON(SL, "\\uFDFB", "\\u062C\\u0644\\u0020\\u062C\\u0644\\u0627\\u0644\\u0647");
174 // This mapping exists in the ML and MA tables, does not exist in SL, SA
176 CHECK_SKELETON(SL, "\\u0C83", "\\u0C83")
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UnreachableCodeChecker.cpp 133 SourceLocation SL;
137 SL = DL.asLocation();
138 if (SR.isInvalid() || !SL.isValid())
146 if (SM.isInSystemHeader(SL) || SM.isInExternCSystemHeader(SL))
  /external/strace/strace/linux/x86_64/
gentab.pl 46 open(SL, ">syscallnum.h") || die "cannot create syscallnum.h\n";
74 print SL "#define SYS_$name $num\n"
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 706 const llvm::StructLayout *SL = mpTD->getStructLayout
712 reinterpret_cast<uint8_t*>(Addr) + SL->getElementOffset(i));
948 llvm::TargetJITInfo::StubLayout SL = mpTJI->getStubLayout();
949 startGVStub(F, SL.Size, SL.Alignment);
963 (unsigned char const *)Stub, SL.Size);
    [all...]
  /external/llvm/lib/Target/
TargetData.cpp 357 StructLayout *&SL = (*STM)[Ty];
358 if (SL) return SL;
366 // Set SL before calling StructLayout's ctor. The ctor could cause other
368 SL = L;
  /external/clang/lib/Lex/
PTHLexer.cpp 517 llvm::OwningPtr<PTHStringIdLookup> SL(PTHStringIdLookup::Create(StringIdTable,
551 SL.take(), NumIds, spellingBase,
577 PTHStringIdLookup& SL = *((PTHStringIdLookup*)StringIdLookup);
580 PTHStringIdLookup::iterator I = SL.find(std::make_pair(Name.data(),
582 if (I == SL.end()) // No identifier found?
  /external/grub/stage2/
iso9660.h 168 struct SL {
175 } sl; member in union:rock_ridge::__anon5965
  /external/llvm/lib/CodeGen/
Analysis.cpp 81 const StructLayout *SL = TLI.getTargetData()->getStructLayout(STy);
87 StartingOffset + SL->getElementOffset(EI - EB));
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 547 TargetJITInfo::StubLayout SL = TheJIT->getJITInfo().getStubLayout();
548 JE.startGVStub(F, SL.Size, SL.Alignment);
610 TargetJITInfo::StubLayout SL = TheJIT->getJITInfo().getStubLayout();
611 JE.startGVStub(0, SL.Size, SL.Alignment);
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 277 SourceLocation SL = SM.getExpansionLoc(D->getLocation());
278 if (!Opts.AnalyzeAll && !SM.isFromMainFile(SL))
  /external/llvm/lib/Transforms/Utils/
AddrModeMatcher.cpp 226 const StructLayout *SL = TD->getStructLayout(STy);
229 ConstantOffset += SL->getElementOffset(Idx);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 277 const StructLayout *SL = TD.getStructLayout(CS->getType());
278 unsigned Index = SL->getElementContainingOffset(ByteOffset);
279 uint64_t CurEltOffset = SL->getElementOffset(Index);
299 uint64_t NextEltOffset = SL->getElementOffset(Index);
689 const StructLayout &SL = *TD->getStructLayout(STy);
690 unsigned ElIdx = SL.getElementContainingOffset(Offset.getZExtValue());
693 Offset -= APInt(BitWidth, SL.getElementOffset(ElIdx));
    [all...]