HomeSort by relevance Sort by last modified time
    Searched refs:iterators (Results 26 - 50 of 202) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.2/
commons-collections-3.2.2.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
ast_build.h 60 __isl_take isl_id_list *iterators);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
ast_build.h 60 __isl_take isl_id_list *iterators);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 54 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators
60 * {@code Iterators}</a>.
67 public final class Iterators {
68 private Iterators() {}
256 * Determines whether two iterators contain equal elements in the same order.
262 * <p>Note that this will modify the supplied iterators, since they will have
422 * Combines two iterators into a single iterator. The returned iterator
424 * {@code b}. The source iterators are not polled until necessary.
430 * concatenated iterators, i.e. the following should be avoided when in a loop:
431 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over th
    [all...]
Iterables.java 43 * {@link Iterator}-based method in the {@link Iterators} class.
46 * produced in this class are <i>lazy</i>, which means that their iterators
92 return Iterators.unmodifiableIterator(iterable.iterator());
108 : Iterators.size(iterable.iterator());
120 return Iterators.contains(iterable.iterator(), element);
128 * collection, and {@link Iterators#removeAll} otherwise.
138 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove);
146 * collection, and {@link Iterators#retainAll} otherwise.
156 : Iterators.retainAll(removeFrom.iterator(), elementsToRetain);
178 return Iterators.removeIf(removeFrom.iterator(), predicate)
    [all...]
  /libcore/ojluni/src/main/java/java/text/
MessageFormat.java 909 ArrayList<AttributedCharacterIterator> iterators = new ArrayList<>(); local
    [all...]
AttributedString.java 71 * @param iterators AttributedCharacterIterators to construct
73 * @throws NullPointerException if iterators is null
75 AttributedString(AttributedCharacterIterator[] iterators) {
76 if (iterators == null) {
77 throw new NullPointerException("Iterators must not be null");
79 if (iterators.length == 0) {
85 for (int counter = 0; counter < iterators.length; counter++) {
86 appendContents(buffer, iterators[counter]);
97 for (int counter = 0; counter < iterators.length; counter++) {
98 AttributedCharacterIterator iterator = iterators[counter]
    [all...]
  /bootable/recovery/tests/unit/
rangeset_test.cpp 97 TEST(RangeSetTest, iterators) {
107 // Reverse iterators.
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 34 // iterators are initialized like this:
59 // 0x2: iterators
62 else if (optReload == 2) parts.reload = 2; // reload iterators
68 // reload the iterators
82 if (i==0) CONTEXT_LOAD(c, iterators.ydady);
83 if (i==1) CONTEXT_LOAD(c, iterators.ydrdy);
84 if (i==2) CONTEXT_LOAD(c, iterators.ydgdy);
85 if (i==3) CONTEXT_LOAD(c, iterators.ydbdy);
218 // the iterators because there is always an extra pixel on the
350 CONTEXT_LOAD(txPtr.reg, state.texture[i].iterators.ydsdy)
    [all...]
GGLAssembler.cpp 363 CONTEXT_LOAD(Rx, iterators.xl);
364 CONTEXT_LOAD(parts.count.reg, iterators.xr);
365 CONTEXT_LOAD(Ry, iterators.y);
367 // parts.count = iterators.xr - Rx
411 CONTEXT_LOAD(ydfdy, iterators.ydfdy);
424 CONTEXT_LOAD(ydzdy, iterators.ydzdy); // 1.31 fixed-point
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Iterators.java 56 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterators
62 * {@code Iterators}</a>.
69 public final class Iterators {
70 private Iterators() {}
258 * Determines whether two iterators contain equal elements in the same order.
264 * <p>Note that this will modify the supplied iterators, since they will have
440 * Combines two iterators into a single iterator. The returned iterator
442 * {@code b}. The source iterators are not polled until necessary.
448 * concatenated iterators, i.e. the following should be avoided when in a loop:
449 * {@code iterator = Iterators.concat(iterator, suffix);}, since iteration over th
    [all...]
Iterables.java 45 * {@link Iterator}-based method in the {@link Iterators} class.
48 * produced in this class are <i>lazy</i>, which means that their iterators
94 return Iterators.unmodifiableIterator(iterable.iterator());
110 : Iterators.size(iterable.iterator());
122 return Iterators.contains(iterable.iterator(), element);
130 * collection, and {@link Iterators#removeAll} otherwise.
140 : Iterators.removeAll(removeFrom.iterator(), elementsToRemove);
148 * collection, and {@link Iterators#retainAll} otherwise.
158 : Iterators.retainAll(removeFrom.iterator(), elementsToRetain);
180 return Iterators.removeIf(removeFrom.iterator(), predicate)
    [all...]
  /system/core/libpixelflinger/include/private/pixelflinger/
ggl_context.h 112 // for encoding the color iterators
411 texture_iterators_t iterators; member in struct:android::texture_t
532 iterators_t iterators; member in struct:android::context_t
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
visitor.rb 41 objects are similar to plain vanilla iterators, but provide two action hooks,
  /frameworks/native/opengl/libagl/
texture.cpp 579 int32_t iterators[3]; local
580 iterators[1] = iterators[2] = 0;
589 iterators[0] = c->fog.fog(c, Zw);
590 c->rasterizer.procs.fogGrad3xv(c, iterators);
597 iterators[0] = (z << 16) | z;
598 c->rasterizer.procs.zGrad3xv(c, iterators);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
test_email_renamed.py 31 from email import iterators
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dict.py 542 iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
543 for i in iterators:
  /external/python/cpython2/Lib/email/test/
test_email_renamed.py 31 from email import iterators
    [all...]
  /external/python/cpython2/Lib/test/
test_dict.py 572 iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
573 for i in iterators:
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/test/
test_email_renamed.py 31 from email import iterators
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_dict.py 570 iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
571 for i in iterators:
  /prebuilts/gdb/linux-x86/lib/python2.7/email/test/
test_email_renamed.py 31 from email import iterators
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_dict.py 570 iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
571 for i in iterators:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/
test_email_renamed.py 31 from email import iterators
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dict.py 570 iterators = (dict.iteritems, dict.itervalues, dict.iterkeys)
571 for i in iterators:

Completed in 1375 milliseconds

12 3 4 5 6 7 8 9