HomeSort by relevance Sort by last modified time
    Searched refs:Range (Results 301 - 325 of 1319) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 75 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
76 return getParser().Error(L, Msg, Range);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 75 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
76 return getParser().Error(L, Msg, Range);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 75 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
76 return getParser().Error(L, Msg, Range);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 75 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
76 return getParser().Error(L, Msg, Range);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 75 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
76 return getParser().Error(L, Msg, Range);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/
SourceLocation.h 192 /// \brief A trivial tuple used to represent a source range.
219 /// \brief Represents a character-granular source range.
222 /// of the range, or it can specify the start of the range and the start of the
223 /// last token of the range (a "token range"). In the token range case, the
225 /// range.
227 SourceRange Range;
231 CharSourceRange(SourceRange R, bool ITR) : Range(R), IsTokenRange(ITR) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 75 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
76 return getParser().Error(L, Msg, Range);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
mipsr6@24k-triple-stores-2.d 4 #name: 24K: Triple Store (Range Check)
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 102 /// \brief Annotation for a range of locations in a diagnostic.
103 class Range {
108 Range() : Start(), End(), Text() {}
109 Range(MemoryLocation Start, MemoryLocation End, const char *Text)
180 Range Ranges[MaxRanges];
189 Diag &AddRange(Range A) {
210 Diag &operator<<(const Range &R) { return AddRange(R); }
  /external/google-benchmark/test/
benchmark_test.cc 67 while (state.KeepRunning()) pi = CalculatePi(state.range(0));
87 std::set<int> data = ConstructRandomSet(state.range(0));
89 for (int j = 0; j < state.range(1); ++j) data.insert(rand());
91 state.SetItemsProcessed(state.iterations() * state.range(1));
92 state.SetBytesProcessed(state.iterations() * state.range(1) * sizeof(int));
102 for (int i = state.range(0); --i;) c.push_back(v);
104 const size_t items_processed = state.iterations() * state.range(0);
109 ->Range(1 << 0, 1 << 10);
110 BENCHMARK_TEMPLATE(BM_Sequential, std::list<int>)->Range(1 << 0, 1 << 10);
117 std::string s1(state.range(0), '-')
    [all...]
  /external/libcxx/utils/google-benchmark/test/
benchmark_test.cc 67 while (state.KeepRunning()) pi = CalculatePi(state.range(0));
87 std::set<int> data = ConstructRandomSet(state.range(0));
89 for (int j = 0; j < state.range(1); ++j) data.insert(rand());
91 state.SetItemsProcessed(state.iterations() * state.range(1));
92 state.SetBytesProcessed(state.iterations() * state.range(1) * sizeof(int));
102 for (int i = state.range(0); --i;) c.push_back(v);
104 const size_t items_processed = state.iterations() * state.range(0);
109 ->Range(1 << 0, 1 << 10);
110 BENCHMARK_TEMPLATE(BM_Sequential, std::list<int>)->Range(1 << 0, 1 << 10);
117 std::string s1(state.range(0), '-')
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
iterator.h 303 make_pointee_range(RangeT &&Range) {
305 return make_range(PointeeIteratorT(std::begin(std::forward<RangeT>(Range))),
306 PointeeIteratorT(std::end(std::forward<RangeT>(Range))));
329 make_pointer_range(RangeT &&Range) {
331 return make_range(PointerIteratorT(std::begin(std::forward<RangeT>(Range))),
332 PointerIteratorT(std::end(std::forward<RangeT>(Range))));
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
IRSymtab.h 50 /// A reference to a range of objects in the symbol table.
51 template <typename T> struct Range {
58 /// Describes the range of a particular module's symbols within the symbol
113 Range<Module> Modules;
114 Range<Comdat> Comdats;
115 Range<Symbol> Symbols;
116 Range<Uncommon> Uncommons;
198 template <typename T> ArrayRef<T> range(storage::Range<T> R) const { function in class:llvm::irsymtab::Reader
210 Modules = range(header().Modules)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
iterator.h 303 make_pointee_range(RangeT &&Range) {
305 return make_range(PointeeIteratorT(std::begin(std::forward<RangeT>(Range))),
306 PointeeIteratorT(std::end(std::forward<RangeT>(Range))));
329 make_pointer_range(RangeT &&Range) {
331 return make_range(PointerIteratorT(std::begin(std::forward<RangeT>(Range))),
332 PointerIteratorT(std::end(std::forward<RangeT>(Range))));
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Object/
IRSymtab.h 50 /// A reference to a range of objects in the symbol table.
51 template <typename T> struct Range {
58 /// Describes the range of a particular module's symbols within the symbol
113 Range<Module> Modules;
114 Range<Comdat> Comdats;
115 Range<Symbol> Symbols;
116 Range<Uncommon> Uncommons;
198 template <typename T> ArrayRef<T> range(storage::Range<T> R) const { function in class:llvm::irsymtab::Reader
210 Modules = range(header().Modules)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
iterator.h 303 make_pointee_range(RangeT &&Range) {
305 return make_range(PointeeIteratorT(std::begin(std::forward<RangeT>(Range))),
306 PointeeIteratorT(std::end(std::forward<RangeT>(Range))));
329 make_pointer_range(RangeT &&Range) {
331 return make_range(PointerIteratorT(std::begin(std::forward<RangeT>(Range))),
332 PointerIteratorT(std::end(std::forward<RangeT>(Range))));
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Object/
IRSymtab.h 50 /// A reference to a range of objects in the symbol table.
51 template <typename T> struct Range {
58 /// Describes the range of a particular module's symbols within the symbol
113 Range<Module> Modules;
114 Range<Comdat> Comdats;
115 Range<Symbol> Symbols;
116 Range<Uncommon> Uncommons;
198 template <typename T> ArrayRef<T> range(storage::Range<T> R) const { function in class:llvm::irsymtab::Reader
210 Modules = range(header().Modules)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
iterator.h 303 make_pointee_range(RangeT &&Range) {
305 return make_range(PointeeIteratorT(std::begin(std::forward<RangeT>(Range))),
306 PointeeIteratorT(std::end(std::forward<RangeT>(Range))));
329 make_pointer_range(RangeT &&Range) {
331 return make_range(PointerIteratorT(std::begin(std::forward<RangeT>(Range))),
332 PointerIteratorT(std::end(std::forward<RangeT>(Range))));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Object/
IRSymtab.h 50 /// A reference to a range of objects in the symbol table.
51 template <typename T> struct Range {
58 /// Describes the range of a particular module's symbols within the symbol
113 Range<Module> Modules;
114 Range<Comdat> Comdats;
115 Range<Symbol> Symbols;
116 Range<Uncommon> Uncommons;
198 template <typename T> ArrayRef<T> range(storage::Range<T> R) const { function in class:llvm::irsymtab::Reader
210 Modules = range(header().Modules)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
iterator.h 303 make_pointee_range(RangeT &&Range) {
305 return make_range(PointeeIteratorT(std::begin(std::forward<RangeT>(Range))),
306 PointeeIteratorT(std::end(std::forward<RangeT>(Range))));
329 make_pointer_range(RangeT &&Range) {
331 return make_range(PointerIteratorT(std::begin(std::forward<RangeT>(Range))),
332 PointerIteratorT(std::end(std::forward<RangeT>(Range))));
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
IRSymtab.h 50 /// A reference to a range of objects in the symbol table.
51 template <typename T> struct Range {
58 /// Describes the range of a particular module's symbols within the symbol
113 Range<Module> Modules;
114 Range<Comdat> Comdats;
115 Range<Symbol> Symbols;
116 Range<Uncommon> Uncommons;
198 template <typename T> ArrayRef<T> range(storage::Range<T> R) const { function in class:llvm::irsymtab::Reader
210 Modules = range(header().Modules)
    [all...]

Completed in 607 milliseconds

<<11121314151617181920>>