/external/apache-http/src/org/apache/http/message/ |
D | BasicLineParser.java | 147 int indexFrom = cursor.getPos(); in parseProtocolVersion() 152 int i = cursor.getPos(); in parseProtocolVersion() 238 int index = cursor.getPos(); in hasProtocolVersion() 317 int indexFrom = cursor.getPos(); in parseRequestLine() 322 int i = cursor.getPos(); in parseRequestLine() 333 i = cursor.getPos(); in parseRequestLine() 409 int indexFrom = cursor.getPos(); in parseStatusLine() 418 int i = cursor.getPos(); in parseStatusLine() 500 int pos = cursor.getPos(); in skipWhitespace()
|
D | BasicHeaderValueParser.java | 182 char ch = buffer.charAt(cursor.getPos() - 1); in parseHeaderElement() 245 int pos = cursor.getPos(); in parseParameters() 265 char ch = buffer.charAt(cursor.getPos() - 1); in parseParameters() 333 int pos = cursor.getPos(); in parseNameValuePair() 334 int indexFrom = cursor.getPos(); in parseNameValuePair()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | NFRule.java | 679 if (ruleText.startsWith(" ") && (sub1 == null || sub1.getPos() != 0)) { in toString() 687 ruleTextCopy.insert(sub2.getPos(), sub2.toString()); in toString() 690 ruleTextCopy.insert(sub1.getPos(), sub1.toString()); in toString() 767 …sub2.doSubstitution(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 770 …sub1.doSubstitution(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 818 …sub2.doSubstitution(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 821 …sub1.doSubstitution(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 887 int sub1Pos = sub1 != null ? sub1.getPos() : ruleText.length(); in doParse() 888 int sub2Pos = sub2 != null ? sub2.getPos() : ruleText.length(); in doParse()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | NFRule.java | 678 if (ruleText.startsWith(" ") && (sub1 == null || sub1.getPos() != 0)) { in toString() 686 ruleTextCopy.insert(sub2.getPos(), sub2.toString()); in toString() 689 ruleTextCopy.insert(sub1.getPos(), sub1.toString()); in toString() 766 …sub2.doSubstitution(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 769 …sub1.doSubstitution(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 817 …sub2.doSubstitution(number, toInsertInto, pos - (sub2.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 820 …sub1.doSubstitution(number, toInsertInto, pos - (sub1.getPos() > pluralRuleStart ? lengthOffset : … in doFormat() 886 int sub1Pos = sub1 != null ? sub1.getPos() : ruleText.length(); in doParse() 887 int sub2Pos = sub2 != null ? sub2.getPos() : ruleText.length(); in doParse()
|
/external/icu/icu4c/source/i18n/ |
D | nfsubs.cpp | 874 ruleToUse->doFormat(numberToFormat, toInsertInto, _pos + getPos(), recursionCount, status); in doSubstitution() 900 ruleToUse->doFormat(numberToFormat, toInsertInto, _pos + getPos(), recursionCount, status); in doSubstitution() 1067 toInsertInto.insert(_pos + getPos(), gSpace); in doSubstitution() 1072 getRuleSet()->format(digit, toInsertInto, _pos + getPos(), recursionCount, status); in doSubstitution() 1078 getRuleSet()->format((int64_t)0, toInsertInto, _pos + getPos(), recursionCount, status); in doSubstitution() 1210 toInsertInto.insert(apos + getPos(), gSpace); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 1211 aruleSet->format((int64_t)0, toInsertInto, apos + getPos(), recursionCount, status); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 1219 aruleSet->format(longNF, toInsertInto, apos + getPos(), recursionCount, status); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 1226 aruleSet->format(numberToFormat, toInsertInto, apos + getPos(), recursionCount, status); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION() 1230 toInsertInto.insert(apos + getPos(), temp); in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
|
D | nfrule.cpp | 690 if (ruleText.charAt(0) == gSpace && (sub1 == NULL || sub1->getPos() != 0)) { in _appendRuleText() 702 ruleTextCopy.insert(sub2->getPos(), temp); in _appendRuleText() 706 ruleTextCopy.insert(sub1->getPos(), temp); in _appendRuleText() 758 …sub2->doSubstitution(number, toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset … in doFormat() 761 …sub1->doSubstitution(number, toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset … in doFormat() 812 …sub2->doSubstitution(number, toInsertInto, pos - (sub2->getPos() > pluralRuleStart ? lengthOffset … in doFormat() 815 …sub1->doSubstitution(number, toInsertInto, pos - (sub1->getPos() > pluralRuleStart ? lengthOffset … in doFormat() 901 int32_t sub1Pos = sub1 != NULL ? sub1->getPos() : ruleText.length(); in doParse() 902 int32_t sub2Pos = sub2 != NULL ? sub2->getPos() : ruleText.length(); in doParse()
|
/external/javassist/src/main/javassist/bytecode/ |
D | ClassFileWriter.java | 387 startPos = output.getPos(); in begin() 451 output.writeInt(startPos + 10, output.getPos() - startPos - 14); // code_length in codeEnd() 452 catchPos = output.getPos(); in codeEnd() 502 output.writeInt(startPos + 2, output.getPos() - startPos - 6); in end() 527 startPos = out.getPos(); in ConstPoolWriter()
|
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
D | LZMADecoder.java | 53 int posState = lz.getPos() & posMask; in decode() 150 int i = getSubcoderIndex(lz.getByte(0), lz.getPos()); in decode()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
D | EOF.java | 25 return new EOF(getLine(), getPos()); in clone()
|
D | TEq.java | 25 return new TEq(getLine(), getPos()); in clone()
|
D | TGt.java | 25 return new TGt(getLine(), getPos()); in clone()
|
D | TBracketOpen.java | 25 return new TBracketOpen(getLine(), getPos()); in clone()
|
D | TCall.java | 25 return new TCall(getLine(), getPos()); in clone()
|
D | TContentType.java | 25 return new TContentType(getLine(), getPos()); in clone()
|
D | TBracketClose.java | 25 return new TBracketClose(getLine(), getPos()); in clone()
|
D | TLvar.java | 25 return new TLvar(getLine(), getPos()); in clone()
|
D | TLinclude.java | 25 return new TLinclude(getLine(), getPos()); in clone()
|
D | TPercent.java | 25 return new TPercent(getLine(), getPos()); in clone()
|
D | TLte.java | 25 return new TLte(getLine(), getPos()); in clone()
|
D | TLt.java | 25 return new TLt(getLine(), getPos()); in clone()
|
D | TDollar.java | 25 return new TDollar(getLine(), getPos()); in clone()
|
D | TInclude.java | 25 return new TInclude(getLine(), getPos()); in clone()
|
D | TSet.java | 25 return new TSet(getLine(), getPos()); in clone()
|
D | TDef.java | 25 return new TDef(getLine(), getPos()); in clone()
|
D | TLoop.java | 25 return new TLoop(getLine(), getPos()); in clone()
|