HomeSort by relevance Sort by last modified time
    Searched refs:insertPoint (Results 1 - 2 of 2) sorted by null

  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
TemplateList.java 237 TemplateSubPatternAssociation insertPoint = head;
239 boolean insertBefore; // true means insert before insertPoint; otherwise after
240 // This can only be true if insertPoint is pointing to
243 // Spin down so that insertPoint points to:
251 // we always insert after the insertPoint.
255 next = insertPoint.getNext();
264 insertPoint = next;
268 insertPoint = next;
272 insertPoint = next;
276 if ( (null == next) || (insertPoint == head) ) // insert point is first or las
    [all...]
  /dalvik/libcore/math/src/main/java/java/math/
Conversion.java 254 int insertPoint = currentChar + exponent;
255 for (int j = resLengthInChars - 1; j >= insertPoint; j--) {
258 result[++insertPoint] = '.';
356 int insertPoint = currentChar + (int) exponent ;
357 for(int j=resLengthInChars-1; j>=insertPoint; j--) {
360 result[++insertPoint]='.';

Completed in 141 milliseconds