Searched refs:current (Results 201 - 225 of 1571) sorted by relevance

1234567891011>>

/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedListMultimap.java315 Node<K, V> current; field in class:LinkedListMultimap.NodeIterator
334 current = null;
350 previous = current = next;
353 return current;
358 checkRemove(current != null);
359 if (current != next) { // after call to next()
360 previous = current.previous;
363 next = current.next;
365 removeNode(current);
366 current
409 Node<K, V> current; field in class:LinkedListMultimap.DistinctKeyIterator
448 Node<K, V> current; field in class:LinkedListMultimap.ValueForKeyIterator
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBurmeseBreakEngine.java102 int current;
110 while ((current = fIter.getIndex()) < rangeEnd) {
113 //Look for candidate words at the current position
170 int remaining = rangeEnd - (current + wordLength);
171 int pc = fIter.current();
175 uc = fIter.current();
183 fIter.setIndex(current + wordLength + chars);
200 fIter.setIndex(current+wordLength);
206 while ((currPos = fIter.getIndex()) < rangeEnd && fMarkSet.contains(fIter.current())) {
219 foundBreaks.push(Integer.valueOf(current
[all...]
H A DKhmerBreakEngine.java101 int current;
110 while ((current = fIter.getIndex()) < rangeEnd) {
113 //Look for candidate words at the current position
170 int remaining = rangeEnd - (current + wordLength);
171 int pc = fIter.current();
175 uc = fIter.current();
183 fIter.setIndex(current + wordLength + chars);
200 fIter.setIndex(current+wordLength);
206 while ((currPos = fIter.getIndex()) < rangeEnd && fMarkSet.contains(fIter.current())) {
219 foundBreaks.push(Integer.valueOf(current
[all...]
H A DLaoBreakEngine.java101 int current;
109 while ((current = fIter.getIndex()) < rangeEnd) {
112 //Look for candidate words at the current position
169 int remaining = rangeEnd - (current + wordLength);
170 int pc = fIter.current();
174 uc = fIter.current();
182 fIter.setIndex(current + wordLength + chars);
199 fIter.setIndex(current+wordLength);
205 while ((currPos = fIter.getIndex()) < rangeEnd && fMarkSet.contains(fIter.current())) {
218 foundBreaks.push(Integer.valueOf(current
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBurmeseBreakEngine.java101 int current;
109 while ((current = fIter.getIndex()) < rangeEnd) {
112 //Look for candidate words at the current position
169 int remaining = rangeEnd - (current + wordLength);
170 int pc = fIter.current();
174 uc = fIter.current();
182 fIter.setIndex(current + wordLength + chars);
199 fIter.setIndex(current+wordLength);
205 while ((currPos = fIter.getIndex()) < rangeEnd && fMarkSet.contains(fIter.current())) {
218 foundBreaks.push(Integer.valueOf(current
[all...]
H A DKhmerBreakEngine.java100 int current;
109 while ((current = fIter.getIndex()) < rangeEnd) {
112 //Look for candidate words at the current position
169 int remaining = rangeEnd - (current + wordLength);
170 int pc = fIter.current();
174 uc = fIter.current();
182 fIter.setIndex(current + wordLength + chars);
199 fIter.setIndex(current+wordLength);
205 while ((currPos = fIter.getIndex()) < rangeEnd && fMarkSet.contains(fIter.current())) {
218 foundBreaks.push(Integer.valueOf(current
[all...]
H A DLaoBreakEngine.java100 int current;
108 while ((current = fIter.getIndex()) < rangeEnd) {
111 //Look for candidate words at the current position
168 int remaining = rangeEnd - (current + wordLength);
169 int pc = fIter.current();
173 uc = fIter.current();
181 fIter.setIndex(current + wordLength + chars);
198 fIter.setIndex(current+wordLength);
204 while ((currPos = fIter.getIndex()) < rangeEnd && fMarkSet.contains(fIter.current())) {
217 foundBreaks.push(Integer.valueOf(current
[all...]
/external/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc107 current = std::find(beginning, end, true); local
108 for (int32_t next_bit = current - beginning;
109 character_iterator->HasNext() && current != end;
110 next_bit = current - init_beginning) {
112 EXPECT_TRUE(c <= next_bit || current == end);
113 if (!(c <= next_bit || current == end))
116 beginning = current + 1;
117 current = std::find(beginning, end, true);
122 EXPECT_EQ(end, current);
/external/squashfs-tools/squashfs-tools/
H A Dprogressbar.c93 static void progress_bar(long long current, long long max, int columns) argument
104 hashes = (current * (columns - used)) / max;
107 if((current > max) || (columns - used < 0))
117 if((current % 100) != 0 && current != max)
120 if(current == previous)
122 previous = current;
135 printf("] %*lld/%*lld", max_digits, current, max_digits, max);
136 printf(" %3lld%%", current * 100 / max);
/external/icu/icu4c/source/test/intltest/
H A Dpluralmaptest.cpp118 const UnicodeString *current = map.next(index); local
119 assertEquals("", "pickles", *current);
121 current = map.next(index);
122 assertEquals("", "pickle", *current);
124 current = map.next(index);
125 assertEquals("", "picklefew", *current);
127 current = map.next(index);
129 assertTrue("", current == NULL);
133 current = map2.next(index);
134 assertEquals("", "", *current);
211 UnicodeString *current = map.getMutable(v, status); local
[all...]
/external/linux-kselftest/tools/testing/selftests/gpio/
H A Dgpio-mockup-chardev.c131 struct gpiochip_info *current; local
142 current = cinfo;
164 *ret = ioctl(fd, GPIO_GET_CHIPINFO_IOCTL, current);
170 if (strcmp(current->label, gpiochip_name) == 0
171 || check_prefix(current->label, gpiochip_name)) {
173 current++;
276 struct gpiochip_info *current; local
303 current = cinfo;
305 gpio_pin_tests(current, 0);
306 gpio_pin_tests(current, curren
[all...]
/external/vulkan-validation-layers/loader/
H A Dvk_loader_platform.h237 char *current, *next; local
241 for (current = path; *current != '\0'; current = next) {
242 next = strchr(current, DIRECTORY_SYMBOL);
244 if (current != path) *(current - 1) = '\0';
261 char *current, *next; local
265 for (current = pathname; *current !
[all...]
/external/opencv/cv/src/
H A Dcvapprox.cpp72 _CvPtInfo *array, *first = 0, *current = 0, *prev_current = 0; local
114 current = &temp;
140 current = current->next = array + i;
151 current->next = 0;
154 current = temp.next;
156 assert( current );
165 i = (int)(current - array);
200 current->k = --k;
238 current
[all...]
/external/clang/tools/scan-build-py/tests/unit/
H A Dtest_intercept.py27 current = os.path.join(parent, 'project')
30 trace = {'directory': current, 'command': ['cc', '-c', filename]}
33 self.assertEqual(os.path.join(current, 'file.c'), test('file.c'))
34 self.assertEqual(os.path.join(current, 'file.c'), test('./file.c'))
36 self.assertEqual(os.path.join(current, 'file.c'),
37 test(os.path.join(current, 'file.c')))
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java85 * Gets the current value at position {@code i}.
88 * @return the current value
134 * if the current value is <a href="#bitEquals">bitwise equal</a>
152 * if the current value is <a href="#bitEquals">bitwise equal</a>
181 long current = longs.get(i);
182 double currentVal = longBitsToDouble(current);
185 if (longs.compareAndSet(i, current, next)) {
200 long current = longs.get(i);
201 double currentVal = longBitsToDouble(current);
204 if (longs.compareAndSet(i, current, nex
[all...]
/external/pcre/dist2/src/
H A Dpcre2_jit_misc.c53 PRIV(jit_free_rodata)(void *current, void *allocator_data) argument
56 (void)current;
63 while (current != NULL)
65 next = *(void**)current;
66 SLJIT_FREE(current, allocator_data);
67 current = next;
/external/skia/tools/skiaserve/urlhandlers/
H A DBreakHandler.cpp68 SkColor current = request->getPixel(x, y); local
69 if (current != target) {
71 endColor.append(Json::Value(SkColorGetR(current)));
72 endColor.append(Json::Value(SkColorGetG(current)));
73 endColor.append(Json::Value(SkColorGetB(current)));
74 endColor.append(Json::Value(SkColorGetA(current)));
/external/skqp/tools/skiaserve/urlhandlers/
H A DBreakHandler.cpp68 SkColor current = request->getPixel(x, y); local
69 if (current != target) {
71 endColor.append(Json::Value(SkColorGetR(current)));
72 endColor.append(Json::Value(SkColorGetG(current)));
73 endColor.append(Json::Value(SkColorGetB(current)));
74 endColor.append(Json::Value(SkColorGetA(current)));
/external/tensorflow/tensorflow/contrib/lite/kernels/
H A Dsqueeze.cc62 int current = squeeze_dims[idx] < 0 ? squeeze_dims[idx] + input_num_dims local
64 TF_LITE_ENSURE(context, current >= 0 && current < input_num_dims &&
65 input_dims->data[current] == 1);
66 if (!should_squeeze[current]) ++num_squeezed_dims;
67 should_squeeze[current] = true;
/external/vixl/src/
H A Dpool-manager-impl.h59 // alignment_. This is to support the current AARCH32 MacroAssembler which
61 // aligned to the alignment instructions need for the current instruction
83 PoolObject<T>& current = *iter; local
84 if (ShouldSkipObject(&current,
93 LocationBase<T>* label_base = current.label_base_;
94 T aligned_pc = AlignUp(pc, current.alignment_);
97 VIXL_ASSERT(pc >= current.min_location_);
98 VIXL_ASSERT(pc <= current.max_location_);
108 VIXL_ASSERT(!current.label_base_->ShouldDeletePoolObjectOnPlacement());
109 current
269 const PoolObject<T>& current = objects_[i]; local
323 PoolObject<T>& current = objects_[i]; local
398 PoolObject<T>& current = *iter; local
413 PoolObject<T>& current = *iter; local
[all...]
/external/apache-http/android/src/android/net/http/
H A DAndroidHttpClientConnection.java300 CharArrayBuffer current = new CharArrayBuffer(64);
302 if (inbuffer.readLine(current) == -1) {
308 current, new ParserCursor(0, current.length()));
317 if (current == null) {
318 current = new CharArrayBuffer(64);
321 current.clear();
323 int l = inbuffer.readLine(current);
324 if (l == -1 || current.length() < 1) {
331 char first = current
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3treeparser.c210 pANTLR3_BASE_TREE current; local
220 // Create a new empty node, by stealing the current one, or the previous one if the current one is EOF
222 current = tns->_LT(tns, 1);
225 if (current == &ctns->EOF_NODE.baseTree)
227 current = tns->_LT(tns, -1);
230 while (((pANTLR3_COMMON_TREE)(current->super))->factory == NULL)
232 current = tns->_LT(tns, i--);
235 node = current->dupNode(current);
[all...]
/external/apache-commons-math/
H A DAndroid.mk28 LOCAL_SDK_VERSION := current
40 LOCAL_SDK_VERSION := current
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DSimpleRealPointChecker.java74 final RealPointValuePair current) {
76 final double[] c = current.getPoint();
72 converged(final int iteration, final RealPointValuePair previous, final RealPointValuePair current) argument
H A DSimpleScalarValueChecker.java74 final RealPointValuePair current) {
76 final double c = current.getValue();
72 converged(final int iteration, final RealPointValuePair previous, final RealPointValuePair current) argument

Completed in 1244 milliseconds

1234567891011>>