HomeSort by relevance Sort by last modified time
    Searched refs:range (Results 201 - 225 of 3315) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugArangeSet.cpp 72 // The current range ends at or exceeds the start of the next address range.
82 // Discontiguous address range, just proceed to the next one.
96 // Add a range descriptor and keep things sorted so we can easily
100 DWARFDebugArangeSet::AddDescriptor(const DWARFDebugArangeSet::Descriptor& range)
104 m_arange_descriptors.push_back(range);
109 DescriptorIter pos = lower_bound(m_arange_descriptors.begin(), end, range, DescriptorLessThan);
110 const dw_addr_t range_end_addr = range.end_address();
114 if (range.address < pos->address)
119 m_arange_descriptors.insert(pos, range);
    [all...]
  /external/chromium_org/tools/sheriffing/
failureinfo.js 6 * Return the range of intersection between the two lists. Ranges are sets of
34 var range = testData[botName];
35 intersections.push([range, [botName]]);
38 range = testData[botName];
41 var intersect = rangeIntersection(intersections[j][0], range);
50 intersections.push([range, [botName]]);
96 var range = row.insertCell(-1);
97 range.className = 'failure-range';
102 'changelog.html?url=%2Ftrunk%2Fsrc&range='
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_itertools.py 53 return prod(range(1, n+1))
84 self.assertEqual(list(combinations(range(4), 3)),
93 indices = range(r)
96 for i in reversed(range(r)):
102 for j in range(i+1, r):
110 for indices in permutations(range(n), r):
118 for indices in combinations_with_replacement(range(n), r):
122 for n in range(7):
123 values = [5*x-12 for x in range(n)]
124 for r in range(n+2)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_itertools.py 53 return prod(range(1, n+1))
84 self.assertEqual(list(combinations(range(4), 3)),
93 indices = range(r)
96 for i in reversed(range(r)):
102 for j in range(i+1, r):
110 for indices in permutations(range(n), r):
118 for indices in combinations_with_replacement(range(n), r):
122 for n in range(7):
123 values = [5*x-12 for x in range(n)]
124 for r in range(n+2)
    [all...]
  /external/chromium_org/v8/src/
lithium-allocator.cc 188 // We cannot spill a live range that has a use requiring a register
284 ? after // Only interval in the range after split.
285 : last_interval_; // Last interval of the original range.
317 // to the use that no longer belongs to this live range.
321 // Link the new live range in the chain before any of the other
322 // ranges linked from the range before the split.
355 LAllocator::TraceAlloc("Shorten live range %d to [%d\n", id_, start.Value());
366 LAllocator::TraceAlloc("Ensure live range %d in interval [%d %d[\n",
391 LAllocator::TraceAlloc("Add to live range %d interval [%d %d[\n",
422 LAllocator::TraceAlloc("Add to live range %d use position %d\n"
581 LiveRange* range = LiveRangeFor(operand_index); local
696 LiveRange* range = LiveRangeFor(operand); local
718 LiveRange* range = LiveRangeFor(operand); local
785 LiveRange* range = LiveRangeFor(first_output->virtual_register()); local
946 LiveRange* range = FixedLiveRangeFor(i); local
958 LiveRange* range = FixedDoubleLiveRangeFor(i); local
1323 LiveRange* range = LiveRangeFor(operand_index); local
1350 LiveRange* range = LiveRangeFor(operand_index); local
1390 LiveRange* range = live_ranges()->at(range_idx); local
1862 LiveRange* range = active_live_ranges_[i]; local
1879 LiveRange* range = inactive_live_ranges_.at(i); local
1970 LiveRange* range = active_live_ranges_[i]; local
1994 LiveRange* range = inactive_live_ranges_[i]; local
    [all...]
  /external/chromium_org/ui/views/controls/
prefix_selector.cc 9 #include "ui/gfx/range/range.h"
94 bool PrefixSelector::GetTextRange(gfx::Range* range) const {
95 *range = gfx::Range();
99 bool PrefixSelector::GetCompositionTextRange(gfx::Range* range) const {
100 *range = gfx::Range();
    [all...]
  /external/lldb/source/Commands/
CommandObjectDisassemble.cpp 372 AddressRange range; local
385 range = pc_line_entry.range;
404 range.GetBaseAddress() = symbol->GetAddress();
405 range.SetByteSize(symbol->GetByteSize());
409 // Did the "m_options.frame_line" find a valid range already? If so
411 if (range.GetByteSize() == 0)
421 range.GetBaseAddress() = frame->GetFrameCodeAddress();
430 range.GetBaseAddress().SetOffset (m_options.start_addr);
431 if (range.GetBaseAddress().IsValid()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 14 init = range(15, 25)
25 values = [ia[i] for i in range(len(init))]
30 new_values = range(42, 42+alen)
31 [setitem(ia, n, new_values[n]) for n in range(alen)]
32 values = [ia[i] for i in range(len(init))]
37 values = [ia[i] for i in range(len(init))]
41 self.assertRaises(IndexError, int_array, *range(alen*2))
74 values = [na[i] for i in range(alen)]
78 values = [na[i] for i in range(alen)]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_arrays.py 14 init = range(15, 25)
25 values = [ia[i] for i in range(len(init))]
30 new_values = range(42, 42+alen)
31 [setitem(ia, n, new_values[n]) for n in range(alen)]
32 values = [ia[i] for i in range(len(init))]
37 values = [ia[i] for i in range(len(init))]
41 self.assertRaises(IndexError, int_array, *range(alen*2))
74 values = [na[i] for i in range(alen)]
78 values = [na[i] for i in range(alen)]
  /external/chromium_org/content/renderer/
text_input_client_observer.cc 70 void TextInputClientObserver::OnFirstRectForCharacterRange(gfx::Range range) {
81 frame->firstRectForCharacterRange(range.start(), range.length(),
89 void TextInputClientObserver::OnStringForRange(gfx::Range range) {
95 frame, range.start(), range.length());
  /external/chromium_org/media/base/
text_ranges.cc 26 // There is no active time range, so this is the first AddCue()
42 Range& range = itr->second; local
44 if (start_time > range.last_time()) {
49 range.ResetCount(start_time);
56 Range& curr_range = curr_range_itr_->second;
68 // We have walked off the current range, and onto the next one.
69 // There is now no ambiguity about where the current time range
77 // Either |curr_range| is the last range in the map, or there is a
78 // next range beyond |curr_range|, but its start time is ahead o
93 Range range; local
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
ime_input_event_dev.cc 117 std::pair<uint32_t, uint32_t> range(0, 0);
120 &range.first,
121 &range.second);
124 &range.first,
125 &range.second);
127 return range;
  /external/chromium_org/ui/views/ime/
input_method_bridge.h 67 virtual bool GetTextRange(gfx::Range* range) const OVERRIDE;
68 virtual bool GetCompositionTextRange(gfx::Range* range) const OVERRIDE;
69 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE;
70 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE;
71 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE
    [all...]
  /external/lldb/include/lldb/Symbol/
Block.h 29 /// address range, and Block objects contain one or more ranges
30 /// which are offsets into that range. Blocks are can have discontiguous
31 /// ranges within the BlockList adress range, and each block can
47 typedef RangeList::Entry Range;
91 /// Add a new offset range to this block.
94 /// An offset into this Function's address range that
95 /// describes the start address of a range for this block.
98 /// An offset into this Function's address range that
99 /// describes the end address of a range for this block.
102 AddRange (const Range& range)
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
AudioCapture.java 43 int[] range = new int[2]; local
45 range = Visualizer.getCaptureSizeRange();
47 if (size < range[0]) {
48 size = range[0];
50 if (size > range[1]) {
51 size = range[1];
  /system/vold/
fstrim.c 63 struct fstrim_range range = { 0 }; local
105 memset(&range, 0, sizeof(range));
106 range.len = ULLONG_MAX;
109 ret = ioctl(fd, deep_trim ? FIDTRIM : FITRIM, &range);
114 SLOGI("Trimmed %llu bytes on %s\n", range.len, fstab->recs[i].mount_point);
  /external/chromium_org/ui/gfx/
break_list.h 13 #include "ui/gfx/range/range.h"
20 // Each break stores the start position and value of its associated range.
24 // The value of the terminal break applies to the range [break.first, max_).
25 // The value of other breaks apply to the range [break.first, (break+1).first).
42 // Adjust the breaks to apply |value| over the supplied |range|.
43 void ApplyValue(T value, const Range& range);
53 // Get the range of the supplied break; returns the break's start position and
55 Range GetRange(const typename BreakList<T>::const_iterator& i) const
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
deringing_luma.cpp 34 int thres[4], range[4], max_range_blk, max_thres_blk; local
66 range[blks] = max_blk - min_blk;
68 if (range[blks] >= max_range_blk)
70 max_range_blk = range[blks];
86 if (range[blks]<32 && max_range_blk >= 64)
120 range[blks] = max_blk - min_blk;
122 if (range[blks] >= max_range_blk)
124 max_range_blk = range[blks];
140 if (range[blks]<32 && max_range_blk >= 64)
178 range[blks] = max_blk - min_blk
    [all...]
  /frameworks/base/core/java/android/view/
InputDevice.java 97 * Use {@link #getMotionRange} to query the range of the pointing device. Some devices permit
98 * touches outside the display area so the effective range may be somewhat smaller or larger
111 * Use {@link #getMotionRange} to query the range of motion.
122 * Use {@link #getMotionRange} to query the range of positions.
131 * Use {@link #getMotionRange} to query the range of positions.
251 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_X}.
260 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_Y}.
269 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_PRESSURE}.
278 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_SIZE}.
287 * Constant for retrieving the range of values for {@link MotionEvent#AXIS_TOUCH_MAJOR}
644 final MotionRange range = mMotionRanges.get(i); local
669 final MotionRange range = mMotionRanges.get(i); local
856 MotionRange range = mMotionRanges.get(i); local
911 MotionRange range = mMotionRanges.get(i); local
    [all...]
  /external/bison/examples/calc++/
stack.hh 111 slice (const S& stack, unsigned int range)
113 , range_ (range)
  /external/chromium_org/net/quic/
port_suggester.cc 36 int range = max - min + 1; local
37 // Ports (and hence the extent of the |range|) are generally under 2^16, so
40 previous_suggestion_ = static_cast<int>(seed_ % range) + min;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InputMethodControllerTest.cpp 9 #include "core/dom/Range.h"
102 RefPtrWillBeRawPtr<Range> range = controller().compositionRange(); local
103 EXPECT_EQ(0, range->startOffset());
104 EXPECT_EQ(5, range->endOffset());
106 PlainTextRange plainTextRange(PlainTextRange::create(*div, *range.get()));
122 RefPtrWillBeRawPtr<Range> range = controller().compositionRange(); local
123 EXPECT_EQ(1, range->startOffset());
124 EXPECT_EQ(6, range->endOffset())
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
usetiter.h 83 * iteration range, if <tt>codepoint != IS_STRING</tt>. If
127 * code point range, depending on whether <tt>next()</tt> or
134 * of the range, and <tt>getCodepointEnd()</tt> returns the end
135 * of the range.
148 * Returns the end of the current code point range, if
193 * Returns the next element in the set, either a code point range
197 * range of one or more code points from <tt>getCodepoint()</tt> to
253 /** End range
257 /** Range
260 int32_t range; member in class:UnicodeSetIterator
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
cmaps.cpp 181 le_int32 range = 0; local
184 range = fRangeOffset;
190 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
191 range += probe;
195 if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= unicode32) {
196 return (LEGlyphID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode));
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
acm_random.h 49 int PseudoUniform(int range) {
50 return random_.Generate(range);

Completed in 2604 milliseconds

1 2 3 4 5 6 7 891011>>