HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 2776 - 2800 of 4804) sorted by null

<<111112113114115116117118119120>>

  /external/chromium/third_party/libjingle/source/talk/base/
httpbase.cc 92 size_t pos = *processed; local
93 while ((pos < len) && (buffer[pos] != '\n')) {
94 pos += 1;
96 if (pos >= len) {
100 size_t len = (pos - *processed);
101 *processed = pos + 1;
schanneladapter.cc 449 size_t pos = 0; local
451 while (pos < outbuf.size()) {
452 int sent = AsyncSocketAdapter::Send(&outbuf[pos], outbuf.size() - pos);
454 pos += sent;
462 if (int remainder = outbuf.size() - pos) {
463 memmove(&outbuf[0], &outbuf[pos], remainder);
  /external/chromium_org/chrome/browser/net/spdyproxy/
data_reduction_proxy_settings.cc 214 size_t pos = pattern.find("/"); local
215 if (pattern.find("/", pos + 1) == pos + 1)
216 pos = pattern.find("/", pos + 2);
219 if (pos != std::string::npos)
220 host_pattern = pattern.substr(0, pos);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 107 pos = 0
108 while pos < len(str) and str[pos].isupper():
109 pos += 1
110 if pos == 0:
112 if pos == 1:
114 if pos < len(str):
115 pos -= 1
116 possible_abbreviation = str[0:pos]
119 str = possible_abbreviation.lower() + str[pos:
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unorm_it.c 351 int32_t pos; local
394 pos=api->index+delta; /* requested position */
395 delta=pos-api->limit; /* remainder beyond buffered text */
397 api->index=pos; /* position reached */
410 pos=api->index+delta; /* requested position */
411 delta=pos-api->start; /* remainder beyond buffered text */
413 api->index=pos; /* position reached */
  /external/chromium_org/third_party/icu/source/i18n/
astro.cpp 1358 Equatorial pos; local
    [all...]
ucoleitr.cpp 371 ci->pos = ci->string;
481 if (elems->reset_ && (elems->iteratordata_.pos == elems->iteratordata_.string)) {
487 elems->iteratordata_.pos = elems->iteratordata_.endp;
524 (elems->iteratordata_.pos == elems->iteratordata_.string)) {
531 elems->iteratordata_.pos = elems->iteratordata_.endp;
722 return (int32_t)(ci->pos - ci->string);
738 ci->pos = ci->string + offset;
  /external/chromium_org/third_party/icu/source/tools/toolutil/
xmlparser.cpp 236 int32_t pos=src.indexOf((UChar)x_l)+1; local
239 while(pos<declEnd && mAttrValue.lookingAt(pos, errorCode)) { // loop runs once per attribute on this element.
253 pos = mAttrValue.end(2, errorCode);
334 fPos = 0; // TODO use just a local pos variable and pass it into functions
492 int32_t pos = mEl.end(1, status); // The position after the end of the tag name local
494 while (mAttrValue.lookingAt(pos, status)) { // loop runs once per attribute on this element.
524 pos = mAttrValue.end(2, status);
  /external/chromium_org/third_party/jinja2/
lexer.py 605 pos = 0
621 m = regex.match(source, pos)
718 elif pos2 == pos:
722 pos = pos2
728 if pos >= source_length:
732 (source[pos], pos), lineno,
  /external/chromium_org/third_party/libjingle/source/talk/base/
httpbase.cc 92 size_t pos = *processed; local
93 while ((pos < len) && (buffer[pos] != '\n')) {
94 pos += 1;
96 if (pos >= len) {
100 size_t len = (pos - *processed);
101 *processed = pos + 1;
schanneladapter.cc 446 size_t pos = 0; local
448 while (pos < outbuf.size()) {
449 int sent = AsyncSocketAdapter::Send(&outbuf[pos], outbuf.size() - pos);
451 pos += sent;
459 if (int remainder = static_cast<int>(outbuf.size() - pos)) {
460 memmove(&outbuf[0], &outbuf[pos], remainder);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp 100 bool handleInstruction(unsigned int pos);
101 bool inspectInstruction(unsigned int pos);
106 bool haveNextPhase(unsigned int pos) const;
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPathMeasure.cpp 247 SkScalar t, SkPoint* pos, SkVector* tangent) {
250 if (pos) {
251 pos->set(SkScalarInterp(pts[0].fX, pts[1].fX, t),
259 SkEvalQuadAt(pts, t, pos, tangent);
265 SkEvalCubicAt(pts, t, pos, tangent, NULL);
421 bool SkPathMeasure::getPosTan(SkScalar distance, SkPoint* pos,
444 compute_pos_tan(&fPts[seg->fPtIndex], seg->fType, t, pos, tangent);
  /external/chromium_org/ui/base/resource/
resource_bundle.cc 770 size_t pos = arraysize(kPngMagic); local
775 if (size - pos < kPngChunkMetadataSize)
778 net::ReadBigEndian(reinterpret_cast<const char*>(buf + pos), &length);
779 if (size - pos - kPngChunkMetadataSize < length)
781 if (length == 0 && memcmp(buf + pos + sizeof(uint32), kPngScaleChunkType,
785 if (memcmp(buf + pos + sizeof(uint32), kPngDataChunkType,
791 pos += length + kPngChunkMetadataSize;
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 97 pkg = new PackageInfo(name, tokenizer.pos());
166 cl = new ClassInfo(null/*classDoc*/, ""/*rawCommentText*/, tokenizer.pos(), pub, prot,
251 // pub ? "public" : "protected", tokenizer.pos(), cl);
258 new ArrayList<ClassInfo>()/*thrownExceptions*/, tokenizer.pos(),
327 new ArrayList<ClassInfo>()/*thrownExceptions*/, tokenizer.pos(),
412 trans, vol, false, Converter.obtainTypeFromString(type), "", v, tokenizer.pos(),
494 tokenizer.pos()));
549 public SourcePositionInfo pos() { method in class:ApiFile.Tokenizer
  /external/icu4c/common/
unorm_it.c 352 int32_t pos; local
395 pos=api->index+delta; /* requested position */
396 delta=pos-api->limit; /* remainder beyond buffered text */
398 api->index=pos; /* position reached */
411 pos=api->index+delta; /* requested position */
412 delta=pos-api->start; /* remainder beyond buffered text */
414 api->index=pos; /* position reached */
  /external/icu4c/i18n/
astro.cpp 1369 Equatorial pos; local
    [all...]
ucoleitr.cpp 371 ci->pos = ci->string;
481 if (elems->reset_ && (elems->iteratordata_.pos == elems->iteratordata_.string)) {
487 elems->iteratordata_.pos = elems->iteratordata_.endp;
524 (elems->iteratordata_.pos == elems->iteratordata_.string)) {
531 elems->iteratordata_.pos = elems->iteratordata_.endp;
722 return (int32_t)(ci->pos - ci->string);
738 ci->pos = ci->string + offset;
  /external/icu4c/tools/toolutil/
xmlparser.cpp 236 int32_t pos=src.indexOf((UChar)x_l)+1; local
239 while(pos<declEnd && mAttrValue.lookingAt(pos, errorCode)) { // loop runs once per attribute on this element.
253 pos = mAttrValue.end(2, errorCode);
334 fPos = 0; // TODO use just a local pos variable and pass it into functions
492 int32_t pos = mEl.end(1, status); // The position after the end of the tag name local
494 while (mAttrValue.lookingAt(pos, status)) { // loop runs once per attribute on this element.
524 pos = mAttrValue.end(2, status);
  /external/iptables/libiptc/
libip4tc.c 159 int pos = *(const int *)data; local
160 if (pos < 0)
162 pos == -NF_ACCEPT-1 ? "NF_ACCEPT"
163 : pos == -NF_DROP-1 ? "NF_DROP"
164 : pos == -NF_QUEUE-1 ? "NF_QUEUE"
165 : pos == RETURN ? "RETURN"
168 printf("verdict=%u\n", pos);
  /external/libppp/src/
hdlc.c 124 u_char *pos, *end; local
127 pos = MBUF_CTOP(m);
128 end = pos + m->m_len;
130 fcs = (fcs >> 8) ^ fcstab[(fcs ^ *pos++) & 0xff];
131 if (pos == end && len) {
133 pos = MBUF_CTOP(m);
134 end = pos + m->m_len;
  /external/marisa-trie/tests/
unit-test.cc 288 ASSERT(range.pos() == 0);
296 ASSERT(range.pos() == 3);
302 ASSERT(wrange.range().pos() == 0);
306 ASSERT(wrange.pos() == 0);
313 ASSERT(wrange.range().pos() == 3);
317 ASSERT(wrange.pos() == 3);
327 ASSERT(wrange.pos() == 7);
  /external/marisa-trie/v0_1_5/tests/
unit-test.cc 292 ASSERT(range.pos() == 0);
300 ASSERT(range.pos() == 3);
306 ASSERT(wrange.range().pos() == 0);
310 ASSERT(wrange.pos() == 0);
317 ASSERT(wrange.range().pos() == 3);
321 ASSERT(wrange.pos() == 3);
331 ASSERT(wrange.pos() == 7);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_sm4.cpp 100 bool handleInstruction(unsigned int pos);
101 bool inspectInstruction(unsigned int pos);
106 bool haveNextPhase(unsigned int pos) const;
    [all...]
  /external/skia/src/core/
SkPathMeasure.cpp 247 SkScalar t, SkPoint* pos, SkVector* tangent) {
250 if (pos) {
251 pos->set(SkScalarInterp(pts[0].fX, pts[1].fX, t),
259 SkEvalQuadAt(pts, t, pos, tangent);
265 SkEvalCubicAt(pts, t, pos, tangent, NULL);
421 bool SkPathMeasure::getPosTan(SkScalar distance, SkPoint* pos,
444 compute_pos_tan(&fPts[seg->fPtIndex], seg->fType, t, pos, tangent);

Completed in 2049 milliseconds

<<111112113114115116117118119120>>