/packages/apps/TV/tests/unit/src/com/android/tv/dvr/ |
DvrScheduleManagerTest.java | 21 import android.util.Range; 279 Collections.singletonList(new Range<>(10L, 20L))), r1); 281 Collections.singletonList(new Range<>(110L, 120L))), r1); 296 Collections.singletonList(new Range<>(10L, 20L))), r1); 298 Collections.singletonList(new Range<>(110L, 120L))), r1); 319 Collections.singletonList(new Range<>(10L, 20L))), r1); 321 Collections.singletonList(new Range<>(110L, 120L))), r2); 323 Collections.singletonList(new Range<>(50L, 150L))), r2, r1); 324 List<Range<Long>> ranges = new ArrayList<>(); 325 ranges.add(new Range<>(10L, 20L)) [all...] |
/frameworks/base/tools/aapt2/compile/ |
NinePatch_test.cpp | 211 EXPECT_EQ(Range(1, 4), nine_patch->horizontal_stretch_regions.front()); 212 EXPECT_EQ(Range(1, 3), nine_patch->vertical_stretch_regions.front()); 224 EXPECT_EQ(Range(1, 2), nine_patch->horizontal_stretch_regions[0]); 225 EXPECT_EQ(Range(3, 5), nine_patch->horizontal_stretch_regions[1]); 226 EXPECT_EQ(Range(6, 7), nine_patch->horizontal_stretch_regions[2]); 228 EXPECT_EQ(Range(0, 2), nine_patch->vertical_stretch_regions[0]); 229 EXPECT_EQ(Range(3, 5), nine_patch->vertical_stretch_regions[1]);
|
/external/clang/include/clang/AST/ |
ExprObjC.h | 97 SourceRange Range; 104 SubExpr(E), BoxingMethod(method), Range(R) {} 115 SourceLocation getAtLoc() const { return Range.getBegin(); } 117 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } 118 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } 120 return Range; 148 SourceRange Range; 167 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); } 168 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); } 169 SourceRange getSourceRange() const LLVM_READONLY { return Range; } [all...] |
/external/v8/src/compiler/ |
operation-typer.cc | 111 return Type::Range(new_min, new_max, zone()); 127 return Type::Range(min, max, zone()); 181 Type::Range(array_min(results, 4), array_max(results, 4), zone()); 208 Type::Range(array_min(results, 4), array_max(results, 4), zone()); 238 Type* range = local 239 Type::Range(array_min(results, 4), array_max(results, 4), zone()); 240 return maybe_minuszero ? Type::Union(range, Type::MinusZero(), zone()) 241 : range; 285 type = Type::Range(0.0, std::max(std::fabs(min), std::fabs(max)), zone()); 420 type = Type::Range(-1.0, 1.0, zone()) [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
fs_test.go | 38 start, end int64 // range [start,end) 55 {r: "bytes=0-,1-,2-,3-,4-", code: StatusOK}, // ignore wasteful range request 99 // Range tests 101 for _, rt := range ServeFileRangeTests { 103 req.Header.Set("Range", rt.r) 105 resp, body := getBody(t, fmt.Sprintf("range test %q", rt.r), req) 107 t.Errorf("range=%q: StatusCode=%d, want %d", rt.r, resp.StatusCode, rt.code) 117 cr := resp.Header.Get("Content-Range") 119 t.Errorf("range=%q: Content-Range = %q, want %q", rt.r, cr, wantContentRange [all...] |
/prebuilts/go/linux-x86/src/net/http/ |
fs_test.go | 38 start, end int64 // range [start,end) 55 {r: "bytes=0-,1-,2-,3-,4-", code: StatusOK}, // ignore wasteful range request 99 // Range tests 101 for _, rt := range ServeFileRangeTests { 103 req.Header.Set("Range", rt.r) 105 resp, body := getBody(t, fmt.Sprintf("range test %q", rt.r), req) 107 t.Errorf("range=%q: StatusCode=%d, want %d", rt.r, resp.StatusCode, rt.code) 117 cr := resp.Header.Get("Content-Range") 119 t.Errorf("range=%q: Content-Range = %q, want %q", rt.r, cr, wantContentRange [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/testcases/ |
Camera2SurfaceViewTestCase.java | 46 import android.util.Range; 757 * @param fpsRange The fps range the returned size must support. 758 * @return max size that support the given fps range. 760 protected Size getMaxPreviewSizeForFpsRange(Range<Integer> fpsRange) { [all...] |
/external/clang/tools/libclang/ |
CIndexHigh.cpp | 235 SourceRange Range(SM.getLocForStartOfFile(FID), SM.getLocForEndOfFile(FID)); 240 Range, 330 SourceRange Range(SM.getLocForStartOfFile(FID), SM.getLocForEndOfFile(FID)); 335 Range); 395 SourceRange Range(SM.getLocForStartOfFile(FID), SM.getLocForEndOfFile(FID)); 401 Range); 516 CXSourceRange range) { 518 return INVOKE_BLOCK2(block, cursor, range);
|
/external/clang/include/clang/Format/ |
Format.h | 768 ArrayRef<tooling::Range> Ranges, 790 /// Each range is extended on either end to its next bigger logic unit, i.e. 809 ArrayRef<tooling::Range> Ranges, 826 ArrayRef<tooling::Range> Ranges, [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Cut.java | 28 * Implementation detail for the internal structure of {@link Range} instances. Represents 75 int result = Range.compareOrThrow(endpoint, that.endpoint); 120 throw new IllegalStateException("range unbounded on this side"); 189 throw new IllegalStateException("range unbounded on this side"); 244 return Range.compareOrThrow(endpoint, value) <= 0; 305 return Range.compareOrThrow(endpoint, value) < 0;
|
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_scan.c | 149 for (reg = fulldecl->Range.First; 150 reg <= fulldecl->Range.Last; 171 unsigned index = fulldecl->Range.First;
|
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/ |
CameraDeviceInfo.java | 33 import android.util.Range; 164 Range<Integer> range, String protoName) throws Exception { 170 mStore.addResult("lower", range.getLower()); 171 mStore.addResult("upper", range.getUpper()); 176 Range<Long> range, String protoName) throws Exception { 182 mStore.addResult("lower", range.getLower()); 183 mStore.addResult("upper", range.getUpper()); 272 ((ParameterizedType) keyType).getRawType() == Range.class & [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_aepack.py | 15 aetypes.Range(1, 10),
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
util.rb | 150 class Range 151 def covers?( range ) 152 range.first >= first or return false 154 range.exclude_end? ? last >= range.last : last > range.last 156 range.exclude_end? ? last.succ >= range.last : last >= range.last 160 def covered_by?( range ) [all...] |
/external/libvpx/libvpx/test/ |
alt_ref_aq_segment_test.cc | 156 ::testing::Range(2, 5));
|
cpu_speed_test.cc | 155 ::testing::Range(0, 9));
|
cq_test.cc | 20 // CQ level range: [kCQLevelMin, kCQLevelMax). 129 VP8_INSTANTIATE_TEST_CASE(CQTest, ::testing::Range(kCQLevelMin, kCQLevelMax,
|
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFDebugAranges.cpp | 80 // a current address range. 85 // If the address range between two endpoints is described by some 86 // CU, first try to extend the last range in Aranges. If we can't 87 // do it, start a new range. 114 Range range(Address); 118 std::lower_bound(begin, end, range);
|
/external/llvm/lib/MC/ |
MCCodeView.cpp | 312 // label to end the PC range. 390 // Write down each range where the variable is defined. 391 for (std::pair<const MCSymbol *, const MCSymbol *> Range : Frag.getRanges()) { 392 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second); 394 // We must split the range into chunks of MaxDefRange, this is a fundamental 399 const MCSymbolRefExpr *SRE = MCSymbolRefExpr::create(Range.first, Ctx); 423 // Write down the range's extent. 426 // Move on to the next range.
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
LazyValueInfo.cpp | 65 /// constantrange - The Value falls within this range. 77 ConstantRange Range; 80 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {} 118 "Cannot get the constant-range of a non-constant-range!"); 119 return Range; 170 bool changed = Range == NewR; 171 Range = NewR; 180 Range = NewR; 193 Range = RHS.Range [all...] |
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCamera2Settings.java | 28 import android.util.Range; 95 Range<Integer> previewFpsRange = mTemplateSettings.get(CONTROL_AE_TARGET_FPS_RANGE); 209 Range<Integer> defaultFpsRange = mTemplateSettings.get(CONTROL_AE_TARGET_FPS_RANGE); 258 new Range(mPreviewFpsRangeMin, mPreviewFpsRangeMax));
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_aepack.py | 15 aetypes.Range(1, 10),
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_aepack.py | 15 aetypes.Range(1, 10),
|
/prebuilts/go/darwin-x86/src/builtin/ |
builtin.go | 23 // Range: 0 through 255. 27 // Range: 0 through 65535. 31 // Range: 0 through 4294967295. 35 // Range: 0 through 18446744073709551615. 39 // Range: -128 through 127. 43 // Range: -32768 through 32767. 47 // Range: -2147483648 through 2147483647. 51 // Range: -9223372036854775808 through 9223372036854775807.
|
/prebuilts/go/linux-x86/src/builtin/ |
builtin.go | 23 // Range: 0 through 255. 27 // Range: 0 through 65535. 31 // Range: 0 through 4294967295. 35 // Range: 0 through 18446744073709551615. 39 // Range: -128 through 127. 43 // Range: -32768 through 32767. 47 // Range: -2147483648 through 2147483647. 51 // Range: -9223372036854775808 through 9223372036854775807.
|