OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ArrayIterator
(Results
1 - 25
of
64
) 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
;
113
%FunctionSetPrototype(
ArrayIterator
, {__proto__: IteratorPrototype});
114
%FunctionSetInstanceClassName(
ArrayIterator
, 'Array Iterator');
116
utils.InstallFunctions(
ArrayIterator
.prototype, DONT_ENUM, [
120
%AddNamedProperty(
ArrayIterator
.prototype, iteratorSymbol,
122
%AddNamedProperty(
ArrayIterator
.prototype, toStringTagSymbol,
/external/hamcrest/src/org/hamcrest/
BaseDescription.java
8
import org.hamcrest.internal.
ArrayIterator
;
47
appendValueList("[",", ","]", new
ArrayIterator
(value));
/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/v4/java/android/support/v4/util/
MapCollections.java
35
final class
ArrayIterator
<T> implements Iterator<T> {
41
ArrayIterator
(int offset) {
299
return new
ArrayIterator
<K>(0);
393
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
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.2/
kotlin-runtime-1.0.2.jar
/prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar
Completed in 879 milliseconds
1
2
3