HomeSort by relevance Sort by last modified time
    Searched refs:Range (Results 151 - 175 of 849) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonTokenStream.cs 138 if (i > Range)
139 Range = i;
  /external/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...]
  /external/clang/tools/libclang/
CIndexDiagnostic.h 83 virtual CXSourceRange getRange(unsigned Range) const = 0;
88 /// \brief Return the FixIt information (source range and inserted text).
144 CXSourceRange getRange(unsigned Range) const override;
149 /// \brief Return the FixIt information (source range and inserted text).
CXStoredDiagnostic.cpp 90 CXSourceRange CXStoredDiagnostic::getRange(unsigned int Range) const {
94 Diag.range_begin()[Range]);
107 // Create a range that covers the entire replacement (or
108 // removal) range, adjusting the end of the range to point to
  /external/clang/unittests/Format/
FormatTestProto.cpp 26 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
SortImportsTestJS.cpp 27 std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
215 // Sort a range within imports.
  /external/google-breakpad/src/processor/
map_serializers.h 127 // Convenient type name for Range.
128 typedef typename RangeMap<Address, Entry>::Range Range;
130 // Serializer for RangeMap's key and Range::base_.
132 // Serializer for RangeMap::Range::entry_.
  /external/libchrome/sandbox/linux/bpf_dsl/
policy_compiler.h 64 // If "width" is 4, the argument must in the range of 0x0..(1u << 32 - 1)
65 // If it is outside this range, the sandbox treats the system call just
75 struct Range;
76 typedef std::vector<Range> Ranges;
113 // range.
117 // given range of system call numbers. This function runs recursively.
  /frameworks/base/tools/aapt2/link/
XmlCompatVersioner.h 62 util::Range<ApiVersion> api_range);
72 const util::Range<ApiVersion>& api_range, bool generated, xml::Element* dst_el,
  /frameworks/minikin/include/minikin/
FontCollection.h 66 // mFamilyVec holds the indices of the mFamilies and mRanges holds the range of indices of
70 // only limited range of code points.
71 struct Range {
112 std::vector<Range> mRanges;
  /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...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-param-test_test.cc 60 using ::testing::Range;
190 const ParamGenerator<int> gen = Range(0, 10);
223 // Tests that Range() generates the expected sequence.
225 const ParamGenerator<int> gen = Range(0, 3);
230 // Edge case. Tests that Range() generates the single element sequence
231 // as expected when provided with range limits that are equal.
233 const ParamGenerator<int> gen = Range(0, 1);
238 // Edge case. Tests that Range() with generates empty sequence when
239 // supplied with an empty range.
241 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-param-test_test.cc 60 using ::testing::Range;
190 const ParamGenerator<int> gen = Range(0, 10);
223 // Tests that Range() generates the expected sequence.
225 const ParamGenerator<int> gen = Range(0, 3);
230 // Edge case. Tests that Range() generates the single element sequence
231 // as expected when provided with range limits that are equal.
233 const ParamGenerator<int> gen = Range(0, 1);
238 // Edge case. Tests that Range() with generates empty sequence when
239 // supplied with an empty range.
241 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/
CameraCharacteristics.java 362 * <p><b>Range of valid values:</b><br>
380 * <p><b>Range of valid values:</b><br>
405 * <p><b>Range of valid values:</b><br>
425 * the range [{@link android.media.CamcorderProfile#QUALITY_LOW QUALITY_LOW},
451 public static final Key<android.util.Range<Integer>[]> CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES =
452 new Key<android.util.Range<Integer>[]>("android.control.aeAvailableTargetFpsRanges", new TypeReference<android.util.Range<Integer>[]>() {{ }});
458 * <p><b>Range of valid values:</b><br></p>
459 * <p>Range [0,0] indicates that exposure compensation is not supported.</p>
460 * <p>For LIMITED and FULL devices, range must follow below requirements if exposur
    [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/test/
gtest-param-test_test.cc 60 using ::testing::Range;
190 const ParamGenerator<int> gen = Range(0, 10);
223 // Tests that Range() generates the expected sequence.
225 const ParamGenerator<int> gen = Range(0, 3);
230 // Edge case. Tests that Range() generates the single element sequence
231 // as expected when provided with range limits that are equal.
233 const ParamGenerator<int> gen = Range(0, 1);
238 // Edge case. Tests that Range() with generates empty sequence when
239 // supplied with an empty range.
241 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/test/
gtest-param-test_test.cc 60 using ::testing::Range;
190 const ParamGenerator<int> gen = Range(0, 10);
223 // Tests that Range() generates the expected sequence.
225 const ParamGenerator<int> gen = Range(0, 3);
230 // Edge case. Tests that Range() generates the single element sequence
231 // as expected when provided with range limits that are equal.
233 const ParamGenerator<int> gen = Range(0, 1);
238 // Edge case. Tests that Range() with generates empty sequence when
239 // supplied with an empty range.
241 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /external/clang/include/clang/AST/
Comment.h 58 /// Source range of this AST node.
59 SourceRange Range;
178 Range = SR;
200 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) {
216 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
219 return Range.getBegin();
223 return Range.getEnd();
306 SourceRange Range;
309 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) {
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 60 using ::testing::Range;
190 const ParamGenerator<int> gen = Range(0, 10);
223 // Tests that Range() generates the expected sequence.
225 const ParamGenerator<int> gen = Range(0, 3);
230 // Edge case. Tests that Range() generates the single element sequence
231 // as expected when provided with range limits that are equal.
233 const ParamGenerator<int> gen = Range(0, 1);
238 // Edge case. Tests that Range() with generates empty sequence when
239 // supplied with an empty range.
241 const ParamGenerator<int> gen = Range(0, 0)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 625 /// range.
626 static unsigned CountNumNewlinesBetween(StringRef Range) {
630 Range = Range.substr(Range.find_first_of("\n\r"));
631 if (Range.empty()) return NumNewLines;
636 if (Range.size() > 1 &&
637 (Range[1] == '\n' || Range[1] == '\r') &&
638 (Range[0] != Range[1])
    [all...]
  /external/libvpx/libvpx/test/
vp9_ethread_test.cc 401 ::testing::Range(0, 4))); // cpu_used
414 ::testing::Range(3, 9), // cpu_used
415 ::testing::Range(0, 3), // tile_columns
416 ::testing::Range(2, 5))); // threads
426 ::testing::Range(0, 3), // cpu_used
427 ::testing::Range(0, 3), // tile_columns
428 ::testing::Range(2, 5))); // threads
  /external/v8/src/crankshaft/
hydrogen-range-analysis.cc 5 #include "src/crankshaft/hydrogen-range-analysis.h"
41 // Infer range based on control flow.
131 // We know that value [op] other. Use this information to update the range on
136 Range temp_range;
137 Range* range = other->range() != NULL ? other->range() : &temp_range; local
138 Range* new_range = NULL;
140 TraceRange("Control flow range infer %d %s %d\n"
170 Range* range = value->range(); local
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
ParserTest.cpp 105 bool matchesRange(SourceRange Range, unsigned StartLine,
107 EXPECT_EQ(StartLine, Range.Start.Line);
108 EXPECT_EQ(EndLine, Range.End.Line);
109 EXPECT_EQ(StartColumn, Range.Start.Column);
110 EXPECT_EQ(EndColumn, Range.End.Column);
111 return Range.Start.Line == StartLine && Range.End.Line == EndLine &&
112 Range.Start.Column == StartColumn && Range.End.Column == EndColumn;

Completed in 692 milliseconds

1 2 3 4 5 67 8 91011>>