/external/chromium_org/mojo/system/ |
local_data_pipe.cc | 77 size_t next_index = (buffer_first_element_index_ + 80 *buffer = buffer_.get() + next_index * element_size(); 208 size_t next_index = buffer_first_element_index_ + local 210 if (next_index >= capacity_num_elements()) { 211 next_index %= capacity_num_elements(); 212 DCHECK_GE(buffer_first_element_index_, next_index); 213 return buffer_first_element_index_ - next_index; 215 return capacity_num_elements() - next_index;
|
/external/proguard/src/proguard/wtk/ |
ProGuardObfuscator.java | 122 int next_index = classPathString.indexOf(separator, index); local 123 if (next_index < 0) 125 next_index = classPathString.length(); 130 new ClassPathEntry(new File(classPathString.substring(index, next_index)), 136 index = next_index + 1;
|
/external/chromium_org/net/disk_cache/flash/ |
log_store.cc | 170 int32 next_index = (write_index_ + 1) % num_segments_; local 172 while (InUse(next_index)) { 173 next_index = (next_index + 1) % num_segments_; 174 DCHECK_NE(next_index, write_index_); 176 return next_index;
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
tokens_test.py | 37 next_index = i + 1 42 if next_index < len(neighbor_tokens): 43 neighbor_tokens[i].next = neighbor_tokens[next_index]
|
/external/chromium_org/third_party/closure_linter/closure_linter/common/ |
tokens_test.py | 37 next_index = i + 1 42 if next_index < len(neighbor_tokens): 43 neighbor_tokens[i].next = neighbor_tokens[next_index]
|
/external/chromium_org/v8/src/ |
heap-snapshot-generator-inl.h | 54 int next_index = index + children_count_; local 56 return next_index;
|
/system/core/include/utils/ |
Unicode.h | 99 * is unsigned. Then, if "next_index" is not NULL, the next index to be used is 100 * stored in "next_index". "next_index" can be NULL. 102 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index);
|
String8.h | 95 size_t *next_index) const;
|
/external/chromium_org/net/http/ |
http_network_transaction_ssl_unittest.cc | 149 EXPECT_EQ(3u, mock_data.next_index());
|
/cts/tools/dasm/src/java_cup/ |
terminal.java | 40 _index = next_index++; 98 protected static int next_index = 0; field in class:terminal
|
non_terminal.java | 40 _index = next_index++; 82 protected static int next_index = 0; field in class:non_terminal
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
radeonsi_pipe.c | 95 if ((rscreen->fences.next_index + 1) >= 1024) { 100 index = rscreen->fences.next_index++; 709 rscreen->fences.next_index = 0;
|
radeonsi_pipe.h | 56 unsigned next_index; member in struct:r600_pipe_fences
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
radeonsi_pipe.c | 95 if ((rscreen->fences.next_index + 1) >= 1024) { 100 index = rscreen->fences.next_index++; 709 rscreen->fences.next_index = 0;
|
radeonsi_pipe.h | 56 unsigned next_index; member in struct:r600_pipe_fences
|
/system/core/libutils/ |
Unicode.cpp | 159 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index) 165 if (next_index == NULL) { 166 next_index = &dummy_index; 171 *next_index = index + num_read;
|
String8.cpp | 455 int32_t String8::getUtf32At(size_t index, size_t *next_index) const 457 return utf32_from_utf8_at(mString, length(), index, next_index);
|
/sdk/emulator/qtools/ |
trace_reader.cpp | 832 int next_index = 0; local 835 symbols[next_index].addr = sym->sym.addr; 836 symbols[next_index].len = sym->sym.len; 837 symbols[next_index].name = sym->sym.name; 838 next_index += 1; [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_url_provider.cc | 747 size_t next_index = source_index + 1; // return value = item after source local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
r600_pipe.c | 78 if ((rscreen->fences.next_index + 1) >= 1024) { 83 index = rscreen->fences.next_index++; 982 rscreen->fences.next_index = 0;
|
/external/mesa3d/src/gallium/drivers/r600/ |
r600_pipe.c | 78 if ((rscreen->fences.next_index + 1) >= 1024) { 83 index = rscreen->fences.next_index++; 982 rscreen->fences.next_index = 0;
|
/external/chromium_org/chrome/browser/autocomplete/ |
history_url_provider.cc | 1015 size_t next_index = source_index + 1; \/\/ return value = item after source local [all...] |
/cts/tools/dasm/etc/ |
java_cup.jar | |
java_cup.jar.old | |
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/ |
tree.jquery.js | 738 var next_index; 742 next_index = this.parent.getChildIndex(this) + 1; 743 if (next_index < this.parent.children.length) { 744 return this.parent.children[next_index]; [all...] |