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

1 2 3 4 5

  /external/webrtc/src/common_audio/signal_processing/
downsample_fast.c 31 WebRtc_Word16 endpos = delay local
34 if (in_length < endpos)
39 for (i = delay; i < endpos; i += factor)
  /frameworks/wilhelm/src/itf/
ISeek.c 52 SLmillisecond startPos, SLmillisecond endPos)
56 if (!(startPos < endPos)) {
62 if ((startPos != 0) && (endPos != SL_TIME_UNKNOWN)) {
98 thiz->mEndPos = endPos;
120 SLmillisecond endPos = thiz->mEndPos;
124 *pEndPos = endPos;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ResizableIntArray.java 127 final int endPos = startPos + length;
128 ensureCapacity(endPos);
129 Arrays.fill(mArray, startPos, endPos, value);
130 if (mLength < endPos) {
131 mLength = endPos;
  /external/v8/tools/
csvparser.js 59 var endPos = line.length;
61 if (endPos > 0) {
75 } 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);
  /external/webkit/Source/WebCore/plugins/win/
PluginDatabaseWin.cpp 174 unsigned endPos;
177 for (endPos = startPos; endPos < versionString.length(); ++endPos)
178 if (versionString[endPos] == '.' || versionString[endPos] == '_')
181 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
184 startPos = endPos + 1;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/win/
PluginInfoStoreWin.cpp 43 unsigned endPos;
46 for (endPos = startPos; endPos < versionString.length(); ++endPos)
47 if (versionString[endPos] == '.' || versionString[endPos] == '_')
50 int versionComponent = versionString.substring(startPos, endPos - startPos).toInt();
53 startPos = endPos + 1;
  /external/protobuf/src/google/protobuf/io/
printer.cc 88 int endpos = end - text; local
90 string varname(text + pos, endpos - pos);
105 i = endpos;
106 pos = endpos + 1;
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 199 int endPos = path.lastIndexOf('/');
200 path = path.substring(0, endPos);
201 endPos = path.lastIndexOf('/');
202 return path.substring(endPos + 1);
  /external/webkit/Source/WebCore/platform/network/
HTTPParsers.cpp 273 unsigned endpos = pos; local
274 while (pos != length && mediaType[endpos] > ' ' && mediaType[endpos] != '"' && mediaType[endpos] != '\'' && mediaType[endpos] != ';')
275 ++endpos;
278 charsetLen = endpos - pos;
  /external/webkit/Source/WebCore/platform/brew/
FileSystemBrew.cpp 126 int endPos = canonPath.length();
127 if (lastDivPos == endPos - 1)
139 int endPos = path.length();
141 endPos -= 1;
150 String folder(path.substring(0, endPos));
  /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/clang/lib/Lex/
PPLexerChange.cpp 319 const char *EndPos = CurLexer->BufferEnd;
320 if (EndPos != CurLexer->BufferStart &&
321 (EndPos[-1] == '\n' || EndPos[-1] == '\r')) {
322 --EndPos;
325 if (EndPos != CurLexer->BufferStart &&
326 (EndPos[-1] == '\n' || EndPos[-1] == '\r') &&
327 EndPos[-1] != EndPos[0]
    [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:__anon14200
  /external/webkit/Source/WebCore/platform/wince/
FileSystemWinCE.cpp 150 unsigned endPos = path.length();
151 if (lastDivPos == endPos - 1) {
152 --endPos;
161 String folder(path.substring(0, endPos));
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 136 int k, n, endpos, start; local
155 endpos=PITCH_WLPCBUFLEN + PITCH_SUBFRAME_LEN;
160 start=endpos-PITCH_WLPCWINLEN;
176 endpos+=PITCH_SUBFRAME_LEN;
  /libcore/luni/src/test/java/libcore/java/util/
OldTreeSetTest.java 183 final int endPos = 3 * objArray.length / 4;
184 SortedSet aSubSet = ts.subSet(objArray[startPos], objArray[endPos]);
186 aSubSet.size() == (endPos - startPos));
187 for (int counter = startPos; counter < endPos; counter++)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 103 private boolean fitInWidth(final int startPos, final int endPos, final int width) {
104 for (int pos = startPos; pos < endPos; pos++) {
111 private int calcurateMaxRowWidth(final int startPos, final int endPos) {
117 while (pos < endPos && mRowNumbers[pos] == row) {
  /external/chromium-trace/trace-viewer/src/importer/v8/
log_reader.js 39 var endPos = line.length;
41 if (endPos > 0) {
55 } while (pos <= endPos);
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.h 100 virtual IntRect selectionRect(int absx, int absy, int startPos, int endPos);
101 bool isSelected(int startPos, int endPos) const;
160 void paintCompositionBackground(GraphicsContext*, const FloatPoint& boxOrigin, RenderStyle*, const Font&, int startPos, int endPos);
RenderText.cpp 358 static IntRect ellipsisRectForBox(InlineTextBox* box, unsigned startPos, unsigned endPos)
370 int ellipsisEndPosition = min<int>(endPos - box->start(), box->len());
    [all...]
  /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);
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 607 size_t endPos;
608 while ((endPos = find(separator, startPos)) != notFound) {
609 if (allowEmptyEntries || startPos != endPos)
610 result.append(substring(startPos, endPos - startPos));
611 startPos = endPos + separator.length();
627 size_t endPos;
628 while ((endPos = find(separator, startPos)) != notFound) {
629 if (allowEmptyEntries || startPos != endPos)
630 result.append(substring(startPos, endPos - startPos));
631 startPos = endPos + 1
    [all...]

Completed in 827 milliseconds

1 2 3 4 5