| /external/clang/test/CodeGenCXX/ | 
| m64-ptr.cpp | 7 class StringRef { 12 void foo(StringRef X);
 13 void bar(StringRef &A) {
 
 | 
| /external/llvm/lib/DebugInfo/ | 
| DIContext.cpp | 17                                       StringRef infoSection, 18                                       StringRef abbrevSection,
 19                                       StringRef aRangeSection,
 20                                       StringRef lineSection,
 21                                       StringRef stringSection) {
 
 | 
| DWARFContext.h | 73   virtual StringRef getInfoSection() = 0; 74   virtual StringRef getAbbrevSection() = 0;
 75   virtual StringRef getARangeSection() = 0;
 76   virtual StringRef getLineSection() = 0;
 77   virtual StringRef getStringSection() = 0;
 90   StringRef InfoSection;
 91   StringRef AbbrevSection;
 92   StringRef ARangeSection;
 93   StringRef LineSection;
 94   StringRef StringSection
 [all...]
 | 
| /external/llvm/lib/Target/MSP430/MCTargetDesc/ | 
| MSP430MCAsmInfo.h | 20   class StringRef; 26     explicit MSP430MCAsmInfo(const Target &T, StringRef TT);
 
 | 
| /external/llvm/lib/Target/Mips/MCTargetDesc/ | 
| MipsMCAsmInfo.h | 20   class StringRef; 26     explicit MipsMCAsmInfo(const Target &T, StringRef TT);
 
 | 
| /external/llvm/lib/Target/PTX/MCTargetDesc/ | 
| PTXMCAsmInfo.h | 21   class StringRef; 26     explicit PTXMCAsmInfo(const Target &T, const StringRef &TT);
 
 | 
| /external/llvm/lib/Target/Sparc/MCTargetDesc/ | 
| SparcMCAsmInfo.h | 20   class StringRef; 26     explicit SparcELFMCAsmInfo(const Target &T, StringRef TT);
 
 | 
| /external/llvm/lib/Target/XCore/MCTargetDesc/ | 
| XCoreMCAsmInfo.h | 20   class StringRef; 26     explicit XCoreMCAsmInfo(const Target &T, 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/include/llvm/Support/ | 
| PathV2.h | 50   StringRef Path;      //< The entire path. 51   StringRef Component; //< The current component. Not necessarily in Path.
 55   friend const_iterator begin(StringRef path);
 56   friend const_iterator end(StringRef path);
 59   typedef const StringRef value_type;
 83 const_iterator begin(StringRef path);
 88 const_iterator end(StringRef path);
 93 inline reverse_iterator rbegin(StringRef path) {
 100 inline reverse_iterator rend(StringRef path) {
 178 const StringRef root_name(StringRef path)
 [all...]
 | 
| Regex.h | 22   class StringRef; 42     Regex(StringRef Regex, unsigned Flags = NoFlags);
 61     bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = 0);
 73     std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
 
 | 
| Locale.h | 4 #include "llvm/ADT/StringRef.h" 10 int columnWidth(StringRef s);
 
 | 
| /external/llvm/include/llvm/MC/ | 
| MCSubtargetInfo.h | 23 class StringRef; 42   void InitMCSubtargetInfo(StringRef TT, StringRef CPU, StringRef FS,
 50   StringRef getTargetTriple() const {
 62   uint64_t ReInitMCSubtargetInfo(StringRef CPU, StringRef FS);
 70   uint64_t ToggleFeature(StringRef FS);
 74   InstrItineraryData getInstrItineraryForCPU(StringRef CPU) const;
 
 | 
| /external/llvm/unittests/ADT/ | 
| StringRefTest.cpp | 1 //===- llvm/unittest/ADT/StringRefTest.cpp - StringRef unit tests ---------===// 11 #include "llvm/ADT/StringRef.h"
 19 std::ostream &operator<<(std::ostream &OS, const StringRef &S) {
 25                          const std::pair<StringRef, StringRef> &P) {
 34   EXPECT_EQ("", StringRef());
 35   EXPECT_EQ("hello", StringRef("hello"));
 36   EXPECT_EQ("hello", StringRef("hello world", 5));
 37   EXPECT_EQ("hello", StringRef(std::string("hello")));
 41   StringRef S("hello")
 [all...]
 | 
| /external/clang/include/clang/ARCMigrate/ | 
| FileRemapper.h | 17 #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);
 56   void remap(StringRef filePath, StringRef newPath)
 [all...]
 | 
| /external/llvm/include/llvm/DebugInfo/ | 
| DIContext.h | 18 #include "llvm/ADT/StringRef.h" 55                                     StringRef infoSection,
 56                                     StringRef abbrevSection,
 57                                     StringRef aRangeSection = StringRef(),
 58                                     StringRef lineSection = StringRef(),
 59                                     StringRef stringSection = StringRef());
 
 | 
| /frameworks/compile/slang/ | 
| slang_utils.h | 23   class StringRef; 33   static bool CreateDirectoryWithParents(llvm::StringRef Dir,
 
 | 
| /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 | 23   StringRef Name; 28   CheckerOptInfo(StringRef name, bool enable)
 31   StringRef getName() const { return Name; }
 
 | 
| /external/llvm/lib/Target/MSP430/ | 
| MSP430Subtarget.h | 24 class StringRef; 38   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
 
 | 
| /external/llvm/lib/Target/XCore/ | 
| XCoreSubtarget.h | 25 class StringRef; 39   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
 
 | 
| /external/llvm/lib/Target/Mips/ | 
| MipsTargetMachine.h | 40     MipsTargetMachine(const Target &T, StringRef TT, 41                       StringRef CPU, StringRef FS, const TargetOptions &Options,
 82   MipsebTargetMachine(const Target &T, StringRef TT,
 83                       StringRef CPU, StringRef FS, const TargetOptions &Options,
 93   MipselTargetMachine(const Target &T, StringRef TT,
 94                       StringRef CPU, StringRef FS, const TargetOptions &Options,
 104   Mips64ebTargetMachine(const Target &T, StringRef TT
 [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) {
 45                                         StringRef Name, ASTContext &Context) {
 51     StringRef BName = Context.BuiltinInfo.GetName(BId);
 52     if (BName.find(Name) != StringRef::npos)
 62   StringRef FName = II->getName();
 66   if (FName.startswith("__inline") && (FName.find(Name) != StringRef::npos))
 70       FName.find(Name) != StringRef::npos
 [all...]
 | 
| /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()) {}
 59   /// Assign from a StringRef
 60   void assign(StringRef RHS) {
 81   /// Append from a StringRef
 82   void append(StringRef RHS) {
 97   bool equals(StringRef RHS) const {
 102   bool equals_lower(StringRef RHS) const {
 108   int compare(StringRef RHS) const
 [all...]
 | 
| StringRef.h | 1 //===--- StringRef.h - Constant String Reference Wrapper --------*- C++ -*-===// 26   class StringRef;
 28   /// Helper functions for StringRef::getAsInteger.
 29   bool getAsUnsignedInteger(StringRef Str, unsigned Radix,
 32   bool getAsSignedInteger(StringRef Str, unsigned Radix, long long &Result);
 34   /// StringRef - Represent a constant reference to a string, i.e. a character
 39   /// lifetime extends past that of the StringRef. For this reason, it is not in
 40   /// general safe to store a StringRef.
 41   class StringRef {
 55     // Workaround PR5482: nearly all gcc 4.x miscompile StringRef and std::min(
 [all...]
 |