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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/include/clang/Basic/
SanitizerBlacklist.h 20 #include "llvm/ADT/StringRef.h"
33 bool isBlacklistedGlobal(StringRef GlobalName,
34 StringRef Category = StringRef()) const;
35 bool isBlacklistedType(StringRef MangledTypeName,
36 StringRef Category = StringRef()) const;
37 bool isBlacklistedFunction(StringRef FunctionName) const;
38 bool isBlacklistedFile(StringRef FileName,
39 StringRef Category = StringRef()) const
    [all...]
  /external/clang/test/CodeGenCXX/
m64-ptr.cpp 7 class StringRef {
12 void foo(StringRef X);
13 void bar(StringRef &A) {
  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 19 class StringRef;
24 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
  /external/llvm/include/llvm/Support/
Path.h 51 : public std::iterator<std::input_iterator_tag, const StringRef> {
52 StringRef Path; ///< The entire path.
53 StringRef Component; ///< The current component. Not necessarily in Path.
57 friend const_iterator begin(StringRef path);
58 friend const_iterator end(StringRef path);
77 : public std::iterator<std::input_iterator_tag, const StringRef> {
78 StringRef Path; ///< The entire path.
79 StringRef Component; ///< The current component. Not necessarily in Path.
82 friend reverse_iterator rbegin(StringRef path);
83 friend reverse_iterator rend(StringRef path)
    [all...]
TargetParser.h 23 class StringRef;
104 StringRef getCanonicalArchName(StringRef Arch);
107 StringRef getFPUName(unsigned FPUKind);
118 StringRef getArchName(unsigned ArchKind);
120 StringRef getCPUAttr(unsigned ArchKind);
121 StringRef getSubArch(unsigned ArchKind);
122 StringRef getArchExtName(unsigned ArchExtKind);
123 const char *getArchExtFeature(StringRef ArchExt);
124 StringRef getHWDivName(unsigned HWDivKind)
    [all...]
Regex.h 25 class StringRef;
47 Regex(StringRef Regex, unsigned Flags = NoFlags);
77 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = nullptr);
89 std::string sub(StringRef Repl, StringRef String,
94 static bool isLiteralERE(StringRef Str);
97 static std::string escape(StringRef String);
Locale.h 4 #include "llvm/ADT/StringRef.h"
10 int columnWidth(StringRef s);
StringSaver.h 13 #include "llvm/ADT/StringRef.h"
26 const char *save(const char *S) { return save(StringRef(S)); }
27 const char *save(StringRef S);
28 const char *save(const Twine &S) { return save(StringRef(S.str())); }
29 const char *save(std::string &S) { return save(StringRef(S)); }
  /external/clang/include/clang/Index/
USRGeneration.h 14 #include "llvm/ADT/StringRef.h"
23 static inline StringRef getUSRSpacePrefix() {
32 void generateUSRForObjCClass(StringRef Cls, raw_ostream &OS);
35 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS);
40 void generateUSRForObjCIvar(StringRef Ivar, raw_ostream &OS);
43 void generateUSRForObjCMethod(StringRef Sel, bool IsInstanceMethod,
47 void generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS);
50 void generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS);
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFSection.h 14 #include "llvm/ADT/StringRef.h"
19 StringRef Data;
DWARFContext.h 190 virtual StringRef getAbbrevSection() = 0;
192 virtual StringRef getARangeSection() = 0;
193 virtual StringRef getDebugFrameSection() = 0;
195 virtual StringRef getStringSection() = 0;
196 virtual StringRef getRangeSection() = 0;
197 virtual StringRef getMacinfoSection() = 0;
198 virtual StringRef getPubNamesSection() = 0;
199 virtual StringRef getPubTypesSection() = 0;
200 virtual StringRef getGnuPubNamesSection() = 0;
201 virtual StringRef getGnuPubTypesSection() = 0
    [all...]
  /external/llvm/lib/Support/
StringExtras.cpp 21 StringRef::size_type llvm::StrInStrNoCase(StringRef s1, StringRef s2) {
24 return StringRef::npos;
28 return StringRef::npos;
37 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source,
38 StringRef Delimiters) {
40 StringRef::size_type Start = Source.find_first_not_of(Delimiters)
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreTargetStreamer.h 20 virtual void emitCCTopData(StringRef Name) = 0;
21 virtual void emitCCTopFunction(StringRef Name) = 0;
22 virtual void emitCCBottomData(StringRef Name) = 0;
23 virtual void emitCCBottomFunction(StringRef Name) = 0;
  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 14 // StringEntry<llvm::StringRef>
16 StringEntry<llvm::StringRef>::StringEntry() {
19 StringEntry<llvm::StringRef>::StringEntry(const StringEntry::key_type& pKey) {
22 StringEntry<llvm::StringRef>::StringEntry(
23 const StringEntry<llvm::StringRef>& pCopy) {
27 StringEntry<llvm::StringRef>::~StringEntry() {
32 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef pVal) {
35 m_Value = llvm::StringRef(data, pVal.size());
38 void StringEntry<llvm::StringRef>::setValue(const char* pVal)
    [all...]
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 19 #include "llvm/ADT/StringRef.h"
29 virtual bool equivalent(StringRef FileA, StringRef FileB) const = 0;
69 void insert(StringRef NewPath);
75 /// are no matches an empty \c StringRef is returned. If there are ambigious
76 /// matches, an empty \c StringRef is returned and a corresponding message
78 StringRef findEquivalent(StringRef FileName,
  /frameworks/compile/mclinker/include/mcld/Fragment/
RegionFragment.h 14 #include <llvm/ADT/StringRef.h>
23 explicit 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/lib/Basic/
SanitizerBlacklist.cpp 22 bool SanitizerBlacklist::isBlacklistedGlobal(StringRef GlobalName,
23 StringRef Category) const {
27 bool SanitizerBlacklist::isBlacklistedType(StringRef MangledTypeName,
28 StringRef Category) const {
32 bool SanitizerBlacklist::isBlacklistedFunction(StringRef FunctionName) const {
36 bool SanitizerBlacklist::isBlacklistedFile(StringRef FileName,
37 StringRef Category) const {
42 StringRef Category) const {
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserUtils.h 18 class StringRef;
26 bool parseAssignmentExpression(StringRef Name, bool allow_redef,
  /external/llvm/unittests/ExecutionEngine/Orc/
OrcTestCommon.cpp 20 ModuleBuilder::ModuleBuilder(LLVMContext &Context, StringRef Triple,
21 StringRef Name)
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.h 20 class StringRef;
24 explicit AMDGPUMCAsmInfo(const Target &T, StringRef &TT);
  /external/clang/include/clang/StaticAnalyzer/Core/
IssueHash.h 40 llvm::StringRef CheckerName,
41 llvm::StringRef BugType, const Decl *D,
47 llvm::StringRef CheckerName, llvm::StringRef BugType,
  /external/llvm/include/llvm/Transforms/IPO/
StripDeadPrototypes.h 28 static StringRef name() { return "StripDeadPrototypesPass"; }
  /external/llvm/include/llvm/Transforms/Scalar/
ADCE.h 33 static StringRef name() { return "ADCEPass"; }
LowerExpectIntrinsic.h 26 static StringRef name() { return "LowerExpectIntrinsicPass"; }
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCheckerImpl.h 29 bool check(StringRef CheckExpr) const;
30 bool checkAllRulesInBuffer(StringRef RulePrefix, MemoryBuffer *MemBuf) const;
45 bool isSymbolValid(StringRef Symbol) const;
46 uint64_t getSymbolLocalAddr(StringRef Symbol) const;
47 uint64_t getSymbolRemoteAddr(StringRef Symbol) const;
51 StringRef FileName,
52 StringRef SectionName) const;
54 std::pair<uint64_t, std::string> getSectionAddr(StringRef FileName,
55 StringRef SectionName,
58 std::pair<uint64_t, std::string> getStubAddrFor(StringRef FileName
    [all...]

Completed in 810 milliseconds

1 2 3 4 5 6 7 8 91011>>