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

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ArrayIterator.h 46 @interface ArrayIterator : NSObject {
58 + (ArrayIterator *) newIterator:(NSArray *)array;
59 + (ArrayIterator *) newIteratorForDictKey:(NSDictionary *)dict;
60 + (ArrayIterator *) newIteratorForDictObj:(NSDictionary *)dict;
ArrayIterator.m 29 #import "ArrayIterator.h"
34 @implementation ArrayIterator
42 + (ArrayIterator *) newIterator:(NSArray *)array
44 return [[ArrayIterator alloc] initWithArray:array];
47 + (ArrayIterator *) newIteratorForDictKey:(NSDictionary *)dict
49 return [[ArrayIterator alloc] initWithDictKey:dict];
52 + (ArrayIterator *) newIteratorForDictObj:(NSDictionary *)dict
54 return [[ArrayIterator alloc] initWithDictObj:dict];
63 reason:[NSString stringWithFormat:@"ArrayIterator expecting NSArray class but got %@", [array className]]
86 reason:[NSString stringWithFormat:@"ArrayIterator expecting NSDictionary class but got %@", [dict className]
    [all...]
AMutableDictionary.h 11 #import "ArrayIterator.h"
14 @class ArrayIterator;
51 - (ArrayIterator *) keyEnumerator;
52 - (ArrayIterator *) objectEnumerator;
AMutableArray.h 10 #import "ArrayIterator.h"
12 @class ArrayIterator;
40 - (ArrayIterator *) objectEnumerator;
ANTLR.h 114 #import <ANTLR/ArrayIterator.h>
antlr3.h 114 #import <ANTLR/ArrayIterator.h>
  /external/hamcrest/src/org/hamcrest/internal/
ArrayIterator.java 6 public class ArrayIterator implements Iterator<Object> {
10 public ArrayIterator(Object array) {
  /external/v8/src/js/
array-iterator.js 33 function ArrayIterator() {}
44 var iterator = new ArrayIterator;
131 %FunctionSetPrototype(ArrayIterator, {__proto__: IteratorPrototype});
132 %FunctionSetInstanceClassName(ArrayIterator, 'Array Iterator');
134 utils.InstallFunctions(ArrayIterator.prototype, DONT_ENUM, [
138 %AddNamedProperty(ArrayIterator.prototype, toStringTagSymbol,
  /external/hamcrest/src/org/hamcrest/
BaseDescription.java 8 import org.hamcrest.internal.ArrayIterator;
47 appendValueList("[",", ","]", new ArrayIterator(value));
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Array.java 415 * time this method is called. Use the {@link ArrayIterator} constructor for nested or multithreaded iteration. */
530 static public class ArrayIterator<T> implements Iterator<T>, Iterable<T> {
538 public ArrayIterator (Array<T> array) {
542 public ArrayIterator (Array<T> array, boolean allowRemove) {
582 private ArrayIterator iterator1, iterator2;
599 iterator1 = new ArrayIterator(array, allowRemove);
600 iterator2 = new ArrayIterator(array, allowRemove);
Predicate.java 21 import com.badlogic.gdx.utils.Array.ArrayIterator;
  /external/testng/src/main/java/org/testng/internal/
MethodHelper.java 312 ArrayIterator result = new ArrayIterator(objects);
339 class ArrayIterator implements Iterator<Object[]> {
343 public ArrayIterator(Object[][] objects) {
Parameters.java 485 return new ArrayIterator(result.toArray(new Object[list.size()][]));
  /frameworks/base/core/java/android/util/
MapCollections.java 37 final class ArrayIterator<T> implements Iterator<T> {
43 ArrayIterator(int offset) {
301 return new ArrayIterator<K>(0);
395 return new ArrayIterator<V>(1);
  /frameworks/support/compat/java/android/support/v4/util/
MapCollections.java 34 final class ArrayIterator<T> implements Iterator<T> {
40 ArrayIterator(int offset) {
298 return new ArrayIterator<K>(0);
392 return new ArrayIterator<V>(1);
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /prebuilts/devtools/tools/lib/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.12.613/
kotlin-runtime-0.12.613.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1513/
kotlin-runtime-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1514/
kotlin-runtime-0.13.1514.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-1103/
kotlin-runtime-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-rc-1036/
kotlin-runtime-1.0.0-rc-1036.jar 

Completed in 355 milliseconds

1 2 3