HomeSort by relevance Sort by last modified time
    Searched defs:ranges (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/printing/
page_range_unittest.cc 9 printing::PageRanges ranges; local
13 ranges.push_back(range);
16 ranges.push_back(range);
19 ranges.push_back(range);
20 std::vector<int> pages(printing::PageRange::GetPages(ranges));
33 printing::PageRanges ranges; local
34 std::vector<int> pages(printing::PageRange::GetPages(ranges));
39 printing::PageRanges ranges; local
43 ranges.push_back(range);
44 std::vector<int> pages(printing::PageRange::GetPages(ranges));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceTest.cpp 16 Vector<CSSFontFace::UnicodeRange> ranges; local
17 CSSFontFace::UnicodeRangeSet set(ranges);
27 Vector<CSSFontFace::UnicodeRange> ranges; local
28 ranges.append(CSSFontFace::UnicodeRange('b', 'b'));
29 CSSFontFace::UnicodeRangeSet set(ranges);
44 Vector<CSSFontFace::UnicodeRange> ranges; local
45 ranges.append(CSSFontFace::UnicodeRange('6', '7'));
46 ranges.append(CSSFontFace::UnicodeRange('2', '4'));
47 CSSFontFace::UnicodeRangeSet set(ranges);
67 Vector<CSSFontFace::UnicodeRange> ranges; local
80 Vector<CSSFontFace::UnicodeRange> ranges; local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
chunk_range_unittest.cc 5 // Test program to convert lists of integers into ranges, and vice versa.
42 // Test no chunk numbers in contiguous ranges.
92 std::vector<ChunkRange> ranges; local
95 EXPECT_TRUE(StringToRanges(input, &ranges));
96 EXPECT_EQ(ranges.size(), static_cast<size_t>(5));
97 EXPECT_EQ(ranges[0].start(), 1);
98 EXPECT_EQ(ranges[0].stop(), 100);
99 EXPECT_EQ(ranges[1].start(), 398);
100 EXPECT_EQ(ranges[1].stop(), 398);
101 EXPECT_EQ(ranges[3].start(), 1138)
134 std::vector<ChunkRange> ranges; local
152 std::vector<ChunkRange> ranges; local
    [all...]
  /bootable/recovery/minzip/
SysUtil.h 29 MappedRange* ranges; member in struct:MemMapping
  /external/compiler-rt/test/msan/
ifaddrs.cc 18 ranges.push_back(std::make_pair((void *)addr, (size_t)size)); \
34 std::vector<std::pair<void *, size_t> > ranges; local
47 for (int i = 0; i < ranges.size(); i++)
48 assert(0 == __msan_test_shadow(ranges[i].first, ranges[i].second));
  /external/chromium_org/net/url_request/
url_range_request_job.h 30 const std::vector<HttpByteRange>& ranges() const { return ranges_; } function in class:net::URLRangeRequestJob
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRangesTest.cpp 41 static std::string ToString(const TimeRanges& ranges)
45 for (unsigned i = 0; i < ranges.length(); ++i)
46 ss << " [" << ranges.start(i, IGNORE_EXCEPTION) << "," << ranges.end(i, IGNORE_EXCEPTION) << ")";
95 RefPtr<TimeRanges> ranges = TimeRanges::create(); local
97 ranges->add(0, 2);
98 ranges->add(10, 11);
99 ASSERT_RANGE("{ [0,2) [10,11) }", ranges);
101 ranges->add(0, 2);
102 ASSERT_RANGE("{ [0,2) [10,11) }", ranges);
125 RefPtr<TimeRanges> ranges = TimeRanges::create(0, 2); local
    [all...]
  /art/compiler/optimizing/
live_interval_test.cc 30 static constexpr size_t ranges[][2] = {{0, 42}}; local
31 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
36 static constexpr size_t ranges[][2] = {{4, 12}, {14, 16}}; local
37 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
47 static constexpr size_t ranges[][2] = {{0, 42}}; local
48 LiveInterval* interval = BuildInterval(ranges, arraysize(ranges), &allocator);
57 static constexpr size_t ranges[][2] = {{4, 12}, {14, 16}} local
75 static constexpr size_t ranges[][2] = {{0, 42}}; local
85 static constexpr size_t ranges[][2] = {{4, 12}, {14, 16}}; local
196 static constexpr size_t ranges[][2] = {{0, 4}}; local
207 static constexpr size_t ranges[][2] = {{0, 4}}; local
218 static constexpr size_t ranges[][2] = {{0, 4}, {8, 12}}; local
229 static constexpr size_t ranges[][2] = {{0, 4}, {8, 12}}; local
240 static constexpr size_t ranges[][2] = {{0, 4}, {8, 12}}; local
251 static constexpr size_t ranges[][2] = {{0, 4}, {6, 10}}; local
262 static constexpr size_t ranges[][2] = {{0, 4}, {6, 10}}; local
273 static constexpr size_t ranges[][2] = {{0, 4}}; local
    [all...]
register_allocator_test.cc 64 static constexpr size_t ranges[][2] = {{0, 42}}; local
65 intervals.Add(BuildInterval(ranges, arraysize(ranges), &allocator, 0));
66 intervals.Add(BuildInterval(ranges, arraysize(ranges), &allocator, 1));
  /external/chromium_org/base/metrics/
histogram_base_unittest.cc 110 std::vector<HistogramBase::Sample> ranges; local
111 ranges.push_back(13);
112 ranges.push_back(5);
113 ranges.push_back(9);
116 "TestHistogram", ranges, HistogramBase::kIPCSerializationSourceFlag);
statistics_recorder_unittest.cc 41 BucketRanges* ranges = new BucketRanges(bucket_count + 1); local
42 Histogram::InitializeBucketRanges(min, max, ranges);
44 StatisticsRecorder::RegisterOrDeleteDuplicateRanges(ranges);
75 BucketRanges* ranges = new BucketRanges(3);; local
76 ranges->ResetChecksum();
77 EXPECT_EQ(ranges,
78 StatisticsRecorder::RegisterOrDeleteDuplicateRanges(ranges));
91 // Register new ranges.
99 // Register some ranges again.
105 // Make sure the ranges is still the one we know
251 std::vector<const BucketRanges*> ranges; local
    [all...]
  /external/chromium_org/chrome/browser/ui/autofill/
generated_credit_card_bubble_controller_unittest.cc 129 // Check that the highlighted ranges in the bubble's text are correct.
132 const std::vector<TextRange>& ranges = controller()->ContentsTextRanges(); local
134 ASSERT_EQ(3U, ranges.size());
136 EXPECT_EQ(FrontingCard(), RangeOfString(contents_text, ranges[0].range));
137 EXPECT_FALSE(ranges[0].is_link);
139 EXPECT_EQ(BackingCard(), RangeOfString(contents_text, ranges[1].range));
140 EXPECT_FALSE(ranges[1].is_link);
142 EXPECT_TRUE(ranges[2].is_link);
145 EXPECT_EQ(ranges, controller()->ContentsTextRanges());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchedPropertiesCache.h 40 MatchRanges ranges; member in struct:WebCore::CachedMatchedProperties
  /external/chromium_org/third_party/icu/source/i18n/
ucol_bld.h 41 WeightRange ranges[7]; member in struct:__anon15821
  /external/chromium_org/tools/gn/
err.h 65 const RangeList& ranges() const { return ranges_; } function in class:Err
  /external/icu/icu4c/source/i18n/
collationweights.h 54 * what ranges to use for a given number of weights between (excluding)
57 * @param lowerLimit A collation element weight; the ranges will be filled to cover
59 * @param upperLimit A collation element weight; the ranges will be filled to cover
68 * Given a set of ranges calculated by allocWeights(),
70 * The ranges are modified to keep the current iteration state.
72 * @return The next weight in the ranges, or 0xffffffff if there is none left.
93 * possible ranges of weights between the two limits, excluding them.
94 * For weights with up to 4 bytes there are up to 2*4-1=7 ranges.
103 WeightRange ranges[7]; member in class:CollationWeights
collationsets.h 132 UnicodeSet ranges; member in class:ContractionsAndExpansions
  /frameworks/base/core/jni/
android_view_InputDevice.cpp 66 const Vector<InputDeviceInfo::MotionRange>& ranges = deviceInfo.getMotionRanges(); local
67 for (size_t i = 0; i < ranges.size(); i++) {
68 const InputDeviceInfo::MotionRange& range = ranges.itemAt(i);
  /frameworks/base/services/core/jni/
com_android_server_ConsumerIrService.cpp 72 consumerir_freq_range_t *ranges; local
79 ranges = new consumerir_freq_range_t[len];
81 len = dev->get_carrier_freqs(dev, len, ranges);
83 delete[] ranges;
91 delete[] ranges;
95 arr[i*2] = ranges[i].min;
96 arr[i*2+1] = ranges[i].max;
99 delete[] ranges;
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
GamepadDevice.java 56 final List<MotionRange> ranges = inputDevice.getMotionRanges(); local
57 mAxes = new int[ranges.size()];
59 for (MotionRange range : ranges) {
  /external/chromium_org/content/renderer/media/
websourcebuffer_impl.cc 63 media::Ranges<base::TimeDelta> ranges = demuxer_->GetBufferedRanges(id_); local
64 blink::WebTimeRanges result(ranges.size());
65 for (size_t i = 0; i < ranges.size(); i++) {
66 result[i].start = ranges.start(i).InSecondsF();
67 result[i].end = ranges.end(i).InSecondsF();
  /external/easymock/src/org/easymock/internal/
Results.java 29 private final LinkedList<Range> ranges = new LinkedList<Range>(); field in class:Results
34 if (!ranges.isEmpty()) {
35 Range lastRange = ranges.getLast();
41 ranges.add(range);
47 for (int i = 0; i < ranges.size(); i++) {
48 Range interval = ranges.get(i);
74 for (Range interval : ranges) {
  /libcore/luni/src/main/java/java/text/
AttributedString.java 162 private boolean inRange(List<Range> ranges) {
163 Iterator<Range> it = ranges.iterator();
197 List<Range> ranges = entry.getValue(); local
198 if (inRange(ranges)) {
206 private Object currentValue(List<Range> ranges) {
207 Iterator<Range> it = ranges.iterator();
223 ArrayList<Range> ranges = (ArrayList<Range>) attrString.attributeMap local
225 if (ranges == null) {
228 return currentValue(ranges);
253 private int runLimit(List<Range> ranges) {
276 ArrayList<Range> ranges = (ArrayList<Range>) attrString.attributeMap local
324 ArrayList<Range> ranges = (ArrayList<Range>) attrString.attributeMap local
556 ArrayList<Range> ranges = new ArrayList<Range>(1); local
584 List<Range> ranges = attributeMap.get(attribute); local
625 List<Range> ranges = attributeMap.get(attribute); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
drive_url_request_job.cc 65 std::vector<net::HttpByteRange> ranges; local
66 if (net::HttpUtil::ParseRangeHeader(range_header, &ranges) &&
67 ranges.size() == 1) {
68 byte_range_ = ranges[0];
  /external/chromium_org/content/browser/service_worker/
service_worker_read_from_cache_job.cc 100 std::vector<net::HttpByteRange> ranges; local
102 !net::HttpUtil::ParseRangeHeader(value, &ranges)) {
106 // If multiple ranges are requested, we play dumb and
108 if (ranges.size() == 1U)
109 range_requested_ = ranges[0];

Completed in 1135 milliseconds

1 2 3 4 5 6 7