Home
last modified time | relevance | path

Searched defs:TypeRef (Results 1 – 11 of 11) sorted by relevance

/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-def/src/hir/
Dtype_ref.rs112 pub enum TypeRef { enum
166 impl TypeRef { implementation
258 pub fn walk(&self, f: &mut impl FnMut(&TypeRef)) { in walk()
261 fn go(type_ref: &TypeRef, f: &mut impl FnMut(&TypeRef)) { in walk()
287 fn go_path(path: &Path, f: &mut impl FnMut(&TypeRef)) { in walk()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndexDiscovery.h19 enum class TiRefKind { TypeRef, IndexRef }; enumerator
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-def/src/
Dgenerics.rs139 TypeRef(Interned<TypeRef>), enumerator
214 target: Either<TypeRef, LifetimeRef>, in fill_bounds()
308 target: Either<TypeRef, LifetimeRef>, in add_where_predicate_from_bound()
335 type_ref: &TypeRef, in fill_implicit_impl_trait_args()
Dpretty.rs113 type_ref: &TypeRef, in print_type_ref()
Dpath.rs129 pub fn type_anchor(&self) -> Option<&TypeRef> { in type_anchor()
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-def/src/body/
Dpretty.rs661 fn print_type_ref(&mut self, ty: &TypeRef) { in print_type_ref()
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-def/src/item_tree/
Dpretty.rs468 fn print_type_ref(&mut self, type_ref: &TypeRef) { in print_type_ref()
Dlower.rs631 fn lower_type_ref(&mut self, type_ref: &ast::Type) -> Interned<TypeRef> { in lower_type_ref()
636 fn lower_type_ref_opt(&mut self, type_ref: Option<ast::Type>) -> Interned<TypeRef> { in lower_type_ref_opt()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource3.ts35 TypeRef, enumerator
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-ty/src/
Ddisplay.rs1666 impl HirDisplay for TypeRef { implementation
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir/src/
Dlib.rs2282 pub fn type_ref(self, db: &dyn HirDatabase) -> Option<TypeRef> { in type_ref()