HomeSort by relevance Sort by last modified time
    Searched refs:mapType (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Util.java 52 public static TypeMirror getProvidedValueTypeOfMap(DeclaredType mapType) {
53 checkState(MoreTypes.isTypeOf(Map.class, mapType), "%s is not a Map.", mapType);
54 return asDeclared(mapType.getTypeArguments().get(1)).getTypeArguments().get(0);
61 public static TypeMirror getValueTypeOfMap(DeclaredType mapType) {
62 checkState(MoreTypes.isTypeOf(Map.class, mapType), "%s is not a Map.", mapType);
63 return mapType.getTypeArguments().get(1);
69 public static TypeMirror getKeyTypeOfMap(DeclaredType mapType) {
70 checkState(MoreTypes.isTypeOf(Map.class, mapType), "%s is not a Map.", mapType)
    [all...]
Key.java 357 TypeMirror mapType = types.getDeclaredType(getMapElement(), keyType, wrappedType);
360 MoreTypes.equivalence().wrap(mapType)));
  /frameworks/support/jetifier/jetifier/core/src/test/kotlin/com/android/tools/build/jetifier/core/type/
TypesMapTest.kt 56 val result = typesMap.mapType(JavaType.fromDotVersion("test.Class"))
64 val result = typesMap.mapType(JavaType.fromDotVersion(from))
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 97 func makemap64(mapType *byte, hint int64, mapbuf *any) (hmap map[any]any)
98 func makemap(mapType *byte, hint int, mapbuf *any) (hmap map[any]any)
100 func mapaccess1(mapType *byte, hmap map[any]any, key *any) (val *any)
101 func mapaccess1_fast32(mapType *byte, hmap map[any]any, key any) (val *any)
102 func mapaccess1_fast64(mapType *byte, hmap map[any]any, key any) (val *any)
103 func mapaccess1_faststr(mapType *byte, hmap map[any]any, key any) (val *any)
104 func mapaccess1_fat(mapType *byte, hmap map[any]any, key *any, zero *byte) (val *any)
105 func mapaccess2(mapType *byte, hmap map[any]any, key *any) (val *any, pres bool)
106 func mapaccess2_fast32(mapType *byte, hmap map[any]any, key any) (val *any, pres bool)
107 func mapaccess2_fast64(mapType *byte, hmap map[any]any, key any) (val *any, pres bool
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 97 func makemap64(mapType *byte, hint int64, mapbuf *any) (hmap map[any]any)
98 func makemap(mapType *byte, hint int, mapbuf *any) (hmap map[any]any)
100 func mapaccess1(mapType *byte, hmap map[any]any, key *any) (val *any)
101 func mapaccess1_fast32(mapType *byte, hmap map[any]any, key any) (val *any)
102 func mapaccess1_fast64(mapType *byte, hmap map[any]any, key any) (val *any)
103 func mapaccess1_faststr(mapType *byte, hmap map[any]any, key any) (val *any)
104 func mapaccess1_fat(mapType *byte, hmap map[any]any, key *any, zero *byte) (val *any)
105 func mapaccess2(mapType *byte, hmap map[any]any, key *any) (val *any, pres bool)
106 func mapaccess2_fast32(mapType *byte, hmap map[any]any, key any) (val *any, pres bool)
107 func mapaccess2_fast64(mapType *byte, hmap map[any]any, key any) (val *any, pres bool
    [all...]
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
SessionRoute.h 90 explicit SessionRouteMap(session_route_map_type_t mapType) :
91 mMapType(mapType)
  /frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/
TypeRewriter.kt 33 val result = config.typesMap.mapType(type)
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/bytecode/
CoreRemapperImpl.kt 64 val mappedType = context.config.typesMap.mapType(type)
74 val subTypeResult = context.config.typesMap.mapType(type.getParentType())
  /external/spirv-llvm/lib/SPIRV/
SPIRVWriter.cpp 233 SPIRVType *mapType(Type *T, SPIRVType *BT) {
235 SPIRVDBG(dbgs() << "[mapType] " << *T << " => ";
449 return mapType(T, BM->addVoidType());
452 return mapType(T, BM->addBoolType());
455 return mapType(T, BM->addIntegerType(T->getIntegerBitWidth()));
458 return mapType(T, BM->addFloatType(T->getPrimitiveSizeInBits()));
492 return mapType(T, PipeT);
496 return mapType(T, transSPIRVOpaqueType(SPIRVImageTy));
502 return mapType(T, BM->addOpaqueGenericType(OpCode));
504 return mapType(T, BM->addPipeType())
    [all...]
SPIRVReader.cpp 410 Type *mapType(SPIRVType *BT, Type *T) {
687 return mapType(T, Type::getVoidTy(*Context));
689 return mapType(T, Type::getInt1Ty(*Context));
691 return mapType(T, Type::getIntNTy(*Context, T->getIntegerBitWidth()));
693 return mapType(T, transFPType(T));
695 return mapType(T, ArrayType::get(transType(T->getArrayElementType()),
698 return mapType(T, PointerType::get(transType(
702 return mapType(T, VectorType::get(transType(T->getVectorComponentType()),
705 return mapType(T, StructType::create(*Context, T->getName()));
712 return mapType(T, FunctionType::get(RT, PT, false))
    [all...]
  /system/netd/libbpf/include/bpf/
BpfMap.h 169 const bpf_map_type mapType);
226 bpf_map_type mapType) {
242 createMap(mapType, sizeof(Key), sizeof(Value), maxEntries, BPF_F_NO_PREALLOC));
  /frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/proguard/
ProGuardTypesMap.kt 54 fun mapType(type: ProGuardType): Set<ProGuardType>? {
  /frameworks/support/jetifier/jetifier/core/src/main/kotlin/com/android/tools/build/jetifier/core/type/
TypesMap.kt 76 fun mapType(type: JavaType): JavaType? {
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationClass.java 87 DeclaredType mapType = findInterface(mapClass.mTypeMirror);
88 if (mapType == null) {
91 component = mapType.getTypeArguments().get(1);
  /prebuilts/go/darwin-x86/src/reflect/
export_test.go 73 tt := (*mapType)(unsafe.Pointer(t))
  /prebuilts/go/linux-x86/src/reflect/
export_test.go 73 tt := (*mapType)(unsafe.Pointer(t))
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/proguard/
ProGuardTypesMapper.kt 60 val result = config.proGuardMap.mapType(type)
  /prebuilts/go/darwin-x86/src/encoding/gob/
type.go 270 checkId(23, mustGetTypeInfo(reflect.TypeOf(mapType{})).id)
334 type mapType struct {
340 func newMapType(name string) *mapType {
341 m := &mapType{CommonType{Name: name}, 0, 0}
345 func (m *mapType) init(key, elem gobType) {
352 func (m *mapType) safeString(seen map[typeId]bool) string {
362 func (m *mapType) string() string { return m.safeString(make(map[typeId]bool)) }
643 MapT *mapType
742 info.wire = &wireType{MapT: t.(*mapType)}
  /prebuilts/go/linux-x86/src/encoding/gob/
type.go 270 checkId(23, mustGetTypeInfo(reflect.TypeOf(mapType{})).id)
334 type mapType struct {
340 func newMapType(name string) *mapType {
341 m := &mapType{CommonType{Name: name}, 0, 0}
345 func (m *mapType) init(key, elem gobType) {
352 func (m *mapType) safeString(seen map[typeId]bool) string {
362 func (m *mapType) string() string { return m.safeString(make(map[typeId]bool)) }
643 MapT *mapType
742 info.wire = &wireType{MapT: t.(*mapType)}
  /external/jarjar/lib/
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-commons-3.3.jar 
  /prebuilts/misc/common/asm/
asm-commons-5.2.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
asm-commons-5.0.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
asm-commons-5.0.1.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
asm-commons-5.2.jar 

Completed in 362 milliseconds

1 2 3 4 5 6 7 8 910