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

<<21222324252627282930>>

  /external/apache-http/src/org/apache/http/impl/io/
ChunkedInputStream.java 82 private int pos; field in class:ChunkedInputStream
101 this.pos = 0;
124 if (this.pos >= this.chunkSize) {
130 pos++;
154 if (pos >= chunkSize) {
160 len = Math.min(len, chunkSize - pos);
162 pos += count;
188 pos = 0;
  /external/chromium_org/base/debug/
proc_maps_linux.cc 27 // Scans |proc_maps| starting from |pos| returning true if the gate VMA was
29 static bool ContainsGateVMA(std::string* proc_maps, size_t pos) {
32 return proc_maps->find(" [vectors]\n", pos) != std::string::npos;
35 return proc_maps->find(" [vsyscall]\n", pos) != std::string::npos;
59 size_t pos = proc_maps->size(); local
60 proc_maps->resize(pos + kReadSize);
61 void* buffer = &(*proc_maps)[pos];
71 proc_maps->resize(pos + bytes_read);
84 if (ContainsGateVMA(proc_maps, pos))
  /external/chromium_org/base/i18n/
break_iterator.cc 61 int32_t pos; local
68 pos = ubrk_next(static_cast<UBreakIterator*>(iter_));
69 if (pos == UBRK_DONE) {
73 pos_ = static_cast<size_t>(pos);
77 pos = ubrk_next(static_cast<UBreakIterator*>(iter_));
78 if (pos == UBRK_DONE)
80 pos_ = static_cast<size_t>(pos);
83 if (pos == UBRK_DONE && prev_ == pos_) {
  /external/chromium_org/native_client_sdk/src/tools/
fix_deps.py 44 pos = line.find(' ')
45 while pos > 0 and line[pos-1] == '\\':
46 pos = line.find(' ', pos+1)
48 if pos == -1:
51 filenames.append(line[:pos])
52 line = line[pos+1:]
  /external/chromium_org/third_party/icu/source/i18n/
currfmt.h 73 FieldPosition& pos,
81 ParsePosition& pos) const;
  /external/chromium_org/third_party/skia/src/core/
SkBuffer.cpp 31 size_t pos = this->pos(); local
32 size_t n = SkAlign4(pos) - pos;
62 size_t pos = this->pos(); local
63 size_t n = SkAlign4(pos) - pos;
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chrome011010.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
26 pos: position of browser window
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
chrome01970.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
26 pos: position of browser window
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
  /external/chromium_org/ui/gfx/
selection_model.h 87 void set_selection_start(size_t pos) { selection_.set_start(pos); }
  /external/harfbuzz_ng/src/
hb-buffer-deserialize-json.rl 40 memset (&pos , 0, sizeof (pos ));
47 buffer->pos[buffer->len - 1] = pos;
64 action parse_x_offset { if (!parse_int (tok, p, &pos.x_offset )) return false; }
65 action parse_y_offset { if (!parse_int (tok, p, &pos.y_offset )) return false; }
66 action parse_x_advance { if (!parse_int (tok, p, &pos.x_advance)) return false; }
67 action parse_y_advance { if (!parse_int (tok, p, &pos.y_advance)) return false; }
121 hb_glyph_position_t pos;
hb-buffer-deserialize-text.rl 40 memset (&pos , 0, sizeof (pos ));
47 buffer->pos[buffer->len - 1] = pos;
63 action parse_x_offset { if (!parse_int (tok, p, &pos.x_offset )) return false; }
64 action parse_y_offset { if (!parse_int (tok, p, &pos.y_offset )) return false; }
65 action parse_x_advance { if (!parse_int (tok, p, &pos.x_advance)) return false; }
66 action parse_y_advance { if (!parse_int (tok, p, &pos.y_advance)) return false; }
115 hb_glyph_position_t pos;
  /external/icu4c/i18n/
currfmt.h 73 FieldPosition& pos,
81 ParsePosition& pos) const;
  /external/icu4c/samples/msgfmt/answers/
main_2.cpp 25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
main_3.cpp 25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
  /external/icu4c/samples/msgfmt/
main.cpp 25 FieldPosition pos; local
37 msg.format(msgArgs, 2, str, pos, status);
  /external/javassist/src/main/javassist/expr/
Cast.java 30 protected Cast(int pos, CodeIterator i, CtClass declaring, MethodInfo m) {
31 super(pos, i, declaring, m);
65 int pos = currentPos; local
66 int index = iterator.u16bitAt(pos + 1);
92 int pos = currentPos; local
93 int index = iterator.u16bitAt(pos + 1);
116 jc.recordLocalVariables(ca, pos);
124 replace0(pos, bytecode, 3);
ConstructorCall.java 35 protected ConstructorCall(int pos, CodeIterator i, CtClass decl, MethodInfo m) {
36 super(pos, i, decl, m);
Instanceof.java 30 protected Instanceof(int pos, CodeIterator i, CtClass declaring,
32 super(pos, i, declaring, m);
68 int pos = currentPos; local
69 int index = iterator.u16bitAt(pos + 1);
95 int pos = currentPos; local
96 int index = iterator.u16bitAt(pos + 1);
122 jc.recordLocalVariables(ca, pos);
130 replace0(pos, bytecode, 3);
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestDebugShapes.java 63 public void putArrow(Vector3f pos, Vector3f dir, ColorRGBA color){
66 putShape(arrow, color).setLocalTranslation(pos);
69 public void putBox(Vector3f pos, float size, ColorRGBA color){
70 putShape(new WireBox(size, size, size), color).setLocalTranslation(pos);
73 public void putGrid(Vector3f pos, ColorRGBA color){
74 putShape(new Grid(6, 6, 0.2f), color).center().move(pos);
77 public void putSphere(Vector3f pos, ColorRGBA color){
78 putShape(new WireSphere(1), color).setLocalTranslation(pos);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
TAlt.java 15 public TAlt(int line, int pos)
19 setPos(pos);
TAnd.java 15 public TAnd(int line, int pos)
19 setPos(pos);
TArgWhitespace.java 15 public TArgWhitespace(String text, int line, int pos)
19 setPos(pos);
TAssignment.java 15 public TAssignment(int line, int pos)
19 setPos(pos);
TAutoescape.java 15 public TAutoescape(int line, int pos)
19 setPos(pos);
TBang.java 15 public TBang(int line, int pos)
19 setPos(pos);

Completed in 1401 milliseconds

<<21222324252627282930>>