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

  /libcore/luni/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...]
  /libcore/luni/src/main/java/java/math/
Conversion.java 250 int insertPoint = currentChar + exponent;
251 for (int j = resLengthInChars - 1; j >= insertPoint; j--) {
254 result[++insertPoint] = '.';
352 int insertPoint = currentChar + (int) exponent ;
353 for(int j=resLengthInChars-1; j>=insertPoint; j--) {
356 result[++insertPoint]='.';
  /frameworks/base/services/java/com/android/server/
PackageManagerService.java     [all...]

Completed in 851 milliseconds