HomeSort by relevance Sort by last modified time
    Searched defs:int_type (Results 26 - 50 of 115) sorted by null

12 3 4 5

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
pbackfail.pass.cpp 14 // int_type pbackfail(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
underflow.pass.cpp 14 // int_type underflow();
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type underflow() {return base::underflow();}
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_strstream.h 74 virtual int_type overflow(int_type __c = _Traits::eof());
75 virtual int_type pbackfail(int_type __c = _Traits::eof());
76 virtual int_type underflow();
142 typedef char_traits<char>::int_type int_type; typedef in class:strstream
_ostreambuf_iterator.h 46 typedef typename _Traits::int_type int_type; typedef in class:ostreambuf_iterator
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
stdio_filebuf.h 56 typedef typename traits_type::int_type int_type; typedef in class:stdio_filebuf
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
overflow.pass.cpp 14 // int_type overflow(int_type c = traits::eof());
29 typedef typename base::int_type int_type; typedef in struct:test_buf
37 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 12 // int_type pbackfail(int_type c = traits::eof());
25 typedef typename base::int_type int_type; typedef in struct:test_buf
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
underflow.pass.cpp 14 // int_type underflow();
29 typedef typename base::int_type int_type; typedef in struct:test_buf
36 virtual int_type underflow() {return base::underflow();}
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
overflow.pass.cpp 14 // int_type overflow(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
pbackfail.pass.cpp 14 // int_type pbackfail(int_type c = traits::eof());
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);}
underflow.pass.cpp 14 // int_type underflow();
28 typedef base::int_type int_type; typedef in struct:test_buf
38 virtual int_type underflow() {return base::underflow();}
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
constexpr_char_traits.hpp 22 typedef int int_type; typedef in struct:constexpr_char_traits
43 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT
46 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT
49 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT
50 {return int_type(__c);}
52 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT
55 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT
56 {return int_type(EOF);
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_strstream.h 74 virtual int_type overflow(int_type __c = _Traits::eof());
75 virtual int_type pbackfail(int_type __c = _Traits::eof());
76 virtual int_type underflow();
142 typedef char_traits<char>::int_type int_type; typedef in class:strstream
_ostreambuf_iterator.h 46 typedef typename _Traits::int_type int_type; typedef in class:ostreambuf_iterator
  /external/fmtlib/fmt/
ostream.h 23 typedef typename std::basic_streambuf<Char>::int_type int_type; typedef in class:fmt::internal::FormatBuf
34 int_type overflow(int_type ch = traits_type::eof()) {
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_ostreambuf_iterator.h 46 typedef typename _Traits::int_type int_type; typedef in class:ostreambuf_iterator
  /external/mesa3d/src/compiler/glsl/
ir_expression_operation.py 82 int_type = type("int", "i", "GLSL_TYPE_INT") variable
87 all_types = (uint_type, int_type, float_type, double_type, bool_type)
88 numeric_types = (uint_type, int_type, float_type, double_type)
89 signed_numeric_types = (int_type, float_type, double_type)
90 integer_types = (uint_type, int_type)
432 operation("f2i", 1, source_types=(float_type,), dest_type=int_type, c_expression="(int) {src0}"),
436 operation("i2f", 1, source_types=(int_type,), dest_type=float_type, c_expression="(float) {src0}"),
444 operation("b2i", 1, source_types=(bool_type,), dest_type=int_type, c_expression="{src0} ? 1 : 0"),
448 operation("i2u", 1, source_types=(int_type,), dest_type=uint_type, c_expression="{src0}"),
450 operation("u2i", 1, source_types=(uint_type,), dest_type=int_type, c_expression="{src0}")
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_printf.c 140 LLVMTypeRef int_type = LLVMIntTypeInContext(gallivm->context, sizeof(int) * 8); local
142 param = LLVMBuildZExt(builder, param, int_type, "");
144 param = LLVMBuildSExt(builder, param, int_type, "");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
char_traits.h 51 * of char_traits. It defines int_type, off_type, pos_type, and
60 typedef unsigned long int_type; typedef in struct:_Char_types
72 * right, but the int_type and state_type typedefs, and the eof()
86 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits
122 to_char_type(const int_type& __c)
125 static _GLIBCXX_CONSTEXPR int_type
127 { return static_cast<int_type>(__c); }
130 eq_int_type(const int_type& __c1, const int_type& __c2
236 typedef int int_type; typedef in struct:char_traits
307 typedef wint_t int_type; typedef in struct:char_traits
386 typedef uint_least16_t int_type; typedef in struct:char_traits
479 typedef uint_least32_t int_type; typedef in struct:char_traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
stdio_sync_filebuf.h 62 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf
72 int_type _M_unget_buf;
91 int_type
94 int_type
95 syncungetc(int_type __c);
97 int_type
98 syncputc(int_type __c);
100 virtual int_type
103 int_type __c = this->syncgetc()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
char_traits.h 51 * of char_traits. It defines int_type, off_type, pos_type, and
60 typedef unsigned long int_type; typedef in struct:_Char_types
72 * right, but the int_type and state_type typedefs, and the eof()
86 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits
122 to_char_type(const int_type& __c)
125 static _GLIBCXX_CONSTEXPR int_type
127 { return static_cast<int_type>(__c); }
130 eq_int_type(const int_type& __c1, const int_type& __c2
236 typedef int int_type; typedef in struct:char_traits
307 typedef wint_t int_type; typedef in struct:char_traits
386 typedef uint_least16_t int_type; typedef in struct:char_traits
479 typedef uint_least32_t int_type; typedef in struct:char_traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
stdio_sync_filebuf.h 62 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf
72 int_type _M_unget_buf;
91 int_type
94 int_type
95 syncungetc(int_type __c);
97 int_type
98 syncputc(int_type __c);
100 virtual int_type
103 int_type __c = this->syncgetc()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
char_traits.h 51 * of char_traits. It defines int_type, off_type, pos_type, and
60 typedef unsigned long int_type; typedef in struct:_Char_types
72 * right, but the int_type and state_type typedefs, and the eof()
86 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits
122 to_char_type(const int_type& __c)
125 static _GLIBCXX_CONSTEXPR int_type
127 { return static_cast<int_type>(__c); }
130 eq_int_type(const int_type& __c1, const int_type& __c2
236 typedef int int_type; typedef in struct:char_traits
307 typedef wint_t int_type; typedef in struct:char_traits
386 typedef uint_least16_t int_type; typedef in struct:char_traits
479 typedef uint_least32_t int_type; typedef in struct:char_traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
stdio_sync_filebuf.h 62 typedef typename traits_type::int_type int_type; typedef in class:stdio_sync_filebuf
72 int_type _M_unget_buf;
91 int_type
94 int_type
95 syncungetc(int_type __c);
97 int_type
98 syncputc(int_type __c);
100 virtual int_type
103 int_type __c = this->syncgetc()
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
char_traits.h 51 * of char_traits. It defines int_type, off_type, pos_type, and
60 typedef unsigned long int_type; typedef in struct:_Char_types
72 * right, but the int_type and state_type typedefs, and the eof()
86 typedef typename _Char_types<_CharT>::int_type int_type; typedef in struct:char_traits
122 to_char_type(const int_type& __c)
125 static _GLIBCXX_CONSTEXPR int_type
127 { return static_cast<int_type>(__c); }
130 eq_int_type(const int_type& __c1, const int_type& __c2
236 typedef int int_type; typedef in struct:char_traits
311 typedef wint_t int_type; typedef in struct:char_traits
390 typedef uint_least16_t int_type; typedef in struct:char_traits
483 typedef uint_least32_t int_type; typedef in struct:char_traits
    [all...]

Completed in 1030 milliseconds

12 3 4 5