Home
last modified time | relevance | path

Searched refs:getEnd (Results 1 – 7 of 7) sorted by relevance

/sdk/emulator/opengl/host/libs/Translator/GLcommon/
DRangeManip.cpp20 if(m_start > r.getEnd() || r.getStart() > m_end) return false; in rangeIntersection()
22 int min_end = (m_end < r.getEnd())?m_end:r.getEnd(); in rangeIntersection()
32 if(m_start > r.getEnd() || r.getStart() > m_end) return false; in rangeUnion()
34 int max_end = (m_end > r.getEnd())?m_end:r.getEnd(); in rangeUnion()
96 if(old.getEnd() != intersection.getEnd()) { in delRange()
97 … list.insert(list.begin(),Range(intersection.getEnd(),old.getEnd() - intersection.getEnd())); in delRange()
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
DRangeManip.h29 inline int getEnd() const{return m_end;}; in getEnd() function
/sdk/docs/
DNotes_on_WST_StructuredDocument.txt154 - getLength() and getEnd() take any whitespace into account.
167 - getStart / getLength / getEnd : type-dependent offset, including whitespace.
171 Empirical evidence shows that there is no discernible difference between the getStart/getEnd
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
DAndroidXmlCharacterMatcher.java210 int subRegionEnd = regionStart + subRegion.getEnd(); in findTagForwards()
DAndroidXmlAutoEditStrategy.java415 int subRegionEnd = regionStart + subRegion.getEnd(); in getBalance()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DEclipseLintClient.java396 Position endPosition = location.getEnd();
1091 public Position getEnd() {
1222 position.getStart(), position.getEnd());
1264 return Location.create(mFile, null /*contents*/, pos.getStart(), pos.getEnd());
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
DAndroidXmlFormattingStrategy.java259 openTagEnd = subRegion.getEnd() + endRegion.getStartOffset(); in format()