Home
last modified time | relevance | path

Searched refs:PrimKind (Results 1 – 25 of 52) sorted by relevance

123

/dports/devel/racer/racer-2.1.48/src/racer/
H A Dprimitive.rs11 pub enum PrimKind { enum
43 PrimKind::Str,
44 PrimKind::F32,
45 PrimKind::F64,
46 PrimKind::I8,
47 PrimKind::I16,
48 PrimKind::I32,
49 PrimKind::I64,
51 PrimKind::U8,
52 PrimKind::U16,
[all …]
H A Dast_types.rs9 use crate::primitive::PrimKind;
154 let make_match = |kind: PrimKind| kind.to_module_match().map(Ty::Match); in from_lit()
156 LitKind::Str(_, _) => make_match(PrimKind::Str), in from_lit()
157 LitKind::ByteStr(ref bytes) => make_match(PrimKind::U8) in from_lit()
159 LitKind::Byte(_) => make_match(PrimKind::U8), in from_lit()
160 LitKind::Char(_) => make_match(PrimKind::Char), in from_lit()
161 LitKind::Int(_, int_ty) => make_match(PrimKind::from_litint(int_ty)), in from_lit()
162 LitKind::Float(_, ast::LitFloatType::Unsuffixed) => make_match(PrimKind::F32), in from_lit()
164 ast::FloatTy::F32 => make_match(PrimKind::F32), in from_lit()
165 ast::FloatTy::F64 => make_match(PrimKind::F64), in from_lit()
[all …]
H A Dlib.rs43 pub use crate::primitive::PrimKind;
H A Dtypeinf.rs11 use crate::primitive::PrimKind;
583 Ty::Ptr(_, _) => PrimKind::Pointer.to_module_match(), in get_type_of_typedef()
584 Ty::Array(_, _) => PrimKind::Array.to_module_match(), in get_type_of_typedef()
585 Ty::Slice(_) => PrimKind::Slice.to_module_match(), in get_type_of_typedef()
/dports/devel/racer/racer-2.1.48/cargo-crates/racer-2.1.47/src/racer/
H A Dprimitive.rs11 pub enum PrimKind { enum
43 PrimKind::Str,
44 PrimKind::F32,
45 PrimKind::F64,
46 PrimKind::I8,
47 PrimKind::I16,
48 PrimKind::I32,
49 PrimKind::I64,
51 PrimKind::U8,
52 PrimKind::U16,
[all …]
H A Dast_types.rs9 use crate::primitive::PrimKind;
154 let make_match = |kind: PrimKind| kind.to_module_match().map(Ty::Match); in from_lit()
156 LitKind::Str(_, _) => make_match(PrimKind::Str), in from_lit()
157 LitKind::ByteStr(ref bytes) => make_match(PrimKind::U8) in from_lit()
159 LitKind::Byte(_) => make_match(PrimKind::U8), in from_lit()
160 LitKind::Char(_) => make_match(PrimKind::Char), in from_lit()
161 LitKind::Int(_, int_ty) => make_match(PrimKind::from_litint(int_ty)), in from_lit()
162 LitKind::Float(_, ast::LitFloatType::Unsuffixed) => make_match(PrimKind::F32), in from_lit()
164 ast::FloatTy::F32 => make_match(PrimKind::F32), in from_lit()
165 ast::FloatTy::F64 => make_match(PrimKind::F64), in from_lit()
[all …]
H A Dlib.rs43 pub use crate::primitive::PrimKind;
H A Dtypeinf.rs11 use crate::primitive::PrimKind;
583 Ty::Ptr(_, _) => PrimKind::Pointer.to_module_match(), in get_type_of_typedef()
584 Ty::Array(_, _) => PrimKind::Array.to_module_match(), in get_type_of_typedef()
585 Ty::Slice(_) => PrimKind::Slice.to_module_match(), in get_type_of_typedef()
/dports/lang/rust/rustc-1.58.1-src/vendor/racer/src/racer/
H A Dprimitive.rs11 pub enum PrimKind { enum
43 PrimKind::Str,
44 PrimKind::F32,
45 PrimKind::F64,
46 PrimKind::I8,
47 PrimKind::I16,
48 PrimKind::I32,
49 PrimKind::I64,
51 PrimKind::U8,
52 PrimKind::U16,
[all …]
H A Dast_types.rs9 use crate::primitive::PrimKind;
154 let make_match = |kind: PrimKind| kind.to_module_match().map(Ty::Match); in from_lit()
156 LitKind::Str(_, _) => make_match(PrimKind::Str), in from_lit()
157 LitKind::ByteStr(ref bytes) => make_match(PrimKind::U8) in from_lit()
159 LitKind::Byte(_) => make_match(PrimKind::U8), in from_lit()
160 LitKind::Char(_) => make_match(PrimKind::Char), in from_lit()
161 LitKind::Int(_, int_ty) => make_match(PrimKind::from_litint(int_ty)), in from_lit()
162 LitKind::Float(_, ast::LitFloatType::Unsuffixed) => make_match(PrimKind::F32), in from_lit()
164 ast::FloatTy::F32 => make_match(PrimKind::F32), in from_lit()
165 ast::FloatTy::F64 => make_match(PrimKind::F64), in from_lit()
[all …]
H A Dlib.rs43 pub use crate::primitive::PrimKind;
H A Dtypeinf.rs11 use crate::primitive::PrimKind;
583 Ty::Ptr(_, _) => PrimKind::Pointer.to_module_match(), in get_type_of_typedef()
584 Ty::Array(_, _) => PrimKind::Array.to_module_match(), in get_type_of_typedef()
585 Ty::Slice(_) => PrimKind::Slice.to_module_match(), in get_type_of_typedef()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h316 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
321 PrimitiveKind PrimKind; member
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/devel/llvm10/llvm-10.0.1.src/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/editors/imhex/ImHex-1.7.0/external/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/graphics/llvm-mesa/llvm-13.0.1.src/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h316 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
321 PrimitiveKind PrimKind; member
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/devel/llvm11/llvm-11.0.1.src/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h316 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
321 PrimitiveKind PrimKind; member
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h316 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
321 PrimitiveKind PrimKind; member
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h316 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
321 PrimitiveKind PrimKind; member
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h314 : TypeNode(NodeKind::PrimitiveType), PrimKind(K) {} in PrimitiveTypeNode()
319 PrimitiveKind PrimKind; member

123