Home
last modified time | relevance | path

Searched refs:findType (Results 1 – 17 of 17) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DMethodImpl.java143 return findType(returnSignature()); in returnType()
146 public Type findType(String signature) throws ClassNotLoadedException { in findType() method in MethodImpl
148 return enclosing.findType(signature); in findType()
162 return enclosing.findType(signature); in argumentType()
247 public Type findType(String signature) throws ClassNotLoadedException { in findType() method in MethodImpl.ReturnContainer
248 return MethodImpl.this.findType(signature); in findType()
278 public Type findType(String signature) throws ClassNotLoadedException { in findType() method in MethodImpl.ArgumentContainer
279 return MethodImpl.this.findType(signature); in findType()
DFieldImpl.java68 return findType(signature()); in type()
71 public Type findType(String signature) throws ClassNotLoadedException { in findType() method in FieldImpl
73 return enclosing.findType(signature); in findType()
DLocalVariableImpl.java102 return findType(signature()); in type()
105 public Type findType(String signature) throws ClassNotLoadedException { in findType() method in LocalVariableImpl
107 return enclosing.findType(signature); in findType()
DArrayReferenceImpl.java244 destination.findType(destComponentSignature); in validateAssignment()
279 public Type findType(String signature) throws ClassNotLoadedException { in findType() method in ArrayReferenceImpl.Component
DValueContainer.java38 Type findType(String signature) throws ClassNotLoadedException; in findType() method
DClassLoaderReferenceImpl.java96 Type findType(String signature) throws ClassNotLoadedException { in findType() method in ClassLoaderReferenceImpl
DArrayTypeImpl.java62 return findType(componentSignature()); in type()
DReferenceTypeImpl.java1139 Type findType(String signature) throws ClassNotLoadedException { in findType() method in ReferenceTypeImpl
1160 type = loader.findType(signature); in findType()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparser/
DNavigator.java54 public static Optional<TypeDeclaration<?>> findType(CompilationUnit cu, String qualifiedName) { in findType() method in Navigator
64 return findType(type.get(), innerTypeName); in findType()
69 … public static Optional<TypeDeclaration<?>> findType(TypeDeclaration<?> td, String qualifiedName) { in findType() method in Navigator
81 return findType(type.get(), innerTypeName); in findType()
95 Optional<TypeDeclaration<?>> res = findType(cu, qualifiedName); in demandEnum()
156 return findType(compilationUnit, qualifiedName) in demandClassOrInterface()
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_javaparser_Navigator.txt17 …Line 58) findType(type.get(), innerTypeName) ==> com.github.javaparser.symbolsolver.javaparser.Nav…
29 …Line 75) findType(type.get(), innerTypeName) ==> com.github.javaparser.symbolsolver.javaparser.Nav…
33 …Line 89) findType(cu, qualifiedName) ==> com.github.javaparser.symbolsolver.javaparser.Navigator.f…
67 …Line 197) findType(compilationUnit, qualifiedName) ==> com.github.javaparser.symbolsolver.javapars…
Dcom_github_javaparser_symbolsolver_resolution_typesolvers_JavaParserTypeSolver.txt34 …Line 134) Navigator.findType(compilationUnit, typeName) ==> com.github.javaparser.symbolsolver.jav…
42 …Line 145) Navigator.findType(compilationUnit, typeName) ==> com.github.javaparser.symbolsolver.jav…
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/
DJavaParserTypeSolver.java157 ….javaparser.ast.body.TypeDeclaration<?>> astTypeDeclaration = Navigator.findType(compilationUnit.g…
167 ….javaparser.ast.body.TypeDeclaration<?>> astTypeDeclaration = Navigator.findType(compilationUnit, …
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
DNavigator3.java.txt21 public static Optional<TypeDeclaration> findType(CompilationUnit cu, String name) {
DNavigator2.java.txt19 …public static Optional<TypeDeclaration> findType(com.github.javaparser.ast.CompilationUnit cu, Str…
DNavigatorSimplified.java.txt24 public static void findType() {
DNavigator.java.txt22 public static Optional<TypeDeclaration> findType(CompilationUnit cu, String name) {
/external/deqp-deps/glslang/SPIRV/
DSPVRemapper.cpp1252 spv::Id spirvbin_t::findType(const spirvbin_t::globaltypes_t& globalTypes, spv::Id lt) const in findType() function in spv::spirvbin_t