HomeSort by: relevance | last modified time | path
    Searched defs:Strings (Results 1 - 25 of 35) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/IR/
Assumptions.cpp 24 SmallVector<StringRef, 8> Strings;
25 A.getValueAsString().split(Strings, ",");
27 return llvm::any_of(Strings, [=](StringRef Assumption) {
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
filename.h 15 typedef Array<const char *> Strings;
33 static Strings *splitPath(const char *path);
40 static const char *searchPath(Strings *path, const char *name, bool cwd);
  /src/external/apache2/llvm/dist/clang/include/clang-c/
CXString.h 1 /*===-- clang-c/CXString.h - C Index strings --------------------*- C -*-===*\
10 |* This header provides the interface to C Index strings. *|
32 * The \c CXString type is used to return strings from the interface when
43 CXString *Strings;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeEnumInjectedSources.h 26 const PDBStringTable &Strings);
37 const PDBStringTable &Strings;
PDBStringTable.h 55 codeview::DebugStringTableSubsectionRef Strings;
PDBStringTableBuilder.h 55 void setStrings(const codeview::DebugStringTableSubsection &Strings);
64 codeview::DebugStringTableSubsection Strings;
PDBFile.h 142 std::unique_ptr<PDBStringTable> Strings;
PDBFileBuilder.h 95 PDBStringTableBuilder Strings;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
StringSaver.h 19 /// Saves strings in the provided stable storage and returns a
27 // All returned strings are null-terminated: *save(S).end() == 0.
34 /// Saves strings in the provided stable storage and returns a StringRef with a
43 StringSaver Strings;
47 UniqueStringSaver(BumpPtrAllocator &Alloc) : Strings(Alloc) {}
49 // All returned strings are null-terminated: *save(S).end() == 0.
SpecialCaseList.h 118 /// "literal" (i.e. no regex metacharacters) are stored in Strings. The
120 /// literal strings than Regex.
129 StringMap<unsigned> Strings;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
NonRelocatableStringpool.h 22 /// This class provides this ability by just associating offsets with strings.
54 /// Return the list of strings to be emitted. This does not contain the
55 /// strings which were added via internString only.
59 MapTy Strings;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
StringsAndChecksums.h 27 explicit StringsAndChecksumsRef(const DebugStringTableSubsectionRef &Strings);
30 StringsAndChecksumsRef(const DebugStringTableSubsectionRef &Strings,
33 void setStrings(const DebugStringTableSubsectionRef &Strings);
42 if (Strings && Checksums)
48 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) {
64 const DebugStringTableSubsectionRef &strings() const { return *Strings; } function in class:llvm::codeview::StringsAndChecksumsRef
67 bool hasStrings() const { return Strings != nullptr; }
77 const DebugStringTableSubsectionRef *Strings = nullptr;
89 void setStrings(const StringsPtr &SP) { Strings = SP;
92 const StringsPtr &strings() const { return Strings; } function in class:llvm::codeview::StringsAndChecksums
    [all...]
DebugCrossImpSubsection.h 72 DebugStringTableSubsection &Strings)
74 Strings(Strings) {}
86 DebugStringTableSubsection &Strings;
DebugChecksumsSubsection.h 77 explicit DebugChecksumsSubsection(DebugStringTableSubsection &Strings);
91 DebugStringTableSubsection &Strings;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
Execution.h 61 InMemoryToolResults() : Strings(Arena) {}
70 llvm::UniqueStringSaver Strings;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXLoadedDiagnostic.cpp 29 // Extend CXDiagnosticSetImpl which contains strings for diagnostics.
32 typedef llvm::DenseMap<unsigned, const char *> Strings;
41 Strings Categories;
42 Strings WarningFlags;
43 Strings FileNames;
323 // FIXME: Why do we care about long strings?
331 // FIXME: Why do we care about long strings?
341 // FIXME: Why do we care about long strings?
367 // FIXME: Why do we care about long strings?
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SymbolDumper.cpp 365 DebugStringTableSubsectionRef Strings = ObjDelegate->getStringTable();
366 auto ExpectedProgram = Strings.getString(DefRangeSubfield.Program);
384 DebugStringTableSubsectionRef Strings = ObjDelegate->getStringTable();
385 auto ExpectedProgram = Strings.getString(DefRange.Program);
641 ListScope S(W, "Strings");
642 for (StringRef Str : Annot.Strings)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeEnumInjectedSources.cpp 37 const PDBStringTable &Strings;
42 PDBFile &File, const PDBStringTable &Strings)
43 : Entry(Entry), Strings(Strings), File(File) {}
49 StringRef Ret = cantFail(Strings.getStringForID(Entry.FileNI),
55 StringRef Ret = cantFail(Strings.getStringForID(Entry.ObjNI),
61 StringRef Ret = cantFail(Strings.getStringForID(Entry.VFileNI),
71 cantFail(Strings.getStringForID(Entry.VFileNI),
97 const PDBStringTable &Strings)
98 : File(File), Stream(IJS), Strings(Strings), Cur(Stream.begin()) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
StringTableBuilder.cpp 140 std::vector<StringPair *> Strings;
141 Strings.reserve(StringIndexMap.size());
143 Strings.push_back(&P);
145 multikeySort(Strings, 0);
149 for (StringPair *P : Strings) {
  /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
ClangScanDeps.cpp 245 std::vector<llvm::StringRef> Strings;
247 Strings.push_back(I.getKey());
248 llvm::sort(Strings);
249 return llvm::json::Array(Strings);
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackDocument.h 193 /// it is a string, copy the string into the Document's strings list so we do
273 // Maps, arrays and strings used by nodes in the document. No attempt is made
277 std::vector<std::unique_ptr<char[]>> Strings;
420 /// Copy a string into the Document's strings list, and return the copy that
423 Strings.push_back(std::unique_ptr<char[]>(new char[S.size()]));
424 memcpy(&Strings.back()[0], S.data(), S.size());
425 return StringRef(&Strings.back()[0], S.size());
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeAnalyzer.cpp 360 STRINGIFY_CODE(METADATA, STRINGS)
519 "Decoding metadata strings blob needs two record entries.");
523 OS << " num-strings = " << NumStrings << " {\n";
527 StringRef Strings = Blob.drop_front(StringsOffset);
536 if (Strings.size() < Size)
540 OS.write_escaped(Strings.slice(0, Size), /*hex=*/true);
542 Strings = Strings.drop_front(Size);
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-printers.h 116 #include "absl/strings/string_view.h"
519 // types, strings, plain arrays, and pointers).
545 // Overloads for C strings.
572 // Overloads for wide C strings
873 typedef ::std::vector< ::std::string> Strings;
879 Strings*) {}
883 Strings* strings) {
885 strings);
888 strings->push_back(ss.str())
    [all...]
  /src/external/bsd/openldap/dist/tests/progs/
ldif-filter.c 36 typedef struct { String *val; size_t len, alloc; } Strings;
90 #define APPEND(s /* String or Strings */, data, count, isString) do { \
117 sort_strings( Strings *ss, size_t offset )
124 build_entry( Strings *ss, size_t n, unsigned flags, size_t new_len )
145 flush_entries( Strings *ss, const char *sep, unsigned flags )
167 Strings ss = { NULL, 0, 0 }; /* entries + attrs of partial entry */
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
InterpolatingCompilationDatabase.cpp 68 // The length of the prefix these two strings have in common.
331 : OriginalPaths(std::move(Files)), Strings(Arena) {
338 StringRef Path = Strings.save(StringRef(OriginalPaths[I]).lower());
499 StringSaver Strings;

Completed in 33 milliseconds

1 2