Lines Matching refs:using

72   using iterator = char *;
76 using const_iterator = const char *;
130 using iterator = const char *;
131 using const_iterator = const char *;
174 using value_type = T;
216 using iterator_category = std::random_access_iterator_tag;
217 using value_type = T;
218 using difference_type = std::ptrdiff_t;
219 using pointer = typename std::add_pointer<T>::type;
220 using reference = typename std::add_lvalue_reference<T>::type;
256 using element_type = T;
257 using const_pointer =
259 using pointer = typename std::add_pointer<T>::type;
286 /* Deprecated */ using value_type = element_type;
305 using value_type = T;
340 using iterator = typename Slice<T>::iterator;
344 using const_iterator = typename Slice<const T>::iterator;
409 using isize = SSIZE_T;
411 using isize = ssize_t;
446 // + using IsRelocatable = std::true_type;
455 using u8 = std::uint8_t;
456 using u16 = std::uint16_t;
457 using u32 = std::uint32_t;
458 using u64 = std::uint64_t;
459 using usize = std::size_t; // see static asserts in cxx.cc
460 using i8 = std::int8_t;
461 using i16 = std::int16_t;
462 using i32 = std::int32_t;
463 using i64 = std::int64_t;
464 using f32 = float;
465 using f64 = double;
468 using string = String;
469 using str = Str;
471 using slice = Slice<T>;
473 using box = Box<T>;
475 using vec = Vec<T>;
476 using error = Error;
478 using fn = Fn<Signature>;
480 using is_relocatable = IsRelocatable<T>;
806 using std::swap;
996 using std::swap;
1078 using type = void;
1082 using void_t = typename make_void<Ts...>::type;
1090 using is_detected = detect<void, T, A...>;
1093 using detect_IsRelocatable = typename T::IsRelocatable;