Searched defs:TypeSpec (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/AST/
H A DNestedNameSpecifier.h82 TypeSpec, enumerator in enum:clang::NestedNameSpecifier::SpecifierKind
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp102 // TypeSpec
105 /// A TypeSpec is just a simple wrapper around a string, but gets its own type
108 /// A TypeSpec can be used to create a type.
109 class TypeSpec : public std::string { class in namespace:__anon3371
111 static std::vector<TypeSpec> fromTypeSpecs(StringRef Str) {
112 std::vector<TypeSpec> Ret;
113 TypeSpec Acc;
117 Ret.push_back(TypeSpec(Acc));
134 TypeSpec TS;
138 // they are not related to the type. But they live in the TypeSpec (no
[all...]
/external/fmtlib/fmt/
H A Dformat.h1694 struct TypeSpec : EmptySpec { struct in namespace:fmt
1753 template <typename T, typename SpecT = TypeSpec<0>, typename Char = char>
1784 IntFormatSpec<int, TypeSpec<'b'> > bin(int value);
1789 IntFormatSpec<int, TypeSpec<'o'> > oct(int value);
1795 IntFormatSpec<int, TypeSpec<'x'> > hex(int value);
1801 IntFormatSpec<int, TypeSpec<'X'> > hexu(int value);
1822 inline IntFormatSpec<TYPE, TypeSpec<'b'> > bin(TYPE value) { \
1823 return IntFormatSpec<TYPE, TypeSpec<'b'> >(value, TypeSpec<'b'>()); \
1826 inline IntFormatSpec<TYPE, TypeSpec<'
[all...]

Completed in 212 milliseconds