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

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
lpad-linetable.cpp 12 namespace std { namespace
37 template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
61 std::vector<long> longs;
62 std::vector<short> shorts;
  /external/clang/test/Index/
annotate-tokens-cxx0x.cpp 26 // Need std::initializer_list
27 namespace std { namespace
60 Foo(std::initializer_list<int> il);
68 // RUN: c-index-test -test-annotate-tokens=%s:1:1:5:1 -fno-delayed-template-parsing -std=c++11 %s | FileCheck %s
72 // RUN: c-index-test -test-annotate-tokens=%s:8:1:9:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-DECLTYPE %s
75 // RUN: c-index-test -test-annotate-tokens=%s:13:1:14:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-TRAIT %s
80 // RUN: c-index-test -test-annotate-tokens=%s:16:1:24:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-WITH-OVERRIDE %s
97 // RUN: c-index-test -test-annotate-tokens=%s:64:1:65:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-INITLIST %s
  /external/clang/test/PCH/
cxx_exprs.h 39 namespace std { namespace
  /external/clang/test/SemaCXX/
warn-unused-value.cpp 2 // RUN: %clang_cc1 -fsyntax-only -verify -Wunused-value -std=c++98 %s
3 // RUN: %clang_cc1 -fsyntax-only -verify -Wunused-value -std=c++11 %s
41 namespace std { namespace
50 void func(const std::string& str) {
78 namespace std { namespace
  /external/compiler-rt/lib/lsan/
lsan_interceptors.cc 49 namespace std { namespace
168 void *operator new(uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
170 void *operator new[](uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
181 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
183 void operator delete[](void *ptr, std::nothrow_t const &) {
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 14 clang++ -std=c++11 -fno-exceptions -g -fPIC -I. -I../include -Isanitizer \
153 namespace std { namespace
159 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc");
160 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc");
163 void operator delete(void *ptr, std::nothrow_t const&) ALIAS("free");
164 void operator delete[](void *ptr, std::nothrow_t const&) ALIAS("free");
  /external/icu/icu4c/source/i18n/
wintzimpl.cpp 45 AnnualTimeZoneRule *std = NULL, *dst = NULL; local
47 btz->getSimpleRulesNear(uprv_getUTCtime(), initial, std, dst, status); local
49 if (std == NULL || dst == NULL) {
59 U_ASSERT(std->getRule()->getDateRuleType() == DateTimeRule::DOW);
62 bias = -1 * (std->getRawOffset()/60000);
68 standardDate.wMonth = static_cast<WORD>(std->getRule()->getRuleMonth()) + 1;
69 standardDate.wDay = static_cast<WORD>(std->getRule()->getRuleWeekInMonth());
73 standardDate.wDayOfWeek = static_cast<WORD>(std->getRule()->getRuleDayOfWeek()) - 1;
75 mil = std->getRule()->getRuleMillisInDay();
114 delete std;
    [all...]
  /external/llvm/include/llvm/Bitcode/
ReaderWriter.h 45 ErrorOr<std::unique_ptr<Module>>
46 getLazyBitcodeModule(std::unique_ptr<MemoryBuffer> &&Buffer,
52 ErrorOr<std::unique_ptr<Module>>
54 std::unique_ptr<DataStreamer> Streamer,
60 std::string getBitcodeTargetTriple(MemoryBufferRef Buffer,
71 std::string getBitcodeProducerString(MemoryBufferRef Buffer,
75 ErrorOr<std::unique_ptr<Module>> parseBitcodeFile(MemoryBufferRef Buffer,
84 ErrorOr<std::unique_ptr<ModuleSummaryIndex>>
110 std::map<std::string, GVSummaryMapTy
208 namespace std { namespace
    [all...]
  /external/llvm/unittests/Support/
ErrorOrTest.cpp 40 ErrorOr<std::unique_ptr<int> > t3() {
41 return std::unique_ptr<int>(new int(3));
61 ErrorOr<std::unique_ptr<B> > b1(ErrorOr<std::unique_ptr<D> >(nullptr));
62 b1 = ErrorOr<std::unique_ptr<D> >(nullptr);
64 ErrorOr<std::unique_ptr<int>> b2(ErrorOr<int *>(nullptr));
66 ErrorOr<std::unique_ptr<int>> b4(b3);
75 ErrorOr<std::string> x("string literal");
93 CastsToErrorCode(std::error_code) {}
94 operator std::error_code() { return errc::invalid_argument;
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h 88 namespace std {} namespace
124 std::string LIBPROTOBUF_EXPORT VersionString(int version);
148 inline bool IsStructurallyValidUTF8(const std::string& str) {
199 class FatalException : public std::exception {
201 FatalException(const char* filename, int line, const std::string& message)
209 const std::string& message() const { return message_; }
214 const std::string message_;
220 using namespace std; // Don't do this at home, kids.
  /external/tensorflow/tensorflow/contrib/lite/toco/
tooling_util.h 39 namespace std { namespace
43 return std::hash<size_t>()(static_cast<size_t>(op));
46 } // namespace std
65 std::vector<std::unique_ptr<Operator>>::const_iterator FindOpWithOutput(
69 std::vector<std::unique_ptr<Operator>>::iterator FindOpWithOutput(
74 std::vector<std::unique_ptr<Operator>>::const_iterator FindOpWithInput(
77 std::vector<std::unique_ptr<Operator>>::iterator FindOpWithInput
    [all...]
  /external/tensorflow/tensorflow/core/framework/
numeric_types.h 32 typedef std::complex<float> complex64;
34 typedef std::complex<double> complex128;
114 namespace std { namespace
117 std::size_t operator()(const Eigen::half& a) const {
118 return static_cast<std::size_t>(a.x);
121 } // namespace std
  /external/v8/src/inspector/
string-16.h 27 : m_impl(std::move(other.m_impl)), hash_code(other.hash_code) {}
32 : String16(characters, std::strlen(characters)) {}
37 explicit String16(const std::basic_string<UChar>& impl) : m_impl(impl) {}
45 m_impl = std::move(other.m_impl);
76 std::swap(hash_code, other.hash_code);
80 std::string utf8() const;
83 std::size_t hash() const {
111 std::basic_string<UChar> m_impl;
112 mutable std::size_t hash_code = 0;
140 std::vector<UChar> m_buffer
154 namespace std { namespace
    [all...]
  /frameworks/base/cmds/statsd/src/
HashableDimensionKey.h 33 std::vector<Matcher> metricFields;
34 std::vector<Matcher> conditionFields;
39 explicit HashableDimensionKey(const std::vector<FieldValue>& values) {
51 inline const std::vector<FieldValue>& getValues() const {
55 inline std::vector<FieldValue>* mutableValues() {
66 std::string toString() const;
75 std::vector<FieldValue> mValues;
93 std::string toString() const;
132 bool filterValues(const std::vector<Matcher>& matcherFields, const std::vector<FieldValue>& values
152 namespace std { namespace
    [all...]
  /frameworks/compile/mclinker/include/mcld/Support/
Path.h 47 typedef std::string StringType;
109 inline std::basic_ostream<Char, Traits>& operator<<(
110 std::basic_ostream<Char, Traits>& pOS,
116 inline std::basic_istream<Char, Traits>& operator>>(
117 std::basic_istream<Char, Traits>& pOS,
156 namespace std { namespace
169 } // namespace std
  /frameworks/ml/nn/runtime/test/specs/V1_0/
max_pool_float_2.mod.py 27 std = 20 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
46 input_values = (lambda s = std, r = input_range: [x % s + 1 for x in range(r)])()
49 output_values = (lambda s = std, r = output_range: [ s for _ in range(r)])()
max_pool_float_3.mod.py 27 std = 20 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
46 input_values = (lambda s = std, r = input_range: [x % s + 1 for x in range(r)])()
max_pool_quant8_2.mod.py 27 std = 20 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
46 input_values = (lambda s = std, r = input_range: [x % s + 1 for x in range(r)])()
49 output_values = (lambda s = std, r = output_range: [ s for _ in range(r)])()
max_pool_quant8_3.mod.py 27 std = 20 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
46 input_values = (lambda s = std, r = input_range: [x % s + 1 for x in range(r)])()
  /frameworks/ml/nn/runtime/test/specs/V1_1/
max_pool_float_2_relaxed.mod.py 27 std = 20 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
47 input_values = (lambda s = std, r = input_range: [x % s + 1 for x in range(r)])()
50 output_values = (lambda s = std, r = output_range: [ s for _ in range(r)])()
max_pool_float_3_relaxed.mod.py 27 std = 20 variable
31 stride = Int32Scalar("stride", std)
35 output_row = (row + 2 * pad - flt + std) // std
36 output_col = (col + 2 * pad - flt + std) // std
47 input_values = (lambda s = std, r = input_range: [x % s + 1 for x in range(r)])()
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
stddef.h 109 namespace std { typedef decltype(nullptr) nullptr_t; } namespace
110 using ::std::nullptr_t;
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
stddef.h 109 namespace std { typedef decltype(nullptr) nullptr_t; } namespace
110 using ::std::nullptr_t;
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
stddef.h 109 namespace std { typedef decltype(nullptr) nullptr_t; } namespace
110 using ::std::nullptr_t;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitcodeReader.h 31 // ErrorOr/std::error_code for compatibility with legacy clients. FIXME:
34 std::error_code errorToErrorCodeAndEmitErrors(LLVMContext &Ctx, Error Err);
40 return std::move(*Val);
61 friend Expected<std::vector<BitcodeModule>>
64 Expected<std::unique_ptr<Module>> getModuleImpl(LLVMContext &Context,
80 Expected<std::unique_ptr<Module>> getLazyModule(LLVMContext &Context,
85 Expected<std::unique_ptr<Module>> parseModule(LLVMContext &Context);
91 Expected<std::unique_ptr<ModuleSummaryIndex>> getSummary();
95 Expected<std::vector<BitcodeModule>>
102 Expected<std::unique_ptr<Module>
220 namespace std { namespace in namespace:llvm
    [all...]

Completed in 1134 milliseconds

<<11121314151617181920>>