Home
last modified time | relevance | path

Searched refs:beginIndex (Results 1 – 19 of 19) sorted by relevance

/external/apache-http/src/org/apache/http/util/
DCharArrayBuffer.java206 public int indexOf(int ch, int beginIndex, int endIndex) { in indexOf() argument
207 if (beginIndex < 0) { in indexOf()
208 beginIndex = 0; in indexOf()
213 if (beginIndex > endIndex) { in indexOf()
216 for (int i = beginIndex; i < endIndex; i++) { in indexOf()
228 public String substring(int beginIndex, int endIndex) { in substring() argument
229 if (beginIndex < 0) { in substring()
235 if (beginIndex > endIndex) { in substring()
238 return new String(this.buffer, beginIndex, endIndex - beginIndex); in substring()
241 public String substringTrimmed(int beginIndex, int endIndex) { in substringTrimmed() argument
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLStringDefault.java633 public XMLString substring(int beginIndex) in substring() argument
635 return new XMLStringDefault(m_str.substring(beginIndex)); in substring()
654 public XMLString substring(int beginIndex, int endIndex) in substring() argument
656 return new XMLStringDefault(m_str.substring(beginIndex, endIndex)); in substring()
DXMLString.java543 public abstract XMLString substring(int beginIndex); in substring() argument
561 public abstract XMLString substring(int beginIndex, int endIndex); in substring() argument
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXStringForFSB.java752 public XMLString substring(int beginIndex) in substring() argument
755 int len = m_length - beginIndex; in substring()
761 int start = m_start + beginIndex; in substring()
783 public XMLString substring(int beginIndex, int endIndex) in substring() argument
786 int len = endIndex - beginIndex; in substring()
795 int start = m_start + beginIndex; in substring()
DXString.java873 public XMLString substring(int beginIndex) in substring() argument
875 return new XString(str().substring(beginIndex)); in substring()
894 public XMLString substring(int beginIndex, int endIndex) in substring() argument
896 return new XString(str().substring(beginIndex, endIndex)); in substring()
/external/llvm/lib/CodeGen/
DSpiller.cpp154 SlotIndex beginIndex = storeIndex.getPrevIndex(); in trivialSpillEverywhere() local
156 newLI->getNextValue(beginIndex, lis->getVNInfoAllocator()); in trivialSpillEverywhere()
157 newLI->addRange(LiveRange(beginIndex, storeIndex, storeVNI)); in trivialSpillEverywhere()
DLiveDebugVariables.cpp760 LocMapI.find(LI->beginIndex()); in splitLocation()
DLiveIntervalAnalysis.cpp904 SlotIndex Start = LI.beginIndex(); in intervalIsInOneMBB()
/external/apache-http/src/org/apache/http/impl/auth/
DAuthSchemeBase.java101 int beginIndex = pos; in processChallenge() local
106 String s = buffer.substring(beginIndex, endIndex); in processChallenge()
/external/icu4c/common/unicode/
Dumisc.h42 int32_t beginIndex; member
/external/apache-http/src/org/apache/http/impl/client/
DAbstractAuthenticationHandler.java94 int beginIndex = pos; in parseChallenges() local
99 String s = buffer.substring(beginIndex, endIndex); in parseChallenges()
/external/llvm/include/llvm/CodeGen/
DLiveInterval.h331 SlotIndex beginIndex() const {
506 const SlotIndex &thisIndex = beginIndex();
507 const SlotIndex &otherIndex = other.beginIndex();
/external/icu4c/test/cintltst/
Dcnumtst.c280 if(pos1.beginIndex == 1 && pos1.endIndex == 12) in TestNumberFormat()
284 pos1.beginIndex, pos1.endIndex); in TestNumberFormat()
312 if(pos2.beginIndex == 9 && pos2.endIndex == 11) in TestNumberFormat()
316 pos1.beginIndex, pos1.endIndex); in TestNumberFormat()
366 if (pos2.beginIndex == 1 && pos2.endIndex == 6) { in TestNumberFormat()
370 pos1.beginIndex, pos1.endIndex); in TestNumberFormat()
880 if (fieldPos.beginIndex != 26) { /* index of "." in formatted number */ in TestNumberFormat()
882 __FILE__, __LINE__, 0, fieldPos.beginIndex); in TestNumberFormat()
1347 if(pos1.beginIndex == 13 && pos1.endIndex == 15) in TestNumberFormatPadding()
1351 pos1.beginIndex, pos1.endIndex); in TestNumberFormatPadding()
Dcdattst.c511 int32_t beginIndex = strPtr - strDateTime; in TestRelativeDateFormat() local
512 if ( fp.beginIndex != beginIndex ) { in TestRelativeDateFormat()
513 …dat_format timeStyle SHORT dateStyle (%d | UDAT_RELATIVE)\n", fp.beginIndex, beginIndex, *stylePtr… in TestRelativeDateFormat()
Dcnmdptst.c733 if (pos.beginIndex != 0 && pos.endIndex != 12) { in TestSecondaryGrouping()
734 …tting \"#,##,###\" pattern pos = (%d, %d) expected pos = (0, 12)\n", pos.beginIndex, pos.endIndex); in TestSecondaryGrouping()
/external/icu4c/i18n/
Dudateintervalformat.cpp98 position->beginIndex = fp.getBeginIndex(); in udtitvfmt_format()
Dunum.cpp192 pos->beginIndex = fp.getBeginIndex(); in unum_formatInt64()
225 pos->beginIndex = fp.getBeginIndex(); in unum_formatDouble()
268 pos->beginIndex = fp.getBeginIndex(); in unum_formatDecimal()
308 pos->beginIndex = fp.getBeginIndex(); in unum_formatDoubleCurrency()
Dudat.cpp187 position->beginIndex = fp.getBeginIndex(); in udat_format()
/external/doclava/src/com/google/doclava/
DInfoBuilder.java1633 int beginIndex = className.lastIndexOf(".") + 1; in resolveQualifiedName() local
1635 if (className.substring(beginIndex).equals(name)) { in resolveQualifiedName()