HomeSort by relevance Sort by last modified time
    Searched refs:tr1 (Results 26 - 50 of 253) sorted by null

12 3 4 5 6 7 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
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;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
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;
  /external/clang/test/SemaCXX/
libstdcxx_map_base_hack.cpp 4 // declaration for std::tr1::__detail::_Map base has different
9 namespace std { namespace tr1 { namespace __detail { namespace in namespace:std
16 namespace std { namespace tr1 { namespace in namespace:std
25 std::tr1::X1<int> x1i;
libstdcxx_pointer_return_false_hack.cpp 4 // an issue with libstdc++-4.2's <tr1/hashtable> implementation.
12 namespace tr1 { namespace in namespace:std
30 auto *test1 = std::tr1::hashtable<int>().find_node();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.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...]
  /art/libdexfile/dex/
type_reference.h 44 bool operator()(const TypeReference& tr1, const TypeReference& tr2) const {
47 StringReference sr1(tr1.dex_file, tr1.dex_file->GetTypeId(tr1.TypeIndex()).descriptor_idx_);
  /external/google-breakpad/src/common/
unordered.h 30 // Include this file to use unordered_map and unordered_set. If tr1
55 #else // Fallback to tr1::unordered
56 #include <tr1/unordered_map>
57 #include <tr1/unordered_set>
58 using std::tr1::unordered_map;
59 using std::tr1::unordered_set;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
ptc-1.s 5 pta 0x100, tr1
  /external/protobuf/config/
config.h 8 #define HASH_MAP_H <tr1/unordered_map>
11 #define HASH_NAMESPACE std::tr1
17 #define HASH_SET_H <tr1/unordered_set>
  /external/webrtc/webrtc/common_audio/resampler/
sinc_resampler_unittest.cc 230 typedef std::tr1::tuple<int, int, double, double> SincResamplerTestData;
235 : input_rate_(std::tr1::get<0>(GetParam())),
236 output_rate_(std::tr1::get<1>(GetParam())),
237 rms_error_(std::tr1::get<2>(GetParam())),
238 low_freq_error_(std::tr1::get<3>(GetParam())) {
346 std::tr1::make_tuple(8000, 44100, kResamplingRMSError, -62.73),
347 std::tr1::make_tuple(11025, 44100, kResamplingRMSError, -72.19),
348 std::tr1::make_tuple(16000, 44100, kResamplingRMSError, -62.54),
349 std::tr1::make_tuple(22050, 44100, kResamplingRMSError, -73.53),
350 std::tr1::make_tuple(32000, 44100, kResamplingRMSError, -63.32)
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
unordered_set.h 7 #include <tr1/unordered_set>
15 using std::tr1::unordered_set;
18 typedef std::tr1::unordered_set<void *> voidptr_unordered_set;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/
Test_monitor_enter.java 37 Thread tr1 = new Thread(r1); local
39 tr1.start();
42 tr1.join();
57 Thread tr1 = new Thread(r1); local
59 tr1.start();
62 tr1.join();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_colorsys.py 11 def assertTripleEqual(self, tr1, tr2):
12 self.assertEqual(len(tr1), 3)
14 self.assertAlmostEqual(tr1[0], tr2[0])
15 self.assertAlmostEqual(tr1[1], tr2[1])
16 self.assertAlmostEqual(tr1[2], tr2[2])
  /external/python/cpython2/Lib/test/
test_colorsys.py 11 def assertTripleEqual(self, tr1, tr2):
12 self.assertEqual(len(tr1), 3)
14 self.assertAlmostEqual(tr1[0], tr2[0])
15 self.assertAlmostEqual(tr1[1], tr2[1])
16 self.assertAlmostEqual(tr1[2], tr2[2])
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_colorsys.py 11 def assertTripleEqual(self, tr1, tr2):
12 self.assertEqual(len(tr1), 3)
14 self.assertAlmostEqual(tr1[0], tr2[0])
15 self.assertAlmostEqual(tr1[1], tr2[1])
16 self.assertAlmostEqual(tr1[2], tr2[2])
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_colorsys.py 11 def assertTripleEqual(self, tr1, tr2):
12 self.assertEqual(len(tr1), 3)
14 self.assertAlmostEqual(tr1[0], tr2[0])
15 self.assertAlmostEqual(tr1[1], tr2[1])
16 self.assertAlmostEqual(tr1[2], tr2[2])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_colorsys.py 11 def assertTripleEqual(self, tr1, tr2):
12 self.assertEqual(len(tr1), 3)
14 self.assertAlmostEqual(tr1[0], tr2[0])
15 self.assertAlmostEqual(tr1[1], tr2[1])
16 self.assertAlmostEqual(tr1[2], tr2[2])

Completed in 996 milliseconds

12 3 4 5 6 7 8 91011