Searched defs:Range (Results 1 - 2 of 2) sorted by relevance

/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
H A DRangeManip.h21 class Range { class
24 Range():m_start(0),m_end(0),m_size(0){}; function in class:Range
25 Range(int start,int size):m_start(start),m_end(start+size),m_size(size){}; function in class:Range
26 Range(const Range& r):m_start(r.m_start),m_end(r.m_end),m_size(r.m_size){}; function in class:Range
31 Range& operator=(const Range& r) {
37 bool operator ==(const Range& r) const {
40 bool operator !=(const Range& r) const {return !((*this) == r);};
41 bool rangeIntersection(const Range
[all...]
/sdk/traceview/src/com/android/traceview/
H A DTimeLineView.java1236 for (Range range : mHighlightExclusive) {
1251 for (Range range : mHighlightInclusive) {
1381 mHighlightInclusive.add(new Range(callPixelStart + LeftMargin,
1436 mHighlightExclusive.add(new Range(pixelStart
1449 mHighlightInclusive.add(new Range(
1467 mHighlightExclusive.add(new Range(pixelStart
1978 private ArrayList<Range> mHighlightExclusive = new ArrayList<Range>();
1979 private ArrayList<Range> mHighlightInclusive = new ArrayList<Range>();
2142 private static class Range { class in class:TimeLineView
2143 Range(int xStart, int width, int y, Color color) { method in class:TimeLineView.Range
[all...]

Completed in 108 milliseconds