Lines Matching refs:depth

253     /** Markup depth. */
1055 //storing elemnetPointer for particular element depth
1066 //store pointer information only when element depth is less MAX_DEPTH_LIMIT
1090 void resetPointer(short depth, short column){
1091 fPointerInfo[depth] [column] = (short)0;
1096 short depth = (short) fElementStack.fDepth ;
1098 //Stores element pointer locations at particular depth , only 4 pointer locations
1099 //are stored at particular depth for now.
1102 if(canStore(depth, i)){
1103 fPointerInfo[depth][i] = elementPointer ;
1120 boolean canStore(short depth, short column){
1121 //colum = 0 , means first element at particular depth
1122 //column = 1, means second element at particular depth
1124 return fPointerInfo[depth][column] == 0 ? true : false ;
1128 short getElementPointer(short depth, short column){
1129 //colum = 0 , means first element at particular depth
1130 //column = 1, means second element at particular depth
1132 return fPointerInfo[depth][column] ;
1185 //depth and get us the pointer location.
1192 short depth = (short)fElementStack.fDepth ;
1194 if(depth > MAX_DEPTH_LIMIT){
1198 short pointer = getElementPointer(depth , i ) ;
1207 System.out.println("Element " + fElementRawname + " was SKIPPED at depth = " + fElementStack.fDepth + " column = " + column );
1332 //decrease the markup depth..
1727 * @return The element depth.
1759 //we have increased the depth for two markup "<" characters
2092 //Element depth
2145 //last depth is the depth when last elemnt was pushed
2146 //if last depth is greater than current depth
2159 //decrease the depth by 1 as arrays are 0 based
2178 //store the last depth
2184 * This function doesn't increase depth. The function in this function is
2220 /** returns the current depth
2255 //Element depth
2319 //store the position of last opened tag at particular depth
2329 * 1. Increase the depth - because element was sucessfully skipped.
2330 *2. Store the position of the element token in array "last opened tag" at depth.
2344 //last depth is the depth when last elemnt was pushed
2345 //if last depth is greater than current depth
2360 //decrease the depth by 1 as arrays are 0 based
2381 //store the position for the current depth
2390 System.out.println("At depth = " + fDepth + "array position is = " + (fCount - 1));
2418 //store the last depth
2469 System.out.println("Retrieveing element at depth = " + fDepth + " is " + fElements[fDepth].rawname );
2476 /** Reposition the stack. fInt [] contains all the opened tags at particular depth.
2477 * Transfer all the opened tags starting from depth '2' to the current depth and reposition them
2478 *as per the depth.
2803 //increase the mark up depth
2949 //if element depth is zero , it indicates the end of the document
3163 * Element depth iz zero. This methos is a hook for subclasses
3164 * to add code to handle when the element depth hits zero. When
3165 * scanning a document fragment, an element depth of zero is
3200 * a document fragment is OK if the markup depth is zero.