Home
last modified time | relevance | path

Searched refs:newIterator (Results 1 – 11 of 11) sorted by relevance

/external/antlr/runtime/ObjC/Framework/
DLinkedHashMap.h159 + (LinkedHashIterator *) newIterator:(LinkedHashMap *)aLHM;
171 + (LHMEntryIterator *)newIterator:(LinkedHashMap *)aHM;
181 + (LHMKeyIterator *)newIterator:(LinkedHashMap *)aHM;
191 + (LHMValueIterator *)newIterator:(LinkedHashMap *)aHM;
DLinkedList.h34 + (ListIterator *) newIterator:(LinkedList *)anLL;
35 + (ListIterator *) newIterator:(LinkedList *)anLL withIndex:(NSInteger)anIndex;
57 + (DescendingIterator *) newIterator:(LinkedList *)anLL;
DHashMap.h79 + (HashIterator *) newIterator:(HashMap *)aHM;
91 + (HMEntryIterator *)newIterator:(HashMap *)aHM;
101 + (HMValueIterator *)newIterator:(HashMap *)aHM;
111 + (HMKeyIterator *)newIterator:(HashMap *)aHM;
DLinkedHashMap.m87 + (LinkedHashIterator *) newIterator:(LinkedHashMap *)aLHM
150 + (LHMKeyIterator *)newIterator:(LinkedHashMap *)aLHM
171 + (LHMValueIterator *)newIterator:(LinkedHashMap *)aLHM
192 + (LHMEntryIterator *)newIterator:(LinkedHashMap *)aLHM
420 return [LHMEntryIterator newIterator:self];
425 return [LHMKeyIterator newIterator:self];
430 return [LHMValueIterator newIterator:self];
DArrayIterator.h57 + (ArrayIterator *) newIterator:(NSArray *)array;
DHashMap.m133 + (HashIterator *)newIterator:(HashMap *)aHM
201 + (HMValueIterator *)newIterator:(HashMap *)aHM
223 + (HMKeyIterator *)newIterator:(HashMap *)aHM
245 + (HMEntryIterator *)newIterator:(HashMap *)aHM
292 return [HMKeyIterator newIterator:hm];
348 return [HMValueIterator newIterator:hm];
399 return [HMEntryIterator newIterator:hm];
1587 return [HMKeyIterator newIterator:self];
1592 return [HMValueIterator newIterator:self];
1597 return [HMEntryIterator newIterator:self];
DAMutableDictionary.m187 return [ArrayIterator newIterator:[self allKeys]];
192 return [ArrayIterator newIterator:[self allValues]];
DArrayIterator.m42 + (ArrayIterator *) newIterator:(NSArray *)array
DLinkedList.m40 + (ListIterator *) newIterator:(LinkedList *)anLL
45 + (ListIterator *) newIterator:(LinkedList *)anLL withIndex:(NSInteger)anIndex
157 + (DescendingIterator *)newIterator:(LinkedList *)anLL
1094 return [[ListIterator newIterator:self withIndex:index] autorelease];
DAMutableArray.m221 return [ArrayIterator newIterator:[self allObjects]];
/external/skia/modules/skshaper/src/
DSkUnicode_icu.cpp205 …ICUBreakIterator newIterator(ubrk_open(convertType(type), uloc_getDefault(), nullptr, 0, &status)); in makeBreakIterator() local
209 cachedIterator = fBreakCache.set(type, std::move(newIterator)); in makeBreakIterator()