Home
last modified time | relevance | path

Searched refs:creatorType (Results 1 – 14 of 14) sorted by relevance

/external/spdx-tools/builder/builder2v3/
Dbuild_creation_info_test.go11 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)
Dbuild_creation_info.go20 func BuildCreationInfoSection2_3(creatorType string, creator string, testValues map[string]string) …
30 CreatorType: creatorType,
/external/spdx-tools/builder/builder2v1/
Dbuild_creation_info_test.go11 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)
Dbuild_creation_info.go17 func BuildCreationInfoSection2_1(creatorType string, creator string, testValues map[string]string) …
27 CreatorType: creatorType,
/external/spdx-tools/builder/builder2v2/
Dbuild_creation_info_test.go11 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)
Dbuild_creation_info.go20 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/
DGeneratorUtilities.java242 TypeName creatorType = ParameterizedTypeName.get(PARCELABLE_CREATOR_CLASSNAME, className); in addDefaultParcelableMethods() local
246 .addSuperinterface(creatorType) in addDefaultParcelableMethods()
266 FieldSpec.builder(creatorType, "CREATOR") in addDefaultParcelableMethods()
DEarlyValidator.java1116 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/
DApplicationGenerator.java129 .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/
DComponentCreatorImplementationFactory.java402 private XType creatorType() {
408 return MethodSpecs.overriding(creatorDescriptor.factoryMethod(), creatorType());
440 MethodSpec.Builder method = MethodSpecs.overriding(supertypeMethod, creatorType());
DComponentImplementation.java782 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/
DShadowParcel.java118 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/
DKeyFactory.java147 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/
DShadowParcel.java102 Class<?> creatorType = f.getType(); in readParcelableCreator() local
103 if (!Parcelable.Creator.class.isAssignableFrom(creatorType)) { in readParcelableCreator()