/external/llvm/unittests/ADT/ |
D | TinyPtrVectorTest.cpp | 41 VectorT V; member in __anon6ff54fc90111::TinyPtrVectorTest 58 void appendValues(VectorT &V, ArrayRef<PtrT> Values) { in appendValues() argument 60 V.push_back(Values[i]); in appendValues() 64 V.clear(); in setVectors() 65 appendValues(V, Values1); in setVectors() 70 void expectValues(const VectorT &V, ArrayRef<PtrT> Values) { in expectValues() argument 71 EXPECT_EQ(Values.empty(), V.empty()); in expectValues() 72 EXPECT_EQ(Values.size(), V.size()); in expectValues() 74 EXPECT_EQ(Values[i], V[i]); in expectValues() 75 EXPECT_EQ(Values[i], *llvm::next(V.begin(), i)); in expectValues() [all …]
|
/external/smali/smali-integration-tests/src/test/smali/jumbo-method-tests/ |
D | ManyMethodReferences.smali | 34 .method public constructor <init>()V 36 invoke-direct/jumbo {p0}, Ljava/lang/Object;-><init>()V 42 .method public not-used-1()V 45 invoke-static/jumbo {}, LManyMethodReferences;->zzz0()V 46 invoke-static/jumbo {}, LManyMethodReferences;->zzz1()V 47 invoke-static/jumbo {}, LManyMethodReferences;->zzz2()V 48 invoke-static/jumbo {}, LManyMethodReferences;->zzz3()V 49 invoke-static/jumbo {}, LManyMethodReferences;->zzz4()V 50 invoke-static/jumbo {}, LManyMethodReferences;->zzz5()V 51 invoke-static/jumbo {}, LManyMethodReferences;->zzz6()V [all …]
|
/external/v8/src/ |
D | bytecodes-irregexp.h | 43 #define BYTECODE_ITERATOR(V) \ argument 44 V(BREAK, 0, 4) /* bc8 */ \ 45 V(PUSH_CP, 1, 4) /* bc8 pad24 */ \ 46 V(PUSH_BT, 2, 8) /* bc8 pad24 offset32 */ \ 47 V(PUSH_REGISTER, 3, 4) /* bc8 reg_idx24 */ \ 48 V(SET_REGISTER_TO_CP, 4, 8) /* bc8 reg_idx24 offset32 */ \ 49 V(SET_CP_TO_REGISTER, 5, 4) /* bc8 reg_idx24 */ \ 50 V(SET_REGISTER_TO_SP, 6, 4) /* bc8 reg_idx24 */ \ 51 V(SET_SP_TO_REGISTER, 7, 4) /* bc8 reg_idx24 */ \ 52 V(SET_REGISTER, 8, 8) /* bc8 reg_idx24 value32 */ \ [all …]
|
D | builtins.h | 42 #define BUILTIN_LIST_C(V) \ argument 43 V(Illegal, NO_EXTRA_ARGUMENTS) \ 45 V(EmptyFunction, NO_EXTRA_ARGUMENTS) \ 47 V(InternalArrayCodeGeneric, NO_EXTRA_ARGUMENTS) \ 48 V(ArrayCodeGeneric, NO_EXTRA_ARGUMENTS) \ 50 V(ArrayPush, NO_EXTRA_ARGUMENTS) \ 51 V(ArrayPop, NO_EXTRA_ARGUMENTS) \ 52 V(ArrayShift, NO_EXTRA_ARGUMENTS) \ 53 V(ArrayUnshift, NO_EXTRA_ARGUMENTS) \ 54 V(ArraySlice, NO_EXTRA_ARGUMENTS) \ [all …]
|
/external/guava/guava/src/com/google/common/collect/ |
D | MapConstraints.java | 83 public static <K, V> Map<K, V> constrainedMap( in constrainedMap() 84 Map<K, V> map, MapConstraint<? super K, ? super V> constraint) { in constrainedMap() 85 return new ConstrainedMap<K, V>(map, constraint); in constrainedMap() 104 public static <K, V> Multimap<K, V> constrainedMultimap( in constrainedMultimap() 105 Multimap<K, V> multimap, MapConstraint<? super K, ? super V> constraint) { in constrainedMultimap() 106 return new ConstrainedMultimap<K, V>(multimap, constraint); in constrainedMultimap() 125 public static <K, V> ListMultimap<K, V> constrainedListMultimap( in constrainedListMultimap() 126 ListMultimap<K, V> multimap, in constrainedListMultimap() 127 MapConstraint<? super K, ? super V> constraint) { in constrainedListMultimap() 128 return new ConstrainedListMultimap<K, V>(multimap, constraint); in constrainedListMultimap() [all …]
|
D | ImmutableMultimap.java | 61 public abstract class ImmutableMultimap<K, V> 62 implements Multimap<K, V>, Serializable { 65 public static <K, V> ImmutableMultimap<K, V> of() { in of() 72 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1) { in of() 79 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of() 86 public static <K, V> ImmutableMultimap<K, V> of( in of() 87 K k1, V v1, K k2, V v2, K k3, V v3) { in of() 94 public static <K, V> ImmutableMultimap<K, V> of( in of() 95 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of() 102 public static <K, V> ImmutableMultimap<K, V> of( in of() [all …]
|
D | MapMakerInternalMap.java | 72 class MapMakerInternalMap<K, V> 73 extends AbstractMap<K, V> implements ConcurrentMap<K, V>, Serializable { 151 final transient Segment<K, V>[] segments; 179 final Queue<RemovalNotification<K, V>> removalNotificationQueue; 185 final RemovalListener<K, V> removalListener; 214 ? MapMakerInternalMap.<RemovalNotification<K, V>>discardingQueue() in MapMakerInternalMap() 215 : new ConcurrentLinkedQueue<RemovalNotification<K, V>>(); in MapMakerInternalMap() 298 <K, V> ValueReference<K, V> referenceValue( in referenceValue() 299 Segment<K, V> segment, ReferenceEntry<K, V> entry, V value) { in referenceValue() 300 return new StrongValueReference<K, V>(value); in referenceValue() [all …]
|
D | ImmutableSetMultimap.java | 58 public class ImmutableSetMultimap<K, V> 59 extends ImmutableMultimap<K, V> 60 implements SetMultimap<K, V> { 65 public static <K, V> ImmutableSetMultimap<K, V> of() { in of() 66 return (ImmutableSetMultimap<K, V>) EmptyImmutableSetMultimap.INSTANCE; in of() 72 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { in of() 73 ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); in of() 83 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of() 84 ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); in of() 95 public static <K, V> ImmutableSetMultimap<K, V> of( in of() [all …]
|
D | Maps.java | 84 public static <K, V> HashMap<K, V> newHashMap() { in newHashMap() 85 return new HashMap<K, V>(); in newHashMap() 101 public static <K, V> HashMap<K, V> newHashMapWithExpectedSize( in newHashMapWithExpectedSize() 103 return new HashMap<K, V>(capacity(expectedSize)); in newHashMapWithExpectedSize() 136 public static <K, V> HashMap<K, V> newHashMap( in newHashMap() 137 Map<? extends K, ? extends V> map) { in newHashMap() 138 return new HashMap<K, V>(map); in newHashMap() 150 public static <K, V> LinkedHashMap<K, V> newLinkedHashMap() { in newLinkedHashMap() 151 return new LinkedHashMap<K, V>(); in newLinkedHashMap() 165 public static <K, V> LinkedHashMap<K, V> newLinkedHashMap( in newLinkedHashMap() [all …]
|
D | ImmutableMap.java | 56 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable { 64 public static <K, V> ImmutableMap<K, V> of() { in of() 65 return (ImmutableMap<K, V>) EmptyImmutableMap.INSTANCE; in of() 74 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { in of() 75 return new SingletonImmutableMap<K, V>( in of() 84 public static <K, V> ImmutableMap<K, V> of(K k1, V v1, K k2, V v2) { in of() 85 return new RegularImmutableMap<K, V>(entryOf(k1, v1), entryOf(k2, v2)); in of() 93 public static <K, V> ImmutableMap<K, V> of( in of() 94 K k1, V v1, K k2, V v2, K k3, V v3) { in of() 95 return new RegularImmutableMap<K, V>( in of() [all …]
|
D | ImmutableBiMap.java | 43 public abstract class ImmutableBiMap<K, V> extends ImmutableMap<K, V> 44 implements BiMap<K, V> { 54 public static <K, V> ImmutableBiMap<K, V> of() { in of() 55 return (ImmutableBiMap<K, V>) EMPTY_IMMUTABLE_BIMAP; in of() 61 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { in of() 62 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1)); in of() 70 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { in of() 71 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2)); in of() 79 public static <K, V> ImmutableBiMap<K, V> of( in of() 80 K k1, V v1, K k2, V v2, K k3, V v3) { in of() [all …]
|
D | ImmutableListMultimap.java | 53 public class ImmutableListMultimap<K, V> 54 extends ImmutableMultimap<K, V> 55 implements ListMultimap<K, V> { 60 public static <K, V> ImmutableListMultimap<K, V> of() { in of() 61 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE; in of() 67 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { in of() 68 ImmutableListMultimap.Builder<K, V> builder in of() 77 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of() 78 ImmutableListMultimap.Builder<K, V> builder in of() 88 public static <K, V> ImmutableListMultimap<K, V> of( in of() [all …]
|
D | ImmutableSortedMap.java | 61 public class ImmutableSortedMap<K, V> 62 extends ImmutableSortedMapFauxverideShim<K, V> implements SortedMap<K, V> { 85 public static <K, V> ImmutableSortedMap<K, V> of() { in of() 86 return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP; in of() 90 private static <K, V> ImmutableSortedMap<K, V> emptyMap( in emptyMap() 93 return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP; in emptyMap() 95 return new ImmutableSortedMap<K, V>( in emptyMap() 96 ImmutableList.<Entry<K, V>>of(), comparator); in emptyMap() 103 public static <K extends Comparable<? super K>, V> 104 ImmutableSortedMap<K, V> of(K k1, V v1) { in of() [all …]
|
D | Multimaps.java | 107 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map, in newMultimap() 108 final Supplier<? extends Collection<V>> factory) { in newMultimap() 109 return new CustomMultimap<K, V>(map, factory); in newMultimap() 112 private static class CustomMultimap<K, V> extends AbstractMultimap<K, V> { 113 transient Supplier<? extends Collection<V>> factory; 115 CustomMultimap(Map<K, Collection<V>> map, in CustomMultimap() 116 Supplier<? extends Collection<V>> factory) { in CustomMultimap() 121 @Override protected Collection<V> createCollection() { in createCollection() 141 factory = (Supplier<? extends Collection<V>>) stream.readObject(); in readObject() 142 Map<K, Collection<V>> map = (Map<K, Collection<V>>) stream.readObject(); in readObject() [all …]
|
D | ImmutableSortedMapFauxverideShim.java | 29 abstract class ImmutableSortedMapFauxverideShim<K, V> 30 extends ImmutableMap<K, V> { 40 @Deprecated public static <K, V> ImmutableSortedMap.Builder<K, V> builder() { in builder() 53 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of(K k1, V v1) { in of() 66 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( in of() 67 K k1, V v1, K k2, V v2) { in of() 81 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( in of() 82 K k1, V v1, K k2, V v2, K k3, V v3) { in of() 96 @Deprecated public static <K, V> ImmutableSortedMap<K, V> of( in of() 97 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of() [all …]
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableBiMap.java | 27 public abstract class ImmutableBiMap<K, V> extends ImmutableMap<K,V> 28 implements BiMap<K, V> { 35 public static <K, V> ImmutableBiMap<K, V> of() { in of() 36 return (ImmutableBiMap<K, V>) EMPTY_IMMUTABLE_BIMAP; in of() 39 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1) { in of() 40 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1)); in of() 43 public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) { in of() 44 return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2)); in of() 47 public static <K, V> ImmutableBiMap<K, V> of( in of() 48 K k1, V v1, K k2, V v2, K k3, V v3) { in of() [all …]
|
D | ImmutableSetMultimap.java | 53 public class ImmutableSetMultimap<K, V> 54 extends ImmutableMultimap<K, V> 55 implements SetMultimap<K, V> { 60 public static <K, V> ImmutableSetMultimap<K, V> of() { in of() 61 return (ImmutableSetMultimap<K, V>) EmptyImmutableSetMultimap.INSTANCE; in of() 67 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1) { in of() 68 ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); in of() 78 public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of() 79 ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder(); in of() 90 public static <K, V> ImmutableSetMultimap<K, V> of( in of() [all …]
|
D | ImmutableListMultimap.java | 48 public class ImmutableListMultimap<K, V> 49 extends ImmutableMultimap<K, V> 50 implements ListMultimap<K, V> { 55 public static <K, V> ImmutableListMultimap<K, V> of() { in of() 56 return (ImmutableListMultimap<K, V>) EmptyImmutableListMultimap.INSTANCE; in of() 62 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { in of() 63 ImmutableListMultimap.Builder<K, V> builder in of() 72 public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of() 73 ImmutableListMultimap.Builder<K, V> builder in of() 83 public static <K, V> ImmutableListMultimap<K, V> of( in of() [all …]
|
D | ImmutableMultimap.java | 60 public abstract class ImmutableMultimap<K, V> 61 implements Multimap<K, V>, Serializable { 64 public static <K, V> ImmutableMultimap<K, V> of() { in of() 71 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1) { in of() 78 public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) { in of() 85 public static <K, V> ImmutableMultimap<K, V> of( in of() 86 K k1, V v1, K k2, V v2, K k3, V v3) { in of() 93 public static <K, V> ImmutableMultimap<K, V> of( in of() 94 K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) { in of() 101 public static <K, V> ImmutableMultimap<K, V> of( in of() [all …]
|
D | ImmutableMap.java | 41 public abstract class ImmutableMap<K, V> implements Map<K, V>, Serializable { 43 private transient final Map<K, V> delegate; 49 ImmutableMap(Map<? extends K, ? extends V> delegate) { in ImmutableMap() 54 ImmutableMap(Entry<? extends K, ? extends V>... entries) { in ImmutableMap() 55 Map<K, V> delegate = Maps.newLinkedHashMap(); in ImmutableMap() 56 for (Entry<? extends K, ? extends V> entry : entries) { in ImmutableMap() 58 V previous = delegate.put(key, checkNotNull(entry.getValue())); in ImmutableMap() 68 public static <K, V> ImmutableMap<K, V> of() { in of() 69 return (ImmutableMap<K, V>) EmptyImmutableMap.INSTANCE; in of() 72 public static <K, V> ImmutableMap<K, V> of(K k1, V v1) { in of() [all …]
|
D | ImmutableSortedMap.java | 36 public class ImmutableSortedMap<K, V> 37 extends ImmutableMap<K, V> implements SortedMap<K, V> { 56 private V unusedValueForSerialization; 58 private transient final SortedMap<K, V> sortedDelegate; 68 ImmutableSortedMap(SortedMap<K, ? extends V> delegate) { in ImmutableSortedMap() 75 private static <K, V> ImmutableSortedMap<K, V> create( in create() 77 Entry<? extends K, ? extends V>... entries) { in create() 79 SortedMap<K, V> delegate = Maps.newTreeMap(comparator); in create() 80 for (Entry<? extends K, ? extends V> entry : entries) { in create() 83 return new ImmutableSortedMap<K, V>(delegate); in create() [all …]
|
D | Maps.java | 81 public static <K, V> HashMap<K, V> newHashMap() { in newHashMap() 82 return new HashMap<K, V>(); in newHashMap() 98 public static <K, V> HashMap<K, V> newHashMapWithExpectedSize( in newHashMapWithExpectedSize() 100 return new HashMap<K, V>(capacity(expectedSize)); in newHashMapWithExpectedSize() 133 public static <K, V> HashMap<K, V> newHashMap( in newHashMap() 134 Map<? extends K, ? extends V> map) { in newHashMap() 135 return new HashMap<K, V>(map); in newHashMap() 147 public static <K, V> LinkedHashMap<K, V> newLinkedHashMap() { in newLinkedHashMap() 148 return new LinkedHashMap<K, V>(); in newLinkedHashMap() 162 public static <K, V> LinkedHashMap<K, V> newLinkedHashMap( in newLinkedHashMap() [all …]
|
D | Multimaps.java | 103 public static <K, V> Multimap<K, V> newMultimap(Map<K, Collection<V>> map, in newMultimap() 104 final Supplier<? extends Collection<V>> factory) { in newMultimap() 105 return new CustomMultimap<K, V>(map, factory); in newMultimap() 108 private static class CustomMultimap<K, V> extends AbstractMultimap<K, V> { 109 transient Supplier<? extends Collection<V>> factory; 111 CustomMultimap(Map<K, Collection<V>> map, in CustomMultimap() 112 Supplier<? extends Collection<V>> factory) { in CustomMultimap() 117 @Override protected Collection<V> createCollection() { in createCollection() 163 public static <K, V> ListMultimap<K, V> newListMultimap( in newListMultimap() 164 Map<K, Collection<V>> map, final Supplier<? extends List<V>> factory) { in newListMultimap() [all …]
|
/external/bison/djgpp/ |
D | fnchange.lst | 1 @V@/build-aux/javacomp.sh.in @V@/build-aux/javacomp.sh-in 2 @V@/build-aux/javaexec.sh.in @V@/build-aux/javaexec.sh-in 3 @V@/data/c++-skel.m4 @V@/data/cxx-skel.m4 4 @V@/data/c++.m4 @V@/data/cxx.m4 5 @V@/doc/yacc.1.in @V@/doc/yacc.1-in 6 @V@/etc/bench.pl.in @V@/etc/bench.pl-in 7 @V@/examples/calc++/ @V@/examples/calcxx/ 8 @V@/examples/calc++/Makefile.am @V@/examples/calcxx/Makefile.am 9 @V@/examples/calc++/Makefile.in @V@/examples/calcxx/Makefile.in 10 @V@/examples/calc++/calc++-scanner.cc @V@/examples/calcxx/calcxx-scanner.cc [all …]
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 92 class LocalCache<K, V> extends AbstractMap<K, V> implements ConcurrentMap<K, V> { 170 final Segment<K, V>[] segments; 191 final Weigher<K, V> weigher; 204 final Queue<RemovalNotification<K, V>> removalNotificationQueue; 210 final RemovalListener<K, V> removalListener; 228 final CacheLoader<? super K, V> defaultLoader; 233 LocalCache(CacheBuilder<? super K, ? super V> builder, CacheLoader<? super K, V> loader) { in LocalCache() 250 ? LocalCache.<RemovalNotification<K, V>>discardingQueue() in LocalCache() 251 : new ConcurrentLinkedQueue<RemovalNotification<K, V>>(); in LocalCache() 375 <K, V> ValueReference<K, V> referenceValue( in referenceValue() [all …]
|