HomeSort by relevance Sort by last modified time
    Searched refs:tr1 (Results 1 - 25 of 72) sorted by null

1 2 3

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
stdtr1c++.h 1 // C++ includes used for precompiling TR1 -*- C++ -*-
31 #include <tr1/array>
32 #include <tr1/cctype>
33 #include <tr1/cfenv>
34 #include <tr1/cfloat>
35 #include <tr1/cinttypes>
36 #include <tr1/climits>
37 #include <tr1/cmath>
38 #include <tr1/complex>
39 #include <tr1/cstdarg
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
math.h 0 // TR1 math.h -*- C++ -*-
25 /** @file tr1/math.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cmath>
36 using std::tr1::acos;
37 using std::tr1::acosh;
38 using std::tr1::asin;
39 using std::tr1::asinh;
40 using std::tr1::atan;
41 using std::tr1::atan2
    [all...]
complex.h 0 // TR1 complex.h -*- C++ -*-
25 /** @file tr1/complex.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/ccomplex>
ctype.h 0 // TR1 ctype.h -*- C++ -*-
25 /** @file tr1/ctype.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cctype>
fenv.h 0 // TR1 fenv.h -*- C++ -*-
25 /** @file tr1/fenv.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cfenv>
float.h 0 // TR1 float.h -*- C++ -*-
25 /** @file tr1/float.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cfloat>
inttypes.h 0 // TR1 inttypes.h -*- C++ -*-
25 /** @file tr1/inttypes.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cinttypes>
limits.h 0 // TR1 limits.h -*- C++ -*-
25 /** @file tr1/limits.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/climits>
stdarg.h 0 // TR1 stdarg.h -*- C++ -*-
25 /** @file tr1/stdarg.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cstdarg>
stdbool.h 0 // TR1 stdbool.h -*- C++ -*-
25 /** @file tr1/stdbool.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cstdbool>
stdint.h 0 // TR1 stdint.h -*- C++ -*-
25 /** @file tr1/stdint.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cstdint>
stdio.h 0 // TR1 stdio.h -*- C++ -*-
25 /** @file tr1/stdio.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cstdio>
tgmath.h 0 // TR1 tgmath.h -*- C++ -*-
25 /** @file tr1/tgmath.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/ctgmath>
wchar.h 0 // TR1 wchar.h -*- C++ -*-
25 /** @file tr1/wchar.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cwchar>
wctype.h 0 // TR1 wctype.h -*- C++ -*-
25 /** @file tr1/wctype.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cwctype>
stdlib.h 0 // TR1 stdlib.h -*- C++ -*-
25 /** @file tr1/stdlib.h
26 * This is a TR1 C++ Library header.
32 #include <tr1/cstdlib>
38 using std::tr1::atoll;
39 using std::tr1::strtoll;
40 using std::tr1::strtoull;
42 using std::tr1::abs;
44 using std::tr1::div;
functional_hash.h 0 // TR1 functional_hash.h header -*- C++ -*-
25 /** @file tr1/functional_hash.h
36 # error TR1 header cannot be included from C++0x header
43 # define _GLIBCXX_BEGIN_NAMESPACE_TR1 namespace tr1 {
45 # define _GLIBCXX_TR1 tr1::
hashtable.h 0 // TR1 hashtable.h header -*- C++ -*-
25 /** @file tr1/hashtable.h
36 # error TR1 header cannot be included from C++0x header
43 # define _GLIBCXX_BEGIN_NAMESPACE_TR1 namespace tr1 {
45 # define _GLIBCXX_TR1 tr1::
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
type_utils.hpp 47 #include <tr1/type_traits>
55 using std::tr1::is_same;
56 using std::tr1::is_const;
57 using std::tr1::is_pointer;
58 using std::tr1::is_reference;
59 using std::tr1::is_fundamental;
60 using std::tr1::is_member_object_pointer;
61 using std::tr1::is_member_pointer;
62 using std::tr1::is_base_of;
63 using std::tr1::remove_const
    [all...]
  /external/stlport/test/unit/
shared_ptr_test.cpp 28 public std::tr1::enable_shared_from_this<X>
34 std::tr1::shared_ptr<X> p( new X );
35 std::tr1::shared_ptr<X> q = p->shared_from_this();
reference_wrapper_test.cpp 29 typedef std::tr1::reference_wrapper<int> rr_type;
37 rr_type r1 = std::tr1::ref(i);
41 r1 = std::tr1::ref(j);
60 typedef std::tr1::reference_wrapper<const int> crr_type;
68 crr_type r1 = std::tr1::cref(i);
72 r1 = std::tr1::cref(j);
  /ndk/tests/device/test-gnustl-full/unit/
shared_ptr_test.cpp 28 public std::tr1::enable_shared_from_this<X>
34 std::tr1::shared_ptr<X> p( new X );
35 std::tr1::shared_ptr<X> q = p->shared_from_this();
reference_wrapper_test.cpp 29 typedef std::tr1::reference_wrapper<int> rr_type;
37 rr_type r1 = std::tr1::ref(i);
41 r1 = std::tr1::ref(j);
60 typedef std::tr1::reference_wrapper<const int> crr_type;
68 crr_type r1 = std::tr1::cref(i);
72 r1 = std::tr1::cref(j);
  /ndk/tests/device/test-stlport/unit/
shared_ptr_test.cpp 28 public std::tr1::enable_shared_from_this<X>
34 std::tr1::shared_ptr<X> p( new X );
35 std::tr1::shared_ptr<X> q = p->shared_from_this();
reference_wrapper_test.cpp 29 typedef std::tr1::reference_wrapper<int> rr_type;
37 rr_type r1 = std::tr1::ref(i);
41 r1 = std::tr1::ref(j);
60 typedef std::tr1::reference_wrapper<const int> crr_type;
68 crr_type r1 = std::tr1::cref(i);
72 r1 = std::tr1::cref(j);

Completed in 144 milliseconds

1 2 3