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

12 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Support/
Locale.h 4 #include "llvm/ADT/StringRef.h"
10 int columnWidth(StringRef s);
MemoryBuffer.h 54 StringRef getBuffer() const {
55 return StringRef(BufferStart, getBufferSize());
99 static MemoryBuffer *getMemBuffer(StringRef InputData,
100 StringRef BufferName = "",
106 static MemoryBuffer *getMemBufferCopy(StringRef InputData,
107 StringRef BufferName = "");
113 static MemoryBuffer *getNewMemBuffer(size_t Size, StringRef BufferName = "");
120 StringRef BufferName = "");
128 getFileOrSTDIN(StringRef Filename, int64_t FileSize = -1);
  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 17 #include "llvm/ADT/StringRef.h"
25 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
  /external/llvm/tools/opt/
Passes.h 19 #include "llvm/ADT/StringRef.h"
52 bool parsePassPipeline(ModulePassManager &MPM, StringRef PipelineText,
  /external/clang/include/clang/Analysis/DomainSpecific/
CocoaConventions.h 18 #include "llvm/ADT/StringRef.h"
27 bool isRefType(QualType RetTy, StringRef Prefix,
28 StringRef Name = StringRef());
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerOptInfo.h 14 #include "llvm/ADT/StringRef.h"
24 StringRef Name;
29 CheckerOptInfo(StringRef name, bool enable)
32 StringRef getName() const { return Name; }
  /external/llvm/include/llvm/MC/MCAnalysis/
MCModuleYAML.h 19 #include "llvm/ADT/StringRef.h"
30 StringRef mcmodule2yaml(raw_ostream &OS, const MCModule &MCM,
35 StringRef yaml2mcmodule(std::unique_ptr<MCModule> &MCM, StringRef YamlContent,
  /external/llvm/lib/DebugInfo/
DWARFTypeUnit.h 22 DWARFTypeUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef RS,
23 StringRef SS, StringRef SOS, StringRef AOS,
DWARFContext.h 68 StringRef Data;
178 virtual StringRef getAbbrevSection() = 0;
181 virtual StringRef getARangeSection() = 0;
182 virtual StringRef getDebugFrameSection() = 0;
185 virtual StringRef getStringSection() = 0;
186 virtual StringRef getRangeSection() = 0;
187 virtual StringRef getPubNamesSection() = 0;
188 virtual StringRef getPubTypesSection() = 0;
189 virtual StringRef getGnuPubNamesSection() = 0;
190 virtual StringRef getGnuPubTypesSection() = 0
    [all...]
  /frameworks/compile/mclinker/include/mcld/Fragment/
RegionFragment.h 13 #include <llvm/ADT/StringRef.h>
23 RegionFragment(llvm::StringRef pRegion, SectionData* pSD = NULL);
27 const llvm::StringRef getRegion() const { return m_Region; }
28 llvm::StringRef getRegion() { return m_Region; }
39 llvm::StringRef m_Region;
  /external/clang/include/clang/ARCMigrate/
FileRemapper.h 16 #include "llvm/ADT/StringRef.h"
45 bool initFromDisk(StringRef outputDir, DiagnosticsEngine &Diag,
47 bool initFromFile(StringRef filePath, DiagnosticsEngine &Diag,
49 bool flushToDisk(StringRef outputDir, DiagnosticsEngine &Diag);
50 bool flushToFile(StringRef outputPath, DiagnosticsEngine &Diag);
53 StringRef outputDir = StringRef());
55 void remap(StringRef filePath, llvm::MemoryBuffer *memBuf);
59 void clear(StringRef outputDir = StringRef());
    [all...]
ARCMT.h 44 StringRef plistOut = StringRef());
68 StringRef outputDir,
70 StringRef plistOut);
77 StringRef outputDir,
86 ArrayRef<StringRef> remapFiles,
103 StringRef outputDir = StringRef());
112 virtual void insert(SourceLocation loc, StringRef text) { }
  /external/llvm/unittests/ADT/
StringRefTest.cpp 1 //===- llvm/unittest/ADT/StringRefTest.cpp - StringRef unit tests ---------===//
10 #include "llvm/ADT/StringRef.h"
22 std::ostream &operator<<(std::ostream &OS, const StringRef &S) {
28 const std::pair<StringRef, StringRef> &P) {
37 EXPECT_EQ("", StringRef());
38 EXPECT_EQ("hello", StringRef("hello"));
39 EXPECT_EQ("hello", StringRef("hello world", 5));
40 EXPECT_EQ("hello", StringRef(std::string("hello")));
44 StringRef S("hello")
    [all...]
  /external/llvm/include/llvm/ExecutionEngine/
RuntimeDyldChecker.h 75 bool check(StringRef CheckExpr) const;
80 bool checkAllRulesInBuffer(StringRef RulePrefix, MemoryBuffer *MemBuf) const;
84 bool checkSymbolIsValidForLoad(StringRef Symbol) const;
85 uint64_t getSymbolAddress(StringRef Symbol) const;
86 uint64_t readMemoryAtSymbol(StringRef Symbol, int64_t Offset,
88 StringRef getSubsectionStartingAt(StringRef Name) const;
  /external/llvm/include/llvm/ADT/
SmallString.h 18 #include "llvm/ADT/StringRef.h"
30 /// Initialize from a StringRef.
31 SmallString(StringRef S) : SmallVector<char, InternalLen>(S.begin(), S.end()) {}
56 /// Assign from a StringRef.
57 void assign(StringRef RHS) {
83 /// Append from a StringRef.
84 void append(StringRef RHS) {
99 bool equals(StringRef RHS) const {
104 bool equals_lower(StringRef RHS) const {
110 int compare(StringRef RHS) const
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafety.h 24 #include "llvm/ADT/StringRef.h"
71 typedef StringRef Name;
78 virtual void handleInvalidLockExp(StringRef Kind, SourceLocation Loc) {}
83 /// \param LockName -- A StringRef name for the lock expression, to be printed
86 virtual void handleUnmatchedUnlock(StringRef Kind, Name LockName,
92 /// \param LockName -- A StringRef name for the lock expression, to be printed
98 virtual void handleIncorrectUnlockKind(StringRef Kind, Name LockName,
104 /// \param LockName -- A StringRef name for the lock expression, to be printed
107 virtual void handleDoubleLock(StringRef Kind, Name LockName,
116 /// \param LockName -- A StringRef name for the lock expression, to be printe
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 29 StringRef CheckerContext::getCalleeName(const FunctionDecl *FunDecl) const {
31 return StringRef();
34 return StringRef();
40 StringRef Name) {
48 StringRef BName = FD->getASTContext().BuiltinInfo.GetName(BId);
49 if (BName.find(Name) != StringRef::npos)
77 StringRef FName = II->getName();
81 if (FName.startswith("__inline") && (FName.find(Name) != StringRef::npos))
85 FName.find(Name) != StringRef::npos)
91 StringRef CheckerContext::getMacroNameOrSpelling(SourceLocation &Loc)
    [all...]
  /external/llvm/include/llvm/IR/
DIBuilder.h 19 #include "llvm/ADT/StringRef.h"
32 class StringRef;
80 StringRef Name, DIType Ty, Value *Val,
121 DICompileUnit createCompileUnit(unsigned Lang, StringRef File,
122 StringRef Dir, StringRef Producer,
123 bool isOptimized, StringRef Flags,
125 StringRef SplitName = StringRef(),
131 DIFile createFile(StringRef Filename, StringRef Directory)
    [all...]
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 27 bool equivalent(StringRef FileA, StringRef FileB) const override {
52 void insert(StringRef NewPath, unsigned ConsumedLength = 0) {
67 StringRef Element(llvm::sys::path::filename(
68 StringRef(Path).drop_back(ConsumedLength)));
71 StringRef Element(llvm::sys::path::filename(
72 StringRef(NewPath).drop_back(ConsumedLength)));
97 StringRef findEquivalent(const PathComparator& Comparator,
98 StringRef FileName,
102 if (Comparator.equivalent(StringRef(Path), FileName)
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 43 #include "llvm/ADT/StringRef.h"
75 virtual VariantValue getNamedValue(StringRef Name);
86 /// \param BindID The ID to use to bind the matcher, or a null \c StringRef
96 StringRef BindID,
107 lookupMatcherCtor(StringRef MatcherName) = 0;
117 lookupMatcherCtor(StringRef MatcherName) override;
121 StringRef BindID,
139 parseMatcherExpression(StringRef MatcherCode, Diagnostics *Error);
152 parseMatcherExpression(StringRef MatcherCode, Sema *S, Diagnostics *Error);
159 static bool parseExpression(StringRef Code, VariantValue *Value
    [all...]
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 11 #include "llvm/ADT/StringRef.h"
30 template<bool (DarwinAsmParser::*HandlerMethod)(StringRef, SMLoc)>
31 void addDirectiveHandler(StringRef Directive) {
172 bool parseDirectiveDesc(StringRef, SMLoc);
173 bool parseDirectiveIndirectSymbol(StringRef, SMLoc);
174 bool parseDirectiveDumpOrLoad(StringRef, SMLoc);
175 bool parseDirectiveLsym(StringRef, SMLoc);
176 bool parseDirectiveLinkerOption(StringRef, SMLoc);
177 bool parseDirectiveSection(StringRef, SMLoc);
178 bool parseDirectivePushSection(StringRef, SMLoc)
    [all...]
  /external/clang/include/clang/Frontend/
CommandLineSourceLoc.h 33 static ParsedSourceLocation FromString(StringRef Str) {
35 std::pair<StringRef, StringRef> ColSplit = Str.rsplit(':');
36 std::pair<StringRef, StringRef> LineSplit =
65 inline bool parse(Option &O, StringRef ArgName, StringRef ArgValue,
71 parse(Option &O, StringRef ArgName, StringRef ArgValue,
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 29 AArch64TargetMachine(const Target &T, StringRef TT, StringRef CPU,
30 StringRef FS, const TargetOptions &Options,
68 AArch64leTargetMachine(const Target &T, StringRef TT, StringRef CPU,
69 StringRef FS, const TargetOptions &Options,
79 AArch64beTargetMachine(const Target &T, StringRef TT, StringRef CPU,
80 StringRef FS, const TargetOptions &Options,
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.h 27 class StringRef;
46 const MCRegisterInfo &MRI, StringRef TT,
47 StringRef CPU);
49 const MCRegisterInfo &MRI, StringRef TT,
50 StringRef CPU);
52 const MCRegisterInfo &MRI, StringRef TT,
53 StringRef CPU);
55 const MCRegisterInfo &MRI, StringRef TT,
56 StringRef CPU);
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.h 26 SparcTargetMachine(const Target &T, StringRef TT,
27 StringRef CPU, StringRef FS, const TargetOptions &Options,
62 SparcV8TargetMachine(const Target &T, StringRef TT,
63 StringRef CPU, StringRef FS,
74 SparcV9TargetMachine(const Target &T, StringRef TT,
75 StringRef CPU, StringRef FS,

Completed in 575 milliseconds

12 3 4 5 6 7 8 91011>>