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

1 2 3 4 5 67 8 91011>>

  /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-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/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 343 * <p><b>Range of valid values:</b><br>
361 * <p><b>Range of valid values:</b><br>
386 * <p><b>Range of valid values:</b><br>
406 * the range [{@link android.media.CamcorderProfile#QUALITY_LOW QUALITY_LOW},
432 public static final Key<android.util.Range<Integer>[]> CONTROL_AE_AVAILABLE_TARGET_FPS_RANGES =
433 new Key<android.util.Range<Integer>[]>("android.control.aeAvailableTargetFpsRanges", new TypeReference<android.util.Range<Integer>[]>() {{ }});
439 * <p><b>Range of valid values:</b><br></p>
440 * <p>Range [0,0] indicates that exposure compensation is not supported.</p>
441 * <p>For LIMITED and FULL devices, range must follow below requirements if exposur
    [all...]
  /ndk/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/llvm/include/llvm/ADT/
STLExtras.h 369 bool all_of(R &&Range, UnaryPredicate &&P) {
370 return std::all_of(Range.begin(), Range.end(),
377 bool any_of(R &&Range, UnaryPredicate &&P) {
378 return std::any_of(Range.begin(), Range.end(),
385 auto find(R &&Range, const T &val) -> decltype(Range.begin()) {
386 return std::find(Range.begin(), Range.end(), val)
    [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/opencv3/modules/core/include/opencv2/core/
cuda.inl.hpp 247 return GpuMat(*this, Range(y, y+1), Range::all());
253 return GpuMat(*this, Range::all(), Range(x, x+1));
259 return GpuMat(*this, Range(startrow, endrow), Range::all());
263 GpuMat GpuMat::rowRange(Range r) const
265 return GpuMat(*this, r, Range::all());
271 return GpuMat(*this, Range::all(), Range(startcol, endcol))
    [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/v8/src/crankshaft/
hydrogen-range-analysis.cc 5 #include "src/crankshaft/hydrogen-range-analysis.h"
41 // Infer range based on control flow.
137 // We know that value [op] other. Use this information to update the range on
142 Range temp_range;
143 Range* range = other->range() != NULL ? other->range() : &temp_range; local
144 Range* new_range = NULL;
146 TraceRange("Control flow range infer %d %s %d\n"
176 Range* range = value->range(); local
    [all...]
hydrogen-instructions.cc 178 int32_t Range::Mask() const {
191 void Range::AddConstant(int32_t value) {
203 void Range::Intersect(Range* other) {
211 void Range::Union(Range* other) {
219 void Range::CombinedMax(Range* other) {
226 void Range::CombinedMin(Range* other)
1820 Range* range = r.IsSmi() local
1825 Range* range = OperandAt(0)->range()->Copy(zone); local
    [all...]
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 42 // The ranges are all represented with a single value. This is the start of one range and
44 struct Range {
48 // Since this struct represents the start of one range and end of another, we have
54 auto cmp = [](const Range& r, size_t index) -> bool {
62 std::vector<Range> ranges;
63 ranges.push_back(Range{ 0 });
64 ranges.push_back(Range{ originalText.size() - 1 });
68 // Insert or update the Range marker for the start of this span.
74 Range{ span.firstChar, &localized.spans[i].firstChar, nullptr });
77 // Insert or update the Range marker for the end of this span
    [all...]
  /external/v8/test/webkit/fast/js/kde/
Number.js 98 shouldBeTrue("toFixedOrException(2,-1).indexOf('Range') >= 0");
101 shouldBeTrue("toFixedOrException(2,21).indexOf('Range') >= 0");
102 shouldBeTrue("toFixedOrException(-2,-1).indexOf('Range') >= 0");
105 shouldBeTrue("toFixedOrException(-2,21).indexOf('Range') >= 0");
117 shouldBeTrue("try { Number(123.456).toExponential(-1) } catch (e) { String(e).indexOf('Range') >= 0; }");
139 shouldBeTrue("try { Number(123.456).toExponential(21) } catch (e) { String(e).indexOf('Range') >= 0; }");
141 shouldBeTrue("try { Number(-123.456).toExponential(-1) } catch (e) { String(e).indexOf('Range') >= 0; }");
163 shouldBeTrue("try { Number(-123.456).toExponential(21) } catch (e) { String(e).indexOf('Range') >= 0; }");
165 shouldBeTrue("try { Number(.000123456).toExponential(-1) } catch (e) { String(e).indexOf('Range') >= 0; }");
187 shouldBeTrue("try { Number(.000123456).toExponential(21) } catch (e) { String(e).indexOf('Range') >= 0; }")
    [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;
  /system/core/libmemunreachable/tests/
HeapWalker_test.cpp 88 allocator::vector<Range> leaked(heap_);
116 allocator::vector<Range> leaked(heap_);
144 allocator::vector<Range> leaked(heap_);
169 allocator::vector<Range> leaked(heap_);
193 allocator::vector<Range> leaked(heap_);
  /prebuilts/misc/common/swig/include/2.0.11/d/
std_vector.i 185 static import std.range;
200 struct Range {
215 @property Range save() {
250 Range opSlice() {
251 return Range(this, 0, length);
254 Range opSlice(size_t a, size_t b) {
256 return Range(this, a, b);
326 if (std.range.isInputRange!Stuff &&
327 std.traits.isImplicitlyConvertible!(std.range.ElementType!Stuff, ValueType)) {
340 size_t insertBefore(Stuff)(Range r, Stuff stuff
    [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 50 if (Range.getBegin().isInvalid())
51 Range.setBegin(TL.getBeginLoc());
52 Range.setEnd(ColonColonLoc);
54 assert(Range == Builder.getSourceRange() &&
55 "NestedNameSpecifierLoc range computation incorrect");
63 if (Range.getBegin().isInvalid())
64 Range.setBegin(IdentifierLoc);
65 Range.setEnd(ColonColonLoc);
67 assert(Range == Builder.getSourceRange() &&
68 "NestedNameSpecifierLoc range computation incorrect")
    [all...]
  /external/clang/include/clang/Rewrite/Core/
Rewriter.h 37 /// \brief Given a source range, true to include previous inserts at the
38 /// beginning of the range as part of the range itself (true by default).
40 /// \brief Given a source range, true to include previous inserts at the
41 /// end of the range as part of the range itself (true by default).
73 /// getRangeSize - Return the size in bytes of the specified range if they
75 int getRangeSize(SourceRange Range,
77 int getRangeSize(const CharSourceRange &Range,
81 /// range. If the start or end of the range was unrewritable or if they ar
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
Trie2Test.java 96 Iterator<Trie2.Range> it;
99 Trie2.Range r = it.next();
113 for (Trie2.Range rr: trie) {
148 Iterator<Trie2.Range> it = trie.iterator(vm);
149 Trie2.Range r = it.next();
157 // Iteration over a leading surrogate range.
162 Iterator<Trie2.Range> it = trie.iteratorForLeadSurrogate((char)0xd87e);
163 Trie2.Range r = it.next();
184 // Iteration over a leading surrogate range with a ValueMapper.
197 Iterator<Trie2.Range> it = trie.iteratorForLeadSurrogate((char)0xd87e, m)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
Trie2Test.java 92 Iterator<Trie2.Range> it;
95 Trie2.Range r = it.next();
109 for (Trie2.Range rr: trie) {
144 Iterator<Trie2.Range> it = trie.iterator(vm);
145 Trie2.Range r = it.next();
153 // Iteration over a leading surrogate range.
158 Iterator<Trie2.Range> it = trie.iteratorForLeadSurrogate((char)0xd87e);
159 Trie2.Range r = it.next();
180 // Iteration over a leading surrogate range with a ValueMapper.
193 Iterator<Trie2.Range> it = trie.iteratorForLeadSurrogate((char)0xd87e, m)
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 134 UInt32 Range;
158 Range = 0xFFFFFFFF;
163 if (Code == Range)
171 if (Range < kTopValue)
173 Range <<= 8;
183 Range >>= 1;
184 Code -= Range;
186 Code += Range & t;
188 if (Code == Range)
202 UInt32 bound = (Range >> kNumBitModelTotalBits) * v;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_pstipple.c 146 for (i = decl->Range.First;
147 i <= decl->Range.Last; i++) {
152 pctx->maxInput = MAX2(pctx->maxInput, (int) decl->Range.Last);
154 pctx->wincoordInput = (int) decl->Range.First;
158 for (i = decl->Range.First;
159 i <= decl->Range.Last; i++) {
241 decl.Range.First =
242 decl.Range.Last = wincoordInput;
250 decl.Range.First =
251 decl.Range.Last = pctx->freeSampler
    [all...]
  /external/opencv3/modules/features2d/misc/java/test/
Features2dTest.java 14 import org.opencv.core.Range;
97 Mat imgQuery = imgTrain.submat(new Range(0, imgTrain.rows() - 100), Range.all());

Completed in 662 milliseconds

1 2 3 4 5 67 8 91011>>