Searched refs:curElement (Results 1 – 4 of 4) sorted by relevance
129 var curElement = this.element;131 curElement = curElement.nextSibling;132 } while (curElement && !curElement._section);134 return curElement ? curElement._section : null;139 var curElement = this.element;141 curElement = curElement.previousSibling;142 } while (curElement && !curElement._section);144 return curElement ? curElement._section : null;
279 var curElement = this;281 while (curWindow && curElement) {282 elementOffset.x += curElement.totalOffsetLeft;283 elementOffset.y += curElement.totalOffsetTop;287 curElement = curWindow.frameElement;
1231 char* curElement = strtok((char*)value, ",:"); in writeExifTagAndData() local1235 for (i = 0; ((i < components) || (components == -1)) && curElement != NULL; i++) { in writeExifTagAndData()1237 printf("processing component %s format %s", curElement, formatStr(format)); in writeExifTagAndData()1243 char* separator = strchr(curElement, '/'); in writeExifTagAndData()1245 numerator = atoi(curElement); in writeExifTagAndData()1248 double value = atof(curElement); in writeExifTagAndData()1257 char* separator = strchr(curElement, '/'); in writeExifTagAndData()1259 numerator = atoi(curElement); in writeExifTagAndData()1262 double value = atof(curElement); in writeExifTagAndData()1270 value = atoi(curElement); in writeExifTagAndData()[all …]
270 String curElement = elementStack.peek(); in startElement() local271 if (!curElement.equals("node") && !curElement.equals("nodes")){ in startElement()