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

1 2 3 4

  /external/webkit/WebCore/rendering/
RenderSVGInlineText.cpp 90 // Now calculate startPos and endPos for painting selection.
91 // We include a selection while endPos > 0
92 int startPos, endPos;
96 endPos = textLength();
98 selectionStartEnd(startPos, endPos);
100 endPos = textLength();
105 if (startPos == endPos)
108 return computeRepaintRectForRange(repaintContainer, startPos, endPos);
111 IntRect RenderSVGInlineText::computeRepaintRectForRange(RenderBoxModelObject* repaintContainer, int startPos, int endPos)
113 FloatQuad repaintQuad = computeRepaintQuadForRange(repaintContainer, startPos, endPos);
    [all...]
RenderSVGInlineText.h 55 IntRect computeRepaintRectForRange(RenderBoxModelObject* repaintContainer, int startPos, int endPos);
56 FloatQuad computeRepaintQuadForRange(RenderBoxModelObject* repaintContainer, int startPos, int endPos);
SVGInlineTextBox.cpp 307 IntRect SVGInlineTextBox::selectionRect(int, int, int startPos, int endPos)
309 if (startPos >= endPos)
312 // TODO: Actually respect startPos/endPos - we're returning the _full_ selectionRect
487 int startPos, endPos;
488 selectionStartEnd(startPos, endPos);
490 if (startPos >= endPos)
505 if ((startPos > boxStartOffset && endPos > boxStartOffset + length) || boxStartOffset >= endPos)
508 if (endPos > boxStartOffset + length)
509 endPos = boxStartOffset + length
    [all...]
InlineTextBox.h 72 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
73 bool isSelected(int startPos, int endPos) const;
126 void paintCompositionBackground(GraphicsContext*, int tx, int ty, RenderStyle*, const Font&, int startPos, int endPos);
InlineTextBox.cpp 56 bool InlineTextBox::isSelected(int startPos, int endPos) const
59 int ePos = min(endPos - m_start, (int)m_len);
67 int startPos, endPos;
68 renderer()->selectionStartEnd(startPos, endPos);
73 bool end = (state != RenderObject::SelectionStart && endPos > m_start && endPos <= lastSelectable);
81 (state == RenderObject::SelectionStart || endPos > lastSelectable))
106 IntRect InlineTextBox::selectionRect(int tx, int ty, int startPos, int endPos)
109 int ePos = min(endPos - m_start, (int)m_len);
556 int startPos, endPos;
    [all...]
SVGInlineTextBox.h 65 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
RenderText.cpp 803 int startPos, endPos;
804 selectionStartEnd(startPos, endPos);
806 endPos = textLength();
809 if (startPos != 0 && startPos == endPos)
810 startPos = endPos - 1;
815 if (box->isSelected(startPos, endPos)) {
    [all...]
  /external/webkit/WebCore/platform/network/
HTTPParsers.cpp 214 int endpos = pos; local
215 while (pos != length && mediaType[endpos] > ' ' && mediaType[endpos] != '"' && mediaType[endpos] != '\'' && mediaType[endpos] != ';')
216 ++endpos;
218 return mediaType.substring(pos, endpos-pos);
  /external/v8/tools/
csvparser.js 64 var endPos = line.length;
66 if (endPos > 0) {
80 } while (pos <= endPos);
  /external/quake/quake/src/WinQuake/
cl_tent.cpp 120 vec3_t endpos; local
275 endpos[0] = MSG_ReadCoord ();
276 endpos[1] = MSG_ReadCoord ();
277 endpos[2] = MSG_ReadCoord ();
279 S_StartSound (-1, 1, cl_sfx_r_exp3, endpos, 1, 1);
280 R_RocketTrail (pos, endpos, 0+128);
281 R_ParticleExplosion (endpos);
283 VectorCopy (endpos, dl->origin);
sv_move.cpp 78 mid = bottom = trace.endpos[2];
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom)
90 bottom = trace.endpos[2];
91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE)
142 if ( ((int)ent->u.v.flags & FL_SWIM) && SV_PointContents(trace.endpos) == CONTENTS_EMPTY )
145 VectorCopy (trace.endpos, ent->u.v.origin);
192 VectorCopy (trace.endpos, ent->u.v.origin);
chase.cpp 57 VectorCopy (trace.endpos, impact);
world.h 34 vec3_t endpos; // final position member in struct:__anon5545
  /external/webkit/WebCore/plugins/win/
PluginDatabaseWin.cpp 176 unsigned endPos;
179 for (endPos = startPos; endPos < versionString.length(); ++endPos)
180 if (versionString[endPos] == '.' || versionString[endPos] == '_')
183 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
186 startPos = endPos + 1;
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 183 int endPos = path.lastIndexOf('/');
184 path = path.substring(0, endPos);
185 endPos = path.lastIndexOf('/');
186 return path.substring(endPos + 1);
  /external/srec/portable/src/
pstream.c 306 PortFile->endPos = PortFile->curPos + end;
308 /* set the PortFile->endPos */
322 PortFile->endPos = curFrame->buffer + end;
401 if (PortFile->endPos == PortFile->curPos) /* end of file */
412 cbAvail = PortFile->endPos - PortFile->curPos;
424 if (PortFile->curPos == PortFile->endPos)
478 PortFile->curPos = PortFile->endPos = nextFrame->buffer;
499 if (curFrame == PortFile->endFrame && PortFile->endPos < PortFile->curPos)
500 PortFile->endPos = PortFile->curPos;
527 PortFile->curPos = PortFile->endPos;
    [all...]
  /external/icu4c/common/
brkeng.h 67 * @param endPos The end of the run within the supplied text.
76 int32_t endPos,
192 * @param endPos The end of the run within the supplied text.
201 int32_t endPos,
  /external/quake/quake/src/QW/client/
pmove.h 33 vec3_t endpos; // final position member in struct:__anon5047
pmovetst.c 293 VectorCopy (mid, trace->endpos);
303 VectorCopy (mid, trace->endpos);
364 VectorCopy (end, total.endpos);
390 VectorCopy (end, trace.endpos);
404 VectorAdd (trace.endpos, offset, trace.endpos);
  /external/quake/quake/src/QW/server/
sv_move.c 78 mid = bottom = trace.endpos[2];
89 if (trace.fraction != 1.0 && trace.endpos[2] > bottom)
90 bottom = trace.endpos[2];
91 if (trace.fraction == 1.0 || mid - trace.endpos[2] > STEPSIZE)
142 if ( ((int)ent->v.flags & FL_SWIM) && SV_PointContents(trace.endpos) == CONTENTS_EMPTY )
145 VectorCopy (trace.endpos, ent->v.origin);
192 VectorCopy (trace.endpos, ent->v.origin);
world.h 34 vec3_t endpos; // final position member in struct:__anon5222
  /external/webkit/WebCore/platform/text/
String.cpp 615 int endPos;
616 while ((endPos = find(separator, startPos)) != -1) {
617 if (allowEmptyEntries || startPos != endPos)
618 result.append(substring(startPos, endPos - startPos));
619 startPos = endPos + separator.length();
635 int endPos;
636 while ((endPos = find(separator, startPos)) != -1) {
637 if (allowEmptyEntries || startPos != endPos)
638 result.append(substring(startPos, endPos - startPos));
639 startPos = endPos + 1
    [all...]
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 136 int endPos = path.length();
138 endPos -= 1;
147 String folder(path.substring(0, endPos));
  /external/grub/stage2/
fsys_jfs.c 233 int toread, startpos, endpos; local
236 endpos = filepos + len;
244 toread = (endofcur >= endpos)
256 toread = ((offset << jfs.l2bsize) >= endpos)
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
tncs.c 916 char *endpos; local
927 endpos = end;
931 *endpos = '<';
939 *endpos = '<';
962 char *xml, *xmlend, *endpos; local
972 endpos = end;
976 *endpos = '<';
992 *endpos = '<';
1001 *endpos = '<';

Completed in 237 milliseconds

1 2 3 4