HomeSort by relevance Sort by last modified time
    Searched refs:Begin (Results 126 - 150 of 1289) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
StringExtras.h 46 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
213 inline std::string join_impl(IteratorT Begin, IteratorT End,
216 if (Begin == End)
219 S += (*Begin);
220 while (++Begin != End) {
222 S += (*Begin);
228 inline std::string join_impl(IteratorT Begin, IteratorT End,
231 if (Begin == End)
234 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
235 for (IteratorT I = Begin; I != End; ++I
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
StringExtras.h 46 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
213 inline std::string join_impl(IteratorT Begin, IteratorT End,
216 if (Begin == End)
219 S += (*Begin);
220 while (++Begin != End) {
222 S += (*Begin);
228 inline std::string join_impl(IteratorT Begin, IteratorT End,
231 if (Begin == End)
234 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
235 for (IteratorT I = Begin; I != End; ++I
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
StringExtras.h 48 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
256 inline std::string join_impl(IteratorT Begin, IteratorT End,
259 if (Begin == End)
262 S += (*Begin);
263 while (++Begin != End) {
265 S += (*Begin);
271 inline std::string join_impl(IteratorT Begin, IteratorT End,
274 if (Begin == End)
277 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
278 for (IteratorT I = Begin; I != End; ++I
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
StringExtras.h 48 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
256 inline std::string join_impl(IteratorT Begin, IteratorT End,
259 if (Begin == End)
262 S += (*Begin);
263 while (++Begin != End) {
265 S += (*Begin);
271 inline std::string join_impl(IteratorT Begin, IteratorT End,
274 if (Begin == End)
277 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
278 for (IteratorT I = Begin; I != End; ++I
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
StringExtras.h 48 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
256 inline std::string join_impl(IteratorT Begin, IteratorT End,
259 if (Begin == End)
262 S += (*Begin);
263 while (++Begin != End) {
265 S += (*Begin);
271 inline std::string join_impl(IteratorT Begin, IteratorT End,
274 if (Begin == End)
277 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
278 for (IteratorT I = Begin; I != End; ++I
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
StringExtras.h 48 return StringRef(reinterpret_cast<const char *>(Input.begin()), Input.size());
256 inline std::string join_impl(IteratorT Begin, IteratorT End,
259 if (Begin == End)
262 S += (*Begin);
263 while (++Begin != End) {
265 S += (*Begin);
271 inline std::string join_impl(IteratorT Begin, IteratorT End,
274 if (Begin == End)
277 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
278 for (IteratorT I = Begin; I != End; ++I
    [all...]
  /art/runtime/gc/collector/
immune_spaces.cc 46 uintptr_t space_begin = reinterpret_cast<uintptr_t>(space->Begin());
58 intervals.push_back(Interval(reinterpret_cast<uintptr_t>(image_oat_file->Begin()),
65 std::sort(intervals.begin(), intervals.end());
66 // Intervals are already sorted by begin, if a new interval begins at the end of the current
72 const uintptr_t begin = std::get<0>(interval); local
75 VLOG(collector) << "Interval " << reinterpret_cast<const void*>(begin) << "-"
77 DCHECK_GE(end, begin);
78 DCHECK_GE(begin, cur_end);
81 if (begin != cur_end) {
86 cur_begin = begin;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCSection.h 59 MCSymbol *Begin;
95 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
106 MCSymbol *getBeginSymbol() { return Begin; }
111 assert(!Begin);
112 Begin = Sym;
156 iterator begin() { return Fragments.begin(); } function in class:llvm::MCSection
157 const_iterator begin() const { return Fragments.begin(); } function in class:llvm::MCSection
  /external/clang/lib/Sema/
SemaFixItUtils.cpp 60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin();
99 S, Begin, VK_LValue);
110 CharSourceRange::getTokenRange(Begin, Begin)));
113 Hints.push_back(FixItHint::CreateInsertion(Begin, "*("));
116 Hints.push_back(FixItHint::CreateInsertion(Begin, "*"));
137 S, Begin, VK_RValue);
144 CharSourceRange::getTokenRange(Begin, Begin)));
147 Hints.push_back(FixItHint::CreateInsertion(Begin, "&("))
    [all...]
  /external/llvm/lib/CodeGen/
SlotIndexes.cpp 98 std::sort(idx2MBBMap.begin(), idx2MBBMap.end(), Idx2MBBCompare());
113 for (IndexList::iterator I = indexList.begin(), E = indexList.end();
142 MachineBasicBlock::iterator Begin,
148 while (Begin != MBB->begin() && !hasIndex(*Begin))
149 --Begin;
153 bool includeStart = (Begin == MBB->begin());
158 startIdx = getInstructionIndex(*Begin);
    [all...]
  /external/llvm/lib/MC/
StringTableBuilder.cpp 49 static void multikey_qsort(StringPair **Begin, StringPair **End, int Pos) {
51 if (End - Begin <= 1)
54 // Partition items. Items in [Begin, P) are greater than the pivot,
56 int Pivot = charTailAt(*Begin, Pos);
57 StringPair **P = Begin;
59 for (StringPair **R = Begin + 1; R < Q;) {
69 multikey_qsort(Begin, P, Pos);
73 Begin = P;
101 std::sort(Strings.begin(), Strings.end(),
  /external/llvm/unittests/Support/
YAMLParserTest.cpp 162 yaml::Document &Doc = *Stream.begin();
165 cast<yaml::BlockScalarNode>(Map->begin()->getValue())->getValue();
193 = dyn_cast<yaml::SequenceNode>(Stream.begin()->getRoot());
196 static_cast<yaml::Node*>(ParsedSequence->begin()))->getRawValue();
230 = dyn_cast<yaml::SequenceNode>(Stream.begin()->getRoot());
231 EXPECT_EQ(6, std::distance(Array->begin(), Array->end()));
243 UnnamedStream.printError(UnnamedStream.begin()->getRoot(), "Hello, World!");
258 Stream.printError(Stream.begin()->getRoot(), "Hello, World!");
267 Stream.begin()->getRoot());
269 auto Begin = Node->begin()
    [all...]

Completed in 383 milliseconds

1 2 3 4 56 7 8 91011>>