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

1 2

  /external/proguard/src/proguard/wtk/
ProGuardObfuscator.java 123 int next_index = classPathString.indexOf(separator, index); local
124 if (next_index < 0)
126 next_index = classPathString.length();
131 new ClassPathEntry(new File(classPathString.substring(index, next_index)),
137 index = next_index + 1;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
sync_buffer_unittest.cc 25 EXPECT_EQ(kLen, sync_buffer.next_index());
40 EXPECT_EQ(0u, sync_buffer.next_index());
42 EXPECT_EQ(kLen / 2, sync_buffer.next_index());
44 EXPECT_EQ(kLen, sync_buffer.next_index());
47 EXPECT_EQ(kLen, sync_buffer.next_index());
69 EXPECT_EQ(kLen - kNewLen, sync_buffer.next_index());
74 sync_buffer[channel][sync_buffer.next_index() + i]);
78 // Now flush the buffer, and verify that it is all zeros, and that next_index
82 EXPECT_EQ(kLen, sync_buffer.next_index());
110 EXPECT_EQ(kLen - 1, sync_buffer.next_index());
    [all...]
sync_buffer.h 83 size_t next_index() const { return next_index_; } function in class:webrtc::SyncBuffer
merge.cc 151 sync_buffer_->ReplaceAtIndex(*output, old_length, sync_buffer_->next_index());
175 sync_buffer_->InsertZerosAtIndex(length_diff, sync_buffer_->next_index());
188 expanded_.PushBackFromIndex(*sync_buffer_, sync_buffer_->next_index());
  /external/v8/src/profiler/
heap-snapshot-generator-inl.h 36 int next_index = index + children_count_; local
38 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
  /external/chromium-trace/catapult/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/squashfs-tools/kernel/fs/squashfs/
squashfs_fs_sb.h 45 u64 next_index; member in struct:squashfs_cache_entry
block.c 83 int length, u64 *next_index, int srclength)
104 if (next_index)
105 *next_index = index + length;
136 if (next_index)
137 *next_index = index + length + 2;
symlink.c 99 block = entry->next_index;
  /external/squashfs-tools/kernel/include/linux/
squashfs_fs_sb.h 32 long long next_index; member in struct:squashfs_cache_entry
  /external/squashfs-tools/kernel-2.4/include/linux/
squashfs_fs_sb.h 32 long long next_index; member in struct:squashfs_cache
  /external/v8/src/runtime/
runtime-regexp.cc 101 int next_index = i + 1;
102 if (next_index == length) { // No next character!
105 Char c2 = characters[next_index];
111 ReplacementPart::ReplacementSubString(last, next_index),
113 last = next_index + 1; // Continue after the second "$".
116 last = next_index;
118 i = next_index;
125 i = next_index;
133 i = next_index;
141 i = next_index;
    [all...]
  /external/squashfs-tools/kernel-2.4/fs/squashfs/
squashfs.h 50 long long *next_index);
  /external/autotest/client/site_tests/graphics_VTSwitch/
graphics_VTSwitch.py 164 next_index = len(glob.glob(
166 filename = '%s-%d.%s' % (prefix, next_index, extension)
  /system/core/include/utils/
Unicode.h 97 * is unsigned. Then, if "next_index" is not NULL, the next index to be used is
98 * stored in "next_index". "next_index" can be NULL.
100 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index);
  /external/autotest/client/cros/cellular/mbim_compliance/
usb_descriptors.py 378 next_index = self._index + self._data[self._index]
379 descriptor = descriptor_class(self._data[self._index:next_index])
380 self._index = next_index
  /art/runtime/base/
hash_set.h 320 size_t next_index = empty_index; local
323 next_index = NextIndex(next_index);
324 T& next_element = ElementForIndex(next_index);
332 // Calculate the ideal index, if it is within empty_index + 1 to next_index then there is
336 size_t unwrapped_next_index = next_index;
351 empty_index = next_index;
  /system/core/libutils/
Unicode.cpp 153 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index)
159 if (next_index == NULL) {
160 next_index = &dummy_index;
165 *next_index = index + num_read;
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_pipe.h 56 unsigned next_index; member in struct:r600_pipe_fences
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 

Completed in 874 milliseconds

1 2