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

1 2 3 4 5 6 7 8 910

  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ValidationReportTest.java 51 ValidationReport.about(getTypeElement("test.TestClass"));
71 ValidationReport.about(getTypeElement("test.TestClass"));
72 reportBuilder.addError("simple error", getTypeElement(String.class));
91 ValidationReport.about(getTypeElement("test.TestClass"));
94 ValidationReport.about(getTypeElement(String.class))
119 protected final TypeElement getTypeElement(Class<?> clazz) {
120 return getTypeElement(clazz.getCanonicalName());
123 protected final TypeElement getTypeElement(String canonicalName) {
124 return processingEnv.getElementUtils().getTypeElement(canonicalName);
KeyTest.java 69 compilationRule.getElements().getTypeElement(InjectedClass.class.getCanonicalName());
85 TypeMirror stringType = elements.getTypeElement(String.class.getCanonicalName()).asType();
87 elements.getTypeElement(ProvidesMethodModule.class.getCanonicalName());
105 TypeMirror stringType = elements.getTypeElement(String.class.getCanonicalName()).asType();
107 elements.getTypeElement(TestQualifier.class.getCanonicalName());
109 elements.getTypeElement(QualifiedProvidesMethodModule.class.getCanonicalName());
121 elements.getTypeElement(QualifiedProvidesMethodModule.class.getCanonicalName());
127 TypeMirror type = elements.getTypeElement(String.class.getCanonicalName()).asType();
129 elements.getTypeElement(QualifiedFieldHolder.class.getCanonicalName());
159 TypeElement setElement = elements.getTypeElement(Set.class.getCanonicalName())
    [all...]
DependencyRequestMapperTest.java 65 elements.getTypeElement(ProvidesMethodModule.class.getCanonicalName());
73 elements.getTypeElement(ProducesMethodModule.class.getCanonicalName());
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/types/
BoxedBooleanToBoxedIntConverter.kt 28 val tBoolean = processingEnvironment.elementUtils.getTypeElement("java.lang.Boolean")
30 val tInt = processingEnvironment.elementUtils.getTypeElement("java.lang.Integer")
StringColumnTypeAdapter.kt 25 : ColumnTypeAdapter((processingEnvironment.elementUtils.getTypeElement(
  /external/parameter-framework/upstream/parameter/
InstanceConfigurableElement.cpp 59 const CTypeElement *CInstanceConfigurableElement::getTypeElement() const
69 return getTypeElement()->getMappingData(strKey, pStrValue);
76 return getTypeElement()->getFormattedMapping();
81 bool bHasMappingData = getTypeElement()->hasMappingData();
223 getTypeElement()->setXmlDescriptionAttribute(xmlElement);
Parameter.cpp 68 static_cast<const CParameterType *>(getTypeElement())
80 return static_cast<const CParameterType *>(getTypeElement())->getSize();
88 static_cast<const CParameterType *>(getTypeElement())->getDefaultValue();
177 if (!static_cast<const CParameterType *>(getTypeElement())
203 return static_cast<const CParameterType *>(getTypeElement())
BitParameter.cpp 84 if (static_cast<const CBitParameterType *>(getTypeElement())->getBitSize() != 1) {
153 if (!static_cast<const CBitParameterType *>(getTypeElement())
177 static_cast<const CBitParameterType *>(getTypeElement())
191 return static_cast<const CBitParameterType *>(getTypeElement())->merge(uiOriginData, uiNewData);
BitParameterBlock.cpp 58 return static_cast<const CBitParameterBlockType *>(getTypeElement())->getSize();
ArrayParameter.cpp 57 return getTypeElement()->getArrayLength();
182 static_cast<const CParameterType *>(getTypeElement())->getDefaultValue();
406 if (!static_cast<const CParameterType *>(getTypeElement())
432 return static_cast<const CParameterType *>(getTypeElement())
InstanceConfigurableElement.h 60 const CTypeElement *getTypeElement() const;
StringParameter.cpp 57 return static_cast<const CStringParameterType *>(getTypeElement())->getMaxLength() + 1;
  /frameworks/support/room/compiler/src/test/kotlin/androidx/room/testing/
TestInvocation.kt 30 return processingEnv.elementUtils.getTypeElement(qName)
  /frameworks/support/room/compiler/src/test/kotlin/androidx/room/solver/
TypeAdapterStoreTest.kt 85 .getTypeElement("java.lang.Boolean")
131 .getTypeElement("foo.bar.Point").asType()
163 val tDate = processingEnv.elementUtils.getTypeElement("java.util.Date").asType()
232 .getTypeElement(ReactiveStreamsTypeNames.PUBLISHER.toString())
244 .getTypeElement(ReactiveStreamsTypeNames.PUBLISHER.toString())
256 .getTypeElement(RxJava2TypeNames.FLOWABLE.toString())
268 .getTypeElement(LifecyclesTypeNames.LIVE_DATA.toString())
280 .getTypeElement(DataSource::class.java.canonicalName)
292 .getTypeElement(PositionalDataSource::class.java.canonicalName)
304 .getTypeElement(PagingTypeNames.DATA_SOURCE_FACTORY.toString()
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationAnalyzer.java 104 TypeElement typeElement = getTypeElement(className, imports);
114 TypeElement typeElement = getTypeElement(baseClassName, imports);
146 private TypeElement getTypeElement(String className, Map<String, String> imports) {
160 TypeElement javaLang = elementUtils.getTypeElement(javaLangClass);
169 TypeElement typeElement = elementUtils.getTypeElement(className);
172 TypeElement parent = getTypeElement(className.substring(0, lastDot), imports);
177 return getTypeElement(name, null);
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/writer/
ClassNameTest.java 80 TypeElement element = elements.getTypeElement(Object.class.getCanonicalName());
87 TypeElement element = elements.getTypeElement(ClassNameTest.class.getCanonicalName());
96 TypeElement element = elements.getTypeElement(OuterClass.class.getCanonicalName());
105 TypeElement element = elements.getTypeElement(InnerClass.class.getCanonicalName());
  /external/parameter-framework/upstream/test/introspection-subsystem/
IntrospectionSubsystemObject.cpp 45 return static_cast<const CParameterType *>(element->getTypeElement());
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/binderprovider/
FlowableQueryResultBinderProvider.kt 34 .getTypeElement(RxJava2TypeNames.FLOWABLE.toString())?.asType()
39 .getTypeElement(RoomRxJava2TypeNames.RX_ROOM.toString()) != null
GuavaListenableFutureQueryResultBinderProvider.kt 35 .getTypeElement(RoomGuavaTypeNames.GUAVA_ROOM.toString()) != null
DataSourceQueryResultBinderProvider.kt 33 .getTypeElement(PagingTypeNames.DATA_SOURCE.toString())?.asType()
38 .getTypeElement(PagingTypeNames.POSITIONAL_DATA_SOURCE.toString())?.asType()
  /external/desugar/java/com/google/devtools/common/options/processor/
ProcessorUtils.java 38 TypeElement annotationElement = elementUtils.getTypeElement(annotation.getCanonicalName());
91 return elementUtils.getTypeElement(qualifiedName);
OptionProcessor.java 110 TypeElement typeElement = elementUtils.getTypeElement(typeName);
139 elementUtils.getTypeElement("com.google.devtools.common.options.OptionsBase").asType();
173 TypeMirror listType = elementUtils.getTypeElement(List.class.getCanonicalName()).asType();
236 elementUtils.getTypeElement(converterInstance.getClass().getCanonicalName());
289 elementUtils.getTypeElement(String.class.getCanonicalName()).asType()))
325 optionType, elementUtils.getTypeElement(Void.class.getCanonicalName()).asType())) {
335 elementUtils.getTypeElement(Converter.class.getCanonicalName());
461 elementUtils.getTypeElement(ExpansionFunction.class.getCanonicalName());
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliField.java 99 PsiTypeElement typeElement = getTypeElement();
105 return getTypeElement().getType();
108 @Nullable @Override public SmaliTypeElement getTypeElement() {
SmaliMethodParameter.java 78 @NotNull @Override public SmaliTypeElement getTypeElement() {
89 return getTypeElement().getType();
  /external/parameter-framework/upstream/skeleton-subsystem/
SkeletonSubsystemObject.cpp 57 static_cast<const CParameterType *>(pInstanceConfigurableElement->getTypeElement());

Completed in 246 milliseconds

1 2 3 4 5 6 7 8 910