Home
last modified time | relevance | path

Searched refs:ofType (Results 1 – 25 of 27) sorted by relevance

12

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
DSilenceTrackImpl.java22 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/guice/extensions/multibindings/test/com/google/inject/multibindings/
DSpiUtils.java168 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 …]
/external/python/cpython2/Mac/PythonLauncher/
DMyDocument.m99 … You can also choose to override -fileWrapperRepresentationOfType: or -writeToFile:ofType: instead.
103 - (BOOL)readFromFile:(NSString *)fileName ofType:(NSString *)type;
105 …u can also choose to override -loadFileWrapperRepresentation:ofType: or -readFromFile:ofType: inst…
DFileSettings.m111 ofType: @"plist"];
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
DANTLRDebugEventListener.h226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text;
232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
DANTLRDebugEventProxy.h99 - (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/
DANTLRDebugEventListener.h226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text;
232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
DANTLRDebugEventProxy.h99 - (void) consumeNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
100 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
DANTLRDebugTreeNodeStream.m104 [debugListener LT:k foundNode:hash ofType:type text:text];
121 [debugListener consumeNode:hash ofType:aType text:theText];
DANTLRDebugEventProxy.m312 - (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/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
DANTLRDebugEventListener.h226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text;
232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
DANTLRDebugEventProxy.h99 - (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/Current/Headers/
DANTLRDebugEventListener.h226 - (void) consumeNode:(NSInteger)nodeHash ofType:(NSInteger)type text:(NSString *)text;
232 - (void) LT:(NSInteger)i foundNode:(unsigned)nodeHash ofType:(NSInteger)type text:(NSString *)text;
DANTLRDebugEventProxy.h99 - (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/guice/extensions/multibindings/src/com/google/inject/multibindings/
DOptionalBinder.java256 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()
DMultibinder.java178 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()
DMapBinder.java246 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/
DKey.java208 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/r8/src/main/java/com/android/tools/r8/compatdx/
DCompatDx.java206 .ofType(Integer.class) in Spec()
220 .ofType(Integer.class) in Spec()
229 .ofType(Integer.class) in Spec()
243 .withRequiredArg().ofType(Integer.class); in Spec()
/external/guice/core/src/com/google/inject/spi/
DProviderLookup.java110 Key<?> providerKey = getKey().ofType(Types.providerOf(getKey().getTypeLiteral().getType())); in getProvider()
/external/webrtc/webrtc/test/testsupport/
Diosfileutils.mm52 ofType:fileType];
/external/guice/core/test/com/google/inject/
DKeyTest.java58 Key<Integer> ki = k.ofType(Integer.class); in testOfType()
/external/google-breakpad/src/common/mac/
Ddump_syms.mm109 // pathForResource:ofType:inDirectory likes.
129 ofType:nil inDirectory:@"DWARF"];
/external/guice/core/src/com/google/inject/internal/
DInjectorImpl.java306 Key<T> providedKey = (Key<T>) key.ofType(entryType); in getProvidedKey()
416 Key<String> stringKey = key.ofType(STRING_TYPE);
/external/libchrome/base/mac/
Dfoundation_util.mm97 ofType:nil];

12