/external/spdx-tools/builder/builder2v3/ |
D | build_creation_info_test.go | 11 creatorType := "Organization" 16 ci, err := BuildCreationInfoSection2_3(creatorType, creator, testValues) 39 creatorType := "Person" 44 ci, err := BuildCreationInfoSection2_3(creatorType, creator, testValues) 64 creatorType := "Tool" 69 ci, err := BuildCreationInfoSection2_3(creatorType, creator, testValues) 89 creatorType := "Whatever" 94 ci, err := BuildCreationInfoSection2_3(creatorType, creator, testValues)
|
D | build_creation_info.go | 20 func BuildCreationInfoSection2_3(creatorType string, creator string, testValues map[string]string) … 30 CreatorType: creatorType,
|
/external/spdx-tools/builder/builder2v1/ |
D | build_creation_info_test.go | 11 creatorType := "Organization" 16 ci, err := BuildCreationInfoSection2_1(creatorType, creator, testValues) 39 creatorType := "Person" 44 ci, err := BuildCreationInfoSection2_1(creatorType, creator, testValues) 64 creatorType := "Tool" 69 ci, err := BuildCreationInfoSection2_1(creatorType, creator, testValues) 89 creatorType := "Whatever" 94 ci, err := BuildCreationInfoSection2_1(creatorType, creator, testValues)
|
D | build_creation_info.go | 17 func BuildCreationInfoSection2_1(creatorType string, creator string, testValues map[string]string) … 27 CreatorType: creatorType,
|
/external/spdx-tools/builder/builder2v2/ |
D | build_creation_info_test.go | 11 creatorType := "Organization" 16 ci, err := BuildCreationInfoSection2_2(creatorType, creator, testValues) 39 creatorType := "Person" 44 ci, err := BuildCreationInfoSection2_2(creatorType, creator, testValues) 64 creatorType := "Tool" 69 ci, err := BuildCreationInfoSection2_2(creatorType, creator, testValues) 89 creatorType := "Whatever" 94 ci, err := BuildCreationInfoSection2_2(creatorType, creator, testValues)
|
D | build_creation_info.go | 20 func BuildCreationInfoSection2_2(creatorType string, creator string, testValues map[string]string) … 30 CreatorType: creatorType,
|
/external/connectedappssdk/processor/src/main/java/com/google/android/enterprise/connectedapps/processor/ |
D | GeneratorUtilities.java | 242 TypeName creatorType = ParameterizedTypeName.get(PARCELABLE_CREATOR_CLASSNAME, className); in addDefaultParcelableMethods() local 246 .addSuperinterface(creatorType) in addDefaultParcelableMethods() 266 FieldSpec.builder(creatorType, "CREATOR") in addDefaultParcelableMethods()
|
D | EarlyValidator.java | 1116 TypeName creatorType = in validateCustomParcelableWrapper() local 1129 .filter(p -> ClassName.get(p.asType()).equals(creatorType)) in validateCustomParcelableWrapper()
|
/external/dagger2/java/dagger/hilt/android/processor/internal/androidentrypoint/ |
D | ApplicationGenerator.java | 129 .initializer("new $T($L)", AndroidClassNames.APPLICATION_COMPONENT_MANAGER, creatorType()) in componentManagerField() 153 private TypeSpec creatorType() { in creatorType() method in ApplicationGenerator
|
/external/dagger2/java/dagger/internal/codegen/writing/ |
D | ComponentCreatorImplementationFactory.java | 402 private XType creatorType() { 408 return MethodSpecs.overriding(creatorDescriptor.factoryMethod(), creatorType()); 440 MethodSpec.Builder method = MethodSpecs.overriding(supertypeMethod, creatorType());
|
D | ComponentImplementation.java | 782 ClassName creatorType; in createRootComponentFactoryMethod() local 790 creatorType = descriptor.typeElement().getClassName(); in createRootComponentFactoryMethod() 795 creatorType = getCreatorName(); in createRootComponentFactoryMethod() 804 .returns(creatorType) in createRootComponentFactoryMethod()
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowParcel.java | 118 Class<?> creatorType = f.getType(); in readParcelableCreator() local 119 if (!Parcelable.Creator.class.isAssignableFrom(creatorType)) { in readParcelableCreator() 233 Class<?> creatorType = f.getType(); in readParcelableCreatorInternal() local 234 if (!Parcelable.Creator.class.isAssignableFrom(creatorType)) { in readParcelableCreatorInternal()
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | KeyFactory.java | 147 public Key forSubcomponentCreator(XType creatorType) { in forSubcomponentCreator() argument 148 return Key.builder(DaggerType.from(creatorType)).build(); in forSubcomponentCreator()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowParcel.java | 102 Class<?> creatorType = f.getType(); in readParcelableCreator() local 103 if (!Parcelable.Creator.class.isAssignableFrom(creatorType)) { in readParcelableCreator()
|