/external/guice/extensions/multibindings/test/com/google/inject/multibindings/ |
D | SpiUtils.java | 168 Key<?> mapOfJavaxProvider = mapKey.ofType(mapOfJavaxProviderOf(keyType, valueType)); in mapInjectorTest() 169 Key<?> mapOfProvider = mapKey.ofType(mapOfProviderOf(keyType, valueType)); in mapInjectorTest() 170 Key<?> mapOfSetOfProvider = mapKey.ofType(mapOfSetOfProviderOf(keyType, valueType)); in mapInjectorTest() 171 Key<?> mapOfSet = mapKey.ofType(mapOf(keyType, setOf(valueType))); in mapInjectorTest() 172 Key<?> setOfEntry = mapKey.ofType(setOf(entryOfProviderOf(keyType, valueType))); in mapInjectorTest() 174 mapKey.ofType(collectionOfProvidersOf(entryOfProviderOf(keyType, valueType))); in mapInjectorTest() 176 mapKey.ofType(collectionOfJavaxProvidersOf(entryOfProviderOf(keyType, valueType))); in mapInjectorTest() 281 Key<?> mapOfProvider = mapKey.ofType(mapOfProviderOf(keyType, valueType)); in mapModuleTest() 282 Key<?> mapOfJavaxProvider = mapKey.ofType(mapOfJavaxProviderOf(keyType, valueType)); in mapModuleTest() 283 Key<?> mapOfSetOfProvider = mapKey.ofType(mapOfSetOfProviderOf(keyType, valueType)); in mapModuleTest() [all …]
|
D | MultibinderTest.java | 1207 Dependency.get(key.ofType(Types.providerOf(key.getTypeLiteral().getType()))); in testMultibindingProviderDependencies()
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
D | SilenceTrackImpl.java | 22 public SilenceTrackImpl(Track ofType, long ms) { in SilenceTrackImpl() argument 23 source = ofType; in SilenceTrackImpl() 24 if ("mp4a".equals(ofType.getSampleDescriptionBox().getSampleEntry().getType())) { in SilenceTrackImpl() 37 …throw new RuntimeException("Tracks of type " + ofType.getClass().getSimpleName() + " are not suppo… in SilenceTrackImpl()
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRDebugEventListener.h | 226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text; 232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
D | ANTLRDebugEventProxy.h | 99 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text; 100 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRDebugEventListener.h | 226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text; 232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
D | ANTLRDebugEventProxy.h | 99 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text; 100 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRDebugEventListener.h | 226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text; 232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
D | ANTLRDebugEventProxy.h | 99 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text; 100 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRDebugEventListener.h | 226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text; 232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
D | ANTLRDebugEventProxy.h | 99 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text; 100 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
|
D | ANTLRDebugTreeNodeStream.m | 104 [debugListener LT:k foundNode:hash ofType:type text:text]; 121 [debugListener consumeNode:hash ofType:aType text:theText];
|
D | ANTLRDebugEventProxy.m | 312 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text 321 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text
|
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/ |
D | OptionalBinder.java | 256 return (Key<Provider<T>>) key.ofType(providerT); in providerOf() 325 this.optionalKey = typeKey.ofType(optionalOf(literal)); in RealOptionalBinder() 326 this.optionalJavaxProviderKey = typeKey.ofType(optionalOfJavaxProvider(literal)); in RealOptionalBinder() 327 this.optionalProviderKey = typeKey.ofType(optionalOfProvider(literal)); in RealOptionalBinder() 339 this.javaOptionalKey = typeKey.ofType(javaOptionalOf(literal)); in RealOptionalBinder() 340 this.javaOptionalJavaxProviderKey = typeKey.ofType(javaOptionalOfJavaxProvider(literal)); in RealOptionalBinder() 341 this.javaOptionalProviderKey = typeKey.ofType(javaOptionalOfProvider(literal)); in RealOptionalBinder()
|
D | Multibinder.java | 178 key.ofType(setOf(key.getTypeLiteral()))); in newRealSetBinder() 283 this.collectionOfProvidersKey = setKey.ofType(collectionOfProvidersOf(elementType)); in RealMultibinder() 284 this.collectionOfJavaxProvidersKey = setKey.ofType(collectionOfJavaxProvidersOf(elementType)); in RealMultibinder() 483 Dependency.get(key.ofType(Types.providerOf(key.getTypeLiteral().getType())))); in getDependencies()
|
D | MapBinder.java | 246 valueTypeAndAnnotation.ofType(mapOf(keyType, valueType)), in newRealMapBinder() 248 valueTypeAndAnnotation.ofType(entryOfProviderOf(keyType, valueType)))); in newRealMapBinder() 336 this.providerMapKey = mapKey.ofType(mapOfProviderOf(keyType, valueType)); in RealMapBinder() 337 this.javaxProviderMapKey = mapKey.ofType(mapOfJavaxProviderOf(keyType, valueType)); in RealMapBinder() 338 this.multimapKey = mapKey.ofType(mapOf(keyType, setOf(valueType))); in RealMapBinder() 339 this.providerMultimapKey = mapKey.ofType(mapOfSetOfProviderOf(keyType, valueType)); in RealMapBinder()
|
/external/guice/core/src/com/google/inject/ |
D | Key.java | 208 return ofType(typeLiteral.providerType()); 312 public <T> Key<T> ofType(Class<T> type) { 322 public Key<?> ofType(Type type) { 332 public <T> Key<T> ofType(TypeLiteral<T> type) {
|
/external/guice/core/src/com/google/inject/spi/ |
D | ProviderLookup.java | 110 Key<?> providerKey = getKey().ofType(Types.providerOf(getKey().getTypeLiteral().getType())); in getProvider()
|
/external/webrtc/webrtc/test/testsupport/ |
D | iosfileutils.mm | 52 ofType:fileType];
|
/external/guice/core/test/com/google/inject/ |
D | KeyTest.java | 58 Key<Integer> ki = k.ofType(Integer.class); in testOfType()
|
/external/google-breakpad/src/common/mac/ |
D | dump_syms.mm | 109 // pathForResource:ofType:inDirectory likes. 129 ofType:nil inDirectory:@"DWARF"];
|
/external/guice/core/src/com/google/inject/internal/ |
D | InjectorImpl.java | 306 Key<T> providedKey = (Key<T>) key.ofType(entryType); in getProvidedKey() 416 Key<String> stringKey = key.ofType(STRING_TYPE);
|
/external/libchrome/base/mac/ |
D | foundation_util.mm | 93 ofType:nil];
|
/external/chromium-trace/catapult/third_party/jquery/ |
D | jquery-2.1.4.js | 1672 ofType = what === "of-type"; 1685 name = ofType && elem.nodeName.toLowerCase(), 1686 useCache = !xml && !ofType; 1695 if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { 1738 if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) {
|
/external/chromium-trace/catapult/tracing/third_party/css-element-queries/test/ |
D | mootools-core-full-nocompat.js | 2231 local.createNTHPseudo = function(child, sibling, positions, ofType){ argument 2238 if (ofType){
|