HomeSort by relevance Sort by last modified time
    Searched refs:next_index (Results 1 - 25 of 33) sorted by null

1 2

  /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/v8/src/
heap-snapshot-generator-inl.h 54 int next_index = index + children_count_; local
56 return 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
production.java 118 _index = next_index++;
157 protected static int next_index; field in class:production
lalr_state.java 72 _index = next_index++;
124 protected static int next_index = 0; field in class:lalr_state
  /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/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_org/net/http/
http_network_transaction_ssl_unittest.cc 148 EXPECT_EQ(1u, mock_data.next_index());
194 EXPECT_EQ(2u, mock_data.next_index());
241 EXPECT_EQ(2u, mock_data.next_index());
294 EXPECT_EQ(3u, mock_data.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;
  /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);
  /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/radeonsi/
radeonsi_pipe.h 56 unsigned next_index; member in struct:r600_pipe_fences
radeonsi_pipe.c 95 if ((rscreen->fences.next_index + 1) >= 1024) {
100 index = rscreen->fences.next_index++;
709 rscreen->fences.next_index = 0;
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pipe.h 56 unsigned next_index; member in struct:r600_pipe_fences
radeonsi_pipe.c 95 if ((rscreen->fences.next_index + 1) >= 1024) {
100 index = rscreen->fences.next_index++;
709 rscreen->fences.next_index = 0;
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /external/chromium_org/ui/message_center/views/
message_center_view.cc 890 size_t next_index = i + 1; local
891 if (next_index >= message_views_.size())
892 next_index = message_views_.size() - 2;
894 message_views_[next_index]->RequestFocus();
896 message_views_[next_index]->RequestFocusOnCloseButton();
    [all...]
  /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_org/chrome/browser/autocomplete/
history_url_provider.cc 1014 size_t next_index = source_index + 1; \/\/ return value = item after source local
    [all...]

Completed in 508 milliseconds

1 2