HomeSort by relevance Sort by last modified time
    Searched full:currentoffset (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCollection.cpp 324 inline Element* traverseMatchingElementsForwardToOffset(const NodeListType* nodeList, unsigned offset, Element& currentElement, unsigned& currentOffset, ContainerNode* root)
326 ASSERT(currentOffset < offset);
329 if (++currentOffset == offset)
336 inline Node* LiveNodeListBase::traverseChildNodeListForwardToOffset(unsigned offset, Node* currentNode, unsigned& currentOffset) const
339 ASSERT(currentOffset < offset);
341 if (++currentOffset == offset)
360 inline Element* LiveNodeListBase::traverseLiveNodeListForwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset, ContainerNode* root) const
365 return traverseMatchingElementsForwardToOffset(static_cast<const HTMLTagNodeList*>(this), offset, currentElement, currentOffset, root);
367 return traverseMatchingElementsForwardToOffset(static_cast<const ClassNodeList*>(this), offset, currentElement, currentOffset, root);
368 return traverseMatchingElementsForwardToOffset(static_cast<const LiveNodeList*>(this), offset, currentElement, currentOffset, root)
    [all...]
HTMLCollection.h 65 Element* traverseForwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset, unsigned& offsetInArray, ContainerNode* root) const;
  /external/replicaisland/src/com/replica/replicaisland/
ConversationDialogActivity.java 97 int currentOffset = 0;
107 int fittingChars = paint.breakText(text, currentOffset, textLength, true, maxWidth, null);
109 if (currentOffset + fittingChars < textLength) {
112 int lastSpace = TextUtils.lastIndexOf(text, ' ', currentOffset + fittingChars - 1);
115 lastSpace = currentOffset + fittingChars - 1;
119 currentOffset = lastSpace + 1;
122 currentOffset = textLength;
125 if (lineCount >= maxLinesPerPage || currentOffset >= textLength) {
129 currentPage.text = spannedText.subSequence(lastPageStart, currentOffset);
134 newPage.text = spannedText.subSequence(lastPageStart, currentOffset);
    [all...]
  /external/chromium/chrome/browser/resources/
playlist.html 77 var currentOffset = -1;
134 if (currentOffset == x) {
144 currentOffset = info.currentOffset;
slideshow.html 177 if (info.currentOffset) {
178 currentFileOffset = info.currentOffset;
mediaplayer.html 832 if (info.currentOffset) {
833 currentItem = info.currentOffset;
  /hardware/qcom/display/msm8960/libgralloc/
fb_priv.h 54 uint32_t currentOffset;
  /hardware/qcom/display/msm8974/libgralloc/
fb_priv.h 54 uint32_t currentOffset;
  /hardware/qcom/display/msm8x26/libgralloc/
fb_priv.h 54 uint32_t currentOffset;
  /external/chromium_org/third_party/icu/source/common/
ucnvscsu.c     [all...]
  /external/icu4c/common/
ucnvscsu.c     [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
SampleList.java 140 long currentOffset = 0;
146 long contentOffset = currentOffset + ((MediaDataBox) b).getHeader().limit();
154 currentOffset += currentSize;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 312 int currentOffset = 0;
313 for (Node* node = anchorNode->firstChild(); node && currentOffset < offset; node = node->nextSibling())
314 currentOffset++;
317 return offset < currentOffset;
LiveNodeList.h 139 Node* traverseChildNodeListForwardToOffset(unsigned offset, Node* currentNode, unsigned& currentOffset) const;
141 Element* traverseLiveNodeListForwardToOffset(unsigned offset, Element& currentElement, unsigned& currentOffset, ContainerNode* root) const;
  /external/chromium_org/third_party/zlib/contrib/minizip/
mztools.c 50 int currentOffset = offset;
158 WRITE_32(header + 42, currentOffset);
  /external/zlib/src/contrib/minizip/
mztools.c 50 int currentOffset = offset;
168 WRITE_32(header + 42, currentOffset);
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 77 uint64_t CurrentOffset = InitialOffset + OS.tell();
78 uint64_t AlignedOffset = RoundUpToAlignment(CurrentOffset, Align);
79 for (; CurrentOffset != AlignedOffset; ++CurrentOffset)
81 return AlignedOffset; // == CurrentOffset;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDefItem.java 244 private int currentOffset;
256 currentOffset = offset;
281 return currentOffset;
304 currentOffset = classDefItem.placeAt(currentOffset, currentIndex++);
  /libcore/luni/src/test/java/libcore/java/util/
TimeZoneTest.java 131 int currentOffset = tz.getOffset(new Date(0).getTime());
132 assertEquals(currentOffset, tz.getOffset(new Date(Integer.MIN_VALUE).getTime()));
133 assertEquals(currentOffset, tz.getOffset(new Date(Integer.MAX_VALUE).getTime()));
  /frameworks/base/core/java/android/util/
TimeUtils.java 72 int currentOffset = current.getOffset(when);
81 if (currentOffset == offset && currentDst == dst) {
  /external/chromium/chrome/browser/ui/webui/
slideshow_ui.cc 37 static const char kPropertyOffset[] = "currentOffset";
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp 778 FloatPoint& currentOffset = offsets[i];
780 float glyphAdvanceX = advances[i] + nextOffset.x() - currentOffset.x();
781 float glyphAdvanceY = nextOffset.y() - currentOffset.y();
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
utf16tst.c 612 log_err("ERROR: UTF16_APPEND_CHAR_UNSAFE failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
628 log_err("ERROR: UTF16_APPEND_CHAR_SAFE failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
utf8tst.c 745 log_err("ERROR: UTF8_APPEND_CHAR_UNSAFE failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
759 log_err("ERROR: UTF8_APPEND_CHAR_SAFE failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
780 log_err("ERROR: utf8_appendCharSafeBody() failed to move the offset correctly for count=%d.\nExpectedOffset=%d currentOffset=%d\n",
    [all...]
  /external/icu4c/test/cintltst/
utf8tst.c     [all...]

Completed in 6032 milliseconds

1 2