/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;
|
/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
|
/frameworks/base/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 | 85 size_t *next_index) const;
|
/frameworks/base/libs/utils/ |
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 | 443 int32_t String8::getUtf32At(size_t index, size_t *next_index) const 445 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...] |
/cts/tools/dasm/etc/ |
java_cup-new.jar | |
java_cup.jar | |
java_cup.jar.old | |
/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/bluetooth/glib/glib/ |
gthread.c | 445 static guint next_index = 0; local 470 private_key->index = ++next_index;
|
/external/chromium/testing/gmock/scripts/generator/cpp/ |
ast.py | 571 next_index = i + 1 572 if next_index < end and parts[next_index].name == '::': [all...] |
/external/v8/src/ |
runtime.cc | [all...] |
parser.cc | 475 int next_index = local 478 return next_index; [all...] |