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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
m64-ptr.cpp 7 class StringRef {
12 void foo(StringRef X);
13 void bar(StringRef &A) {
  /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/lib/Target/MSP430/MCTargetDesc/
MSP430MCAsmInfo.h 20 class StringRef;
25 explicit MSP430MCAsmInfo(StringRef TT);
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCAsmInfo.h 20 class StringRef;
25 explicit MipsMCAsmInfo(StringRef TT);
  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXMCAsmInfo.h 21 class StringRef;
26 explicit NVPTXMCAsmInfo(const StringRef &TT);
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCAsmInfo.h 20 class StringRef;
26 explicit XCoreMCAsmInfo(StringRef TT);
  /external/llvm/lib/Support/
StringExtras.cpp 22 StringRef::size_type llvm::StrInStrNoCase(StringRef s1, StringRef s2) {
25 return StringRef::npos;
29 return StringRef::npos;
38 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source,
39 StringRef Delimiters) {
41 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;
  /external/llvm/include/llvm/Support/
SpecialCaseList.h 56 class StringRef;
63 static SpecialCaseList *create(const StringRef Path, std::string &Error);
69 static SpecialCaseList *createOrDie(const StringRef Path);
78 bool inSection(const StringRef Section, const StringRef Query,
79 const StringRef Category = StringRef()) const;
Path.h 51 StringRef Path; ///< The entire path.
52 StringRef Component; ///< The current component. Not necessarily in Path.
56 friend const_iterator begin(StringRef path);
57 friend const_iterator end(StringRef path);
60 typedef const StringRef value_type;
84 const_iterator begin(StringRef path);
89 const_iterator end(StringRef path);
94 inline reverse_iterator rbegin(StringRef path) {
101 inline reverse_iterator rend(StringRef path) {
197 const StringRef root_name(StringRef path)
    [all...]
Compression.h 23 class StringRef;
45 Status compress(StringRef InputBuffer, SmallVectorImpl<char> &CompressedBuffer,
48 Status uncompress(StringRef InputBuffer,
52 uint32_t crc32(StringRef Buffer);
  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 14 // StringEntry<llvm::StringRef>
16 StringEntry<llvm::StringRef>::StringEntry()
20 StringEntry<llvm::StringRef>::StringEntry(const StringEntry::key_type& pKey)
24 StringEntry<llvm::StringRef>::StringEntry(const StringEntry<llvm::StringRef>& pCopy)
29 StringEntry<llvm::StringRef>::~StringEntry()
35 void StringEntry<llvm::StringRef>::setValue(llvm::StringRef& pVal)
39 m_Value = llvm::StringRef(data, pVal.size());
42 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,
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 19 DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef RS,
20 StringRef SS, StringRef SOS, StringRef AOS,
  /external/llvm/include/llvm/MC/
SubtargetFeature.h 27 class StringRef;
41 bool operator<(StringRef S) const {
42 return StringRef(Key) < S;
56 bool operator<(StringRef S) const {
57 return StringRef(Key) < S;
75 explicit SubtargetFeatures(const StringRef Initial = "");
81 void AddFeature(const StringRef String);
85 uint64_t ToggleFeature(uint64_t Bits, const StringRef String,
89 uint64_t getFeatureBits(const StringRef CPU,
MCSectionMachO.h 17 #include "llvm/ADT/StringRef.h"
38 MCSectionMachO(StringRef Segment, StringRef Section,
43 StringRef getSegmentName() const {
46 return StringRef(SegmentName, 16);
47 return StringRef(SegmentName);
49 StringRef getSectionName() const {
52 return StringRef(SectionName, 16);
53 return StringRef(SectionName);
57 return StringRef(getSegmentName().str() + getSectionName().str() + "_begin")
    [all...]
StringTableBuilder.h 25 /// \brief Add a string to the builder. Returns a StringRef to the internal
27 StringRef add(StringRef s) {
38 StringRef data() {
45 size_t getOffset(StringRef s) {
  /external/llvm/include/llvm/ADT/
StringRef.h 1 //===--- StringRef.h - Constant String Reference Wrapper --------*- C++ -*-===//
25 class StringRef;
27 /// Helper functions for StringRef::getAsInteger.
28 bool getAsUnsignedInteger(StringRef Str, unsigned Radix,
31 bool getAsSignedInteger(StringRef Str, unsigned Radix, long long &Result);
33 /// StringRef - Represent a constant reference to a string, i.e. a character
38 /// lifetime extends past that of the StringRef. For this reason, it is not in
39 /// general safe to store a StringRef.
40 class StringRef {
54 // Workaround PR5482: nearly all gcc 4.x miscompile StringRef and std::min(
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.h 20 class StringRef;
24 explicit AMDGPUMCAsmInfo(const Target &T, StringRef &TT);
  /external/llvm/include/llvm/Transforms/
Instrumentation.h 17 #include "llvm/ADT/StringRef.h"
77 ModulePass *createDataFlowSanitizerPass(StringRef ABIListFile = StringRef(),
82 inline ModulePass *createDataFlowSanitizerPassForJIT(StringRef ABIListFile =
83 StringRef()) {
110 StringRef Directory = StringRef(),
111 StringRef Filename = StringRef());
  /external/llvm/lib/Target/R600/MCTargetDesc/
AMDGPUMCAsmInfo.h 20 class StringRef;
24 explicit AMDGPUMCAsmInfo(StringRef &TT);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCAsmInfo.h 17 class StringRef;
21 explicit SystemZMCAsmInfo(StringRef TT);
  /external/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/
AMDGPUMCAsmInfo.h 20 class StringRef;
24 explicit AMDGPUMCAsmInfo(const Target &T, StringRef &TT);
  /frameworks/compile/slang/
slang_utils.h 23 class StringRef;
33 static bool CreateDirectoryWithParents(llvm::StringRef Dir,
  /external/clang/lib/CodeGen/
SanitizerBlacklist.h 18 #include "llvm/ADT/StringRef.h"
37 const StringRef Category = StringRef()) const;
40 const StringRef Category = StringRef()) const;

Completed in 547 milliseconds

1 2 3 4 5 6 7 8 91011>>