HomeSort by relevance Sort by last modified time
    Searched defs:std (Results 251 - 275 of 811) sorted by null

<<11121314151617181920>>

  /external/llvm/include/llvm/Object/
Error.h 26 const std::error_category &object_category();
29 // 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());
50 /// std::error_code, but this will be removed in the future.
69 const std::string &getMessage() const { return Msg; }
72 std::string Msg;
86 namespace std { namespace
88 struct is_error_code_enum<llvm::object::object_error> : std::true_type {};
  /external/pdfium/third_party/bigint/
BigUnsignedInABase.cc 79 BigUnsignedInABase::BigUnsignedInABase(const std::string &s, Base base) {
111 BigUnsignedInABase::operator std::string() const {
115 return std::string("0");
128 std::string s2(s);
  /frameworks/ml/nn/runtime/test/specs/V1_0/
avg_pool_float_2.mod.py 27 std = 5 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
avg_pool_float_3.mod.py 27 std = 2 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
avg_pool_float_4.mod.py 27 std = 5 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
avg_pool_quant8_2.mod.py 27 std = 5 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
avg_pool_quant8_3.mod.py 27 std = 4 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
  /frameworks/ml/nn/runtime/test/specs/V1_1/
avg_pool_float_2_relaxed.mod.py 27 std = 5 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
avg_pool_float_3_relaxed.mod.py 27 std = 2 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
avg_pool_float_4_relaxed.mod.py 27 std = 5 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.modifiers/
insert_or_assign.pass.cpp 53 size_t hash () const { return std::hash<int>()(int_) + std::hash<double>()(double_); }
59 namespace std { namespace
69 typedef std::unordered_map<int, Moveable> M;
70 typedef std::pair<M::iterator, bool> R;
80 r = m.insert_or_assign(i, std::move(mv));
89 r = m.insert_or_assign(-1, std::move(mv1));
97 r = m.insert_or_assign(3, std::move(mv2));
105 r = m.insert_or_assign(117, std::move(mv3));
113 typedef std::unordered_map<Moveable, Moveable> M
    [all...]
try.emplace.pass.cpp 52 size_t hash () const { return std::hash<int>()(int_) + std::hash<double>()(double_); }
58 namespace std { namespace
68 typedef std::unordered_map<int, Moveable> M;
69 typedef std::pair<M::iterator, bool> R;
79 r = m.try_emplace(i, std::move(mv1));
86 r = m.try_emplace(-1, std::move(mv1));
94 r = m.try_emplace(5, std::move(mv2));
102 r = m.try_emplace(117, std::move(mv2));
111 typedef std::unordered_map<Moveable, Moveable> M
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.trans/meta.trans.other/
common_type.pass.cpp 27 namespace std namespace
59 -> always_bool<typename std::common_type<Args...>::type>
66 using no_common_type = std::integral_constant<bool, no_common_type_imp<Args...>(0)>;
69 using Decay = typename std::decay<Tp>::type;
72 using CommonType = typename std::common_type<Args...>::type;
76 static_assert(std::is_same<Decay<T1>, T1>::value, "must be same");
77 static_assert(std::is_same<Decay<T2>, T2>::value, "must be same");
78 using type = typename std::decay<
79 decltype(false ? std::declval<T1>() : std::declval<T2>()
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/src/
cxa_default_handlers.cpp 56 // 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();
88 static std::terminate_handler default_terminate_handler = demangling_terminate_handler;
89 static std::terminate_handler default_unexpected_handler = demangling_unexpected_handler;
91 static std::terminate_handler default_terminate_handler = std::abort;
92 static std::terminate_handler default_unexpected_handler = std::terminate
108 namespace std namespace
    [all...]
  /test/vts-testcase/hal/treble/vintf/
utils.cpp 143 namespace std { namespace
152 } // namespace std
  /toolchain/binutils/binutils-2.27/gold/
system.h 67 #define Unordered_set std::unordered_set
68 #define Unordered_map std::unordered_map
69 #define Unordered_multimap std::unordered_multimap
81 #define Unordered_set std::tr1::unordered_set
82 #define Unordered_map std::tr1::unordered_map
83 #define Unordered_multimap std::tr1::unordered_multimap
92 namespace std { namespace tr1 { namespace
94 struct hash<off_t> : public std::unary_function<off_t, std::size_t>
96 std::size_
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
findfp.c 64 #define std(flags, file) \ macro
87 std(__SRD, STDIN_FILENO), /* stdin */
88 std(__SWR, STDOUT_FILENO), /* stdout */
89 std(__SWR|__SNBF, STDERR_FILENO) /* stderr */
  /external/clang/lib/Headers/
stddef.h 109 namespace std { typedef decltype(nullptr) nullptr_t; } namespace
110 using ::std::nullptr_t;
  /external/clang/test/Analysis/Inputs/
system-header-simulator-cxx-std-suppression.h 2 // c++ std library functions. We use these bugs to test hard-coded
13 namespace std { namespace
43 // out of std::list.
71 // out of std::basic_string.
83 // std::basic_string.
91 // std::basic_string.
110 // out of std::__independent_bits_engine.
132 // out of std::shared_ptr.
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7-1y.cpp 1 // RUN: %clang_cc1 -verify -std=c++1y %s
3 namespace std { namespace
20 using InitListInt = std::initializer_list<int>;
  /external/clang/test/CXX/drs/
dr19xx.cpp 1 // 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
6 namespace std { struct type_info; } namespace
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Winvalid-noreturn %s -verify
60 namespace std { namespace
79 const std::type_info &ti
90 const std::type_info &ti
  /external/clang/test/CodeGenCXX/
2007-09-10-RecursiveTypeResolution.cpp 26 namespace std namespace
50 template < typename _Tp, typename _Alloc = std::allocator < _Tp > >
arm64.cpp 37 namespace std { namespace
52 const std::type_info &b0 = typeid(B);
56 const std::type_info &b1 = typeid(B*);
61 const std::type_info &c0 = typeid(C);
65 const std::type_info &c1 = typeid(C*);
73 const std::type_info &d0 = typeid(D<int>);
cxx0x-initializer-stdinitializerlist-startend.cpp 1 // RUN: %clang_cc1 -std=c++11 -S -triple x86_64-none-linux-gnu -emit-llvm -o - %s | FileCheck %s
3 namespace std { namespace
37 std::initializer_list<int> globalInitList1 = {1, 2, 3};
57 std::initializer_list<int> intlist{1, 2, i};
70 void target(std::initializer_list<destroyme1>);

Completed in 593 milliseconds

<<11121314151617181920>>