Searched defs:std (Results 126 - 150 of 431) sorted by relevance

1234567891011>>

/external/llvm/unittests/Support/
H A DScaledNumberTest.cpp22 ScaledPair(const std::pair<UIntT, int16_t> &F) : D(F.first), S(F.second) {} argument
30 bool operator==(const std::pair<UIntT, int16_t> &L, argument
35 void PrintTo(const ScaledPair<UIntT> &F, ::std::ostream *os) {
/external/parameter-framework/upstream/utility/
H A DUtility.cpp37 using std::string;
43 std::string asString(const std::list<std::string> &lstr, const std::string &strSeparator)
45 return join<std::string>(begin(lstr), end(lstr), [strSeparator](string acc, string right) {
51 std::string asString(const std::map<std::string, std argument
[all...]
/external/valgrind/drd/tests/
H A Dstd_thread.cpp1 // Test whether no race conditions are reported on std::thread. Note: since
2 // the implementation of std::thread uses the shared pointer implementation,
18 std::thread t( []() { } );
20 std::cerr << "Done.\n";
30 std::thread::_Impl_base* __t = static_cast<std::thread::_Impl_base*>(__p);
31 std::thread::__shared_base_type __local;
39 std::terminate();
47 namespace std namespace
54 "Enable multithreading to use std
[all...]
/external/webrtc/webrtc/common_audio/vad/
H A Dvad_gmm.c26 // s = |std| (Q7)
32 int16_t std,
38 // 131072 = 1 in Q17, and (|std| >> 1) is for rounding instead of truncation.
40 tmp32 = (int32_t) 131072 + (int32_t) (std >> 1);
41 inv_std = (int16_t) WebRtcSpl_DivW32W16(tmp32, std);
30 WebRtcVad_GaussianProbability(int16_t input, int16_t mean, int16_t std, int16_t* delta) argument
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
H A Dp4.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++1y
2 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++11 -Wno-c++1y-extensions
3 // RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++98 -Wno-c++11-extensions
46 namespace std { template<typename T> struct initializer_list { initializer_list(); }; } namespace
H A Dp5.cpp1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -fsyntax-only -verify %s -std=c++11
35 namespace std { namespace
/external/clang/test/CXX/drs/
H A Ddr9xx.cpp1 // RUN: %clang_cc1 -std=c++98 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
2 // RUN: %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
3 // RUN: %clang_cc1 -std=c++14 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
4 // RUN: %clang_cc1 -std=c++1z %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
10 namespace std { namespace
22 A(std::initializer_list<int>); // expected-note {{candidate}}
34 C(std::initializer_list<int>) = delete; // expected-note {{here}}
41 D(std::initializer_list<int>);
42 D(std::initializer_list<double>);
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp12-0x.cpp1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
24 namespace std { namespace
28 const std::type_info& k = typeid(S::m);
29 const std::type_info& m = typeid(*(Poly*)S::m); // expected-error {{invalid use of non-static data member}}
30 const std::type_info& n = typeid(*(Poly*)(0*sizeof S::m));
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp2.cpp1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wno-unused-value %s -verify
9 namespace std { namespace
19 const std::type_info &ti1 = typeid([&]() -> P& { return p; }());
20 const std::type_info &ti2 = typeid([&]() -> int { return i; }()); // expected-error{{lambda expression in an unevaluated operand}}
34 const std::type_info &ti1
39 const std::type_info &ti2
/external/clang/test/CodeGenCXX/
H A Darmv7k.cpp37 namespace std { namespace
51 const std::type_info &b0 = typeid(B);
55 const std::type_info &b1 = typeid(B*);
60 const std::type_info &c0 = typeid(C);
H A Dmangle-subst-std.cpp16 namespace std { namespace
19 // CHECK-LABEL: define void @_ZNSt1AC2Ev(%"struct.std::A"* %this) unnamed_addr
20 // CHECK-LABEL: define void @_ZNSt1AC1Ev(%"struct.std::A"* %this) unnamed_addr
24 namespace std { namespace
29 void f(std::allocator<char>, std::allocator<int>) { }
31 namespace std { namespace
36 void f(std::basic_string<char, char, int>) { }
38 namespace std { namespace
41 typedef std
47 namespace std { namespace
84 namespace std namespace
107 namespace std { namespace in namespace:N
[all...]
H A Dvtable-key-function-arm.cpp15 namespace std { class type_info; } namespace
16 extern void use(const std::type_info &rtti);
/external/clang/test/SemaCXX/
H A Dwarn-self-move.cpp1 // RUN: %clang_cc1 -fsyntax-only -Wself-move -std=c++11 -verify %s
3 // definitions for std::move
4 namespace std { namespace
16 x = std::move(x); // expected-warning{{explicitly moving}}
17 (x) = std::move(x); // expected-warning{{explicitly moving}}
19 using std::move;
25 global = std::move(global); // expected-warning{{explicitly moving}}
26 (global) = std::move(global); // expected-warning{{explicitly moving}}
28 using std::move;
35 x = std
[all...]
/external/clang/test/SemaTemplate/
H A Dfun-template-def.cpp2 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++98 %s
3 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
11 namespace std { class type_info {}; } namespace
50 i1 = typeid(t1); // expected-error {{assigning to 'int' from incompatible type 'const std::type_info'}}
/external/compiler-rt/lib/asan/
H A Dasan_new_delete.cc35 // Fake std::nothrow_t to avoid including <new>.
36 namespace std { namespace
38 } // namespace std
66 void *operator new(size_t size, std::nothrow_t const&)
69 void *operator new[](size_t size, std::nothrow_t const&)
79 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
82 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
101 void operator delete(void *ptr, std::nothrow_t const&) {
105 void operator delete[](void *ptr, std::nothrow_t const&) {
126 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_new_delete.cc20 namespace std { namespace
22 } // namespace std
55 void *operator new(__sanitizer::uptr size, std::nothrow_t const&);
56 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) {
61 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&);
62 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) {
87 void operator delete(void *ptr, std::nothrow_t const&);
88 void operator delete(void *ptr, std::nothrow_t const&) {
93 void operator delete[](void *ptr, std::nothrow_t const&);
94 void operator delete[](void *ptr, std
[all...]
/external/deqp/modules/gles31/
H A Dtes31TestPackage.cpp43 void init (tcu::TestCase* testCase, const std::string& path);
60 void TestCaseWrapper::init (tcu::TestCase* testCase, const std::string&) argument
91 catch (const std::exception& e)
/external/deqp/modules/internal/
H A DditTestPackage.cpp84 void init (tcu::TestCase* testCase, const std::string&) argument
/external/drm_hwcomposer/
H A Dplatform.cpp26 std::vector<DrmPlane *> Planner::GetUsablePlanes(
27 DrmCrtc *crtc, std::vector<DrmPlane *> *primary_planes,
28 std::vector<DrmPlane *> *overlay_planes) {
29 std::vector<DrmPlane *> usable_planes;
30 std::copy_if(primary_planes->begin(), primary_planes->end(),
31 std::back_inserter(usable_planes),
33 std::copy_if(overlay_planes->begin(), overlay_planes->end(),
34 std::back_inserter(usable_planes),
39 std::tuple<int, std argument
[all...]
/external/eigen/test/
H A Dsparse.h29 namespace std { namespace
30 using std::tr1::unordered_map;
61 std::vector<Matrix<Index,2,1> >* zeroCoords = 0,
62 std::vector<Matrix<Index,2,1> >* nonzeroCoords = 0)
76 std::swap(ai,aj);
113 std::vector<Matrix<Index,2,1> >* zeroCoords = 0,
114 std::vector<Matrix<Index,2,1> >* nonzeroCoords = 0)
126 std::swap(ai,aj);
161 std::vector<int>* zeroCoords = 0,
162 std
[all...]
/external/gemmlowp/public/
H A Doutput_stages.h41 std::int32_t result_offset;
42 std::int32_t result_mult_int;
43 std::int32_t result_shift;
63 VectorMap<const std::int32_t, tShape> result_offset;
64 VectorMap<const std::int32_t, tShape> result_mult_int;
65 std::int32_t result_shift;
88 std::int32_t min;
89 std::int32_t max;
93 std::int32_t real_zero_as_int32;
94 std
119 MakeStandardOutputPipeline(const VectorMap<const std::int32_t, tShape>& result_offset, const VectorMap<const std::int32_t, tShape>& result_mult_int, std::int32_t result_shift) argument
[all...]
/external/google-breakpad/src/processor/
H A Dmap_serializers-inl.h30 // map_serializers_inl.h: implementation for serializing std::map and its
56 const std::map<Key, Value> &m) const {
61 typename std::map<Key, Value>::const_iterator iter;
70 char *StdMapSerializer<Key, Value>::Write(const std::map<Key, Value> &m, argument
89 typename std::map<Key, Value>::const_iterator iter;
101 const std::map<Key, Value> &m, unsigned int *size) const {
125 typename std::map<Address, Range>::const_iterator iter;
157 typename std::map<Address, Range>::const_iterator iter;
55 SizeOf( const std::map<Key, Value> &m) const argument
100 Serialize( const std::map<Key, Value> &m, unsigned int *size) const argument
/external/libcxx/test/support/
H A DCounter.h13 #include <functional> // for std::hash
26 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; }
27 Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this; }
42 namespace std { namespace
46 : public std::unary_function<Counter<T>, std::size_t>
48 std::size_t operator()(const Counter<T>& x) const {return std::hash<T>(x.get());}
/external/libcxxabi/src/
H A Dcxa_default_handlers.cpp56 // If the uncaught exception can be caught with std::exception&
58 static_cast<const __shim_type_info*>(&typeid(std::exception));
62 const std::exception* e = static_cast<const std::exception*>(thrown_object);
84 std::terminate();
91 std::terminate_handler __cxa_terminate_handler = default_terminate_handler;
92 std::unexpected_handler __cxa_unexpected_handler = default_unexpected_handler;
95 // std::atomic<std::terminate_handler> __cxa_terminate_handler(default_terminate_handler);
96 // std
98 namespace std namespace
[all...]
/external/llvm/include/llvm/Object/
H A DError.h22 const std::error_category &object_category();
25 // Error code 0 is absent. Use std::error_code() instead.
39 inline std::error_code make_error_code(object_error e) {
40 return std::error_code(static_cast<int>(e), object_category());
47 namespace std { namespace
49 struct is_error_code_enum<llvm::object::object_error> : std::true_type {};

Completed in 984 milliseconds

1234567891011>>