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

<<21222324252627282930>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
SmallBitVector.h 375 std::numeric_limits<uintptr_t>::digits) &&
475 for (unsigned i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
497 resize(std::max(size(), RHS.size()));
517 for (unsigned i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
532 for (i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
544 resize(std::max(size(), RHS.size()));
558 resize(std::max(size(), RHS.size()));
614 std::swap(X, RHS.X);
692 namespace std { namespace
694 /// Implement std::swap in terms of BitVector swap
    [all...]
SmallVector.h 106 using const_reverse_iterator = std::reverse_iterator<const_iterator>;
107 using reverse_iterator = std::reverse_iterator<iterator>;
195 std::uninitialized_copy(std::make_move_iterator(I),
196 std::make_move_iterator(E), Dest);
203 std::uninitialized_copy(I, E, Dest);
222 ::new ((void*) this->end()) T(::std::move(Elt));
284 std::uninitialized_copy(I, E, Dest);
292 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type
937 namespace std { namespace
    [all...]
ilist.h 37 /// you really want ownership semantics, consider using std::list or building
216 : TraitsT(std::move(X)), IntrusiveListT(std::move(X)) {}
218 *static_cast<TraitsT *>(this) = std::move(X);
219 *static_cast<IntrusiveListT *>(this) = std::move(X);
377 return &*std::prev(I);
386 auto Next = std::next(N.getIterator());
413 iplist(iplist &&X) : iplist_impl_type(std::move(X)) {}
415 *static_cast<iplist_impl_type *>(this) = std::move(X);
424 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
ValueMap.h 102 using value_type = std::pair<KeyT, ValueT>;
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
176 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
177 return std::make_pair(iterator(MapResult.first), MapResult.second);
180 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
182 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
183 return std::make_pair(iterator(MapResult.first), MapResult.second)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ProfileData/
SampleProf.h 39 const std::error_category &sampleprof_category();
55 inline std::error_code make_error_code(sampleprof_error E) {
56 return std::error_code(static_cast<int>(E), sampleprof_category());
71 namespace std { namespace
74 struct is_error_code_enum<llvm::sampleprof_error> : std::true_type {};
76 } // end namespace std
187 using BodySampleMap = std::map<LineLocation, SampleRecord>;
189 using CallsiteSampleMap = std::map<LineLocation, FunctionSamplesMap>;
227 const std::string &FName,
240 return std::error_code()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
SmallBitVector.h 375 std::numeric_limits<uintptr_t>::digits) &&
475 for (unsigned i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
497 resize(std::max(size(), RHS.size()));
517 for (unsigned i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
532 for (i = 0, e = std::min(size(), RHS.size()); i != e; ++i)
544 resize(std::max(size(), RHS.size()));
558 resize(std::max(size(), RHS.size()));
614 std::swap(X, RHS.X);
692 namespace std { namespace
694 /// Implement std::swap in terms of BitVector swap
    [all...]
SmallVector.h 106 using const_reverse_iterator = std::reverse_iterator<const_iterator>;
107 using reverse_iterator = std::reverse_iterator<iterator>;
195 std::uninitialized_copy(std::make_move_iterator(I),
196 std::make_move_iterator(E), Dest);
203 std::uninitialized_copy(I, E, Dest);
222 ::new ((void*) this->end()) T(::std::move(Elt));
284 std::uninitialized_copy(I, E, Dest);
292 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type
937 namespace std { namespace
    [all...]
ilist.h 37 /// you really want ownership semantics, consider using std::list or building
216 : TraitsT(std::move(X)), IntrusiveListT(std::move(X)) {}
218 *static_cast<TraitsT *>(this) = std::move(X);
219 *static_cast<IntrusiveListT *>(this) = std::move(X);
377 return &*std::prev(I);
386 auto Next = std::next(N.getIterator());
413 iplist(iplist &&X) : iplist_impl_type(std::move(X)) {}
415 *static_cast<iplist_impl_type *>(this) = std::move(X);
424 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
ValueMap.h 102 using value_type = std::pair<KeyT, ValueT>;
175 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
176 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
177 return std::make_pair(iterator(MapResult.first), MapResult.second);
180 std::pair<iterator, bool> insert(std::pair<KeyT, ValueT> &&KV) {
182 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
183 return std::make_pair(iterator(MapResult.first), MapResult.second)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ProfileData/
SampleProf.h 39 const std::error_category &sampleprof_category();
55 inline std::error_code make_error_code(sampleprof_error E) {
56 return std::error_code(static_cast<int>(E), sampleprof_category());
71 namespace std { namespace
74 struct is_error_code_enum<llvm::sampleprof_error> : std::true_type {};
76 } // end namespace std
187 using BodySampleMap = std::map<LineLocation, SampleRecord>;
189 using CallsiteSampleMap = std::map<LineLocation, FunctionSamplesMap>;
227 const std::string &FName,
240 return std::error_code()
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
arena.h 45 namespace std { namespace
137 void (*on_arena_allocation)(const std::type_info* allocated_type,
438 std::numeric_limits<size_t>::max() / sizeof(T))
632 std::numeric_limits<size_t>::max() / sizeof(T))
    [all...]
  /system/core/base/include/android-base/
logging.h 99 using LogFunction = std::function<void(LogId, LogSeverity, const char*, const char*,
101 using AbortFunction = std::function<void(const char*)>;
108 std::string GetDefaultTag();
109 void SetDefaultTag(const std::string& tag);
433 std::ostream& stream();
440 const std::unique_ptr<LogMessageData> data_;
469 namespace std { namespace
471 // Emit a warning of ostream<< with std::string*. The intention was most likely to print *string.
490 inline std::ostream& operator<<(std::ostream& stream, const std::string* string_pointer
    [all...]
  /system/core/liblog/
event_tag_map.cpp 46 const std::string* alloc; // HAS-AN
47 const std::string_view str; // HAS-A
50 operator const std::string_view() const {
72 explicit MapString(const std::string& str)
73 : alloc(new std::string(str)), str(alloc->data(), alloc->length()) {
80 : alloc(rval.alloc ? new std::string(*rval.alloc) : NULL),
91 struct std::hash<MapString>
92 : public std::unary_function<const MapString&, size_t> {
95 return std::hash<std::string_view>()(std::string_view(__t))
    [all...]
  /cts/tests/tests/media/libmediandkjni/
codec-utils-jni.cpp 29 namespace std namespace
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p5.cpp 1 // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -std=c++11 -fblocks -fms-extensions -fsyntax-only -verify %s
233 namespace std { namespace
  /external/clang/test/CodeGenCXX/
mangle-ms-cxx11.cpp 1 // RUN: %clang_cc1 -std=c++11 -fms-extensions -emit-llvm %s -o - -triple=i386-pc-win32 -fms-compatibility-version=19.00 | FileCheck %s --check-prefix=CHECK --check-prefix=MSVC2015
2 // RUN: %clang_cc1 -std=c++11 -fms-extensions -emit-llvm %s -o - -triple=i386-pc-win32 -fms-compatibility-version=18.00 | FileCheck %s --check-prefix=CHECK --check-prefix=MSVC2013
73 namespace std { typedef decltype(__nullptr) nullptr_t; } namespace
74 void Null(std::nullptr_t) {}
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 3 namespace std { namespace
69 typedef std::pair < IdentifierInfo, const char *>actualtype;
73 typedef std::pair < IdentifierInfo, const char *>actualtype;
200 // CHECK-tokens: Identifier: "std" [3:11 - 3:14] Namespace=std:3:11 (Definition)
201 // CHECK-tokens: Punctuation: "{" [3:15 - 3:16] Namespace=std:3:11 (Definition)
217 // CHECK-tokens: Punctuation: ";" [4:64 - 4:65] Namespace=std:3:11 (Definition)
218 // CHECK-tokens: Punctuation: "}" [5:1 - 5:2] Namespace=std:3:11 (Definition)
    [all...]
  /external/clang/test/OpenMP/
target_map_codegen.cpp 11 // RUN: %clang_cc1 -DCK1 -fopenmp -fopenmp-targets=powerpc64le-ibm-linux-gnu -x c++ -std=c++11 -triple powerpc64le-unknown-unknown -emit-pch -o %t %s
12 // RUN: %clang_cc1 -fopenmp -fopenmp-targets=powerpc64le-ibm-linux-gnu -x c++ -triple powerpc64le-unknown-unknown -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix CK1 --check-prefix CK1-64
14 // RUN: %clang_cc1 -DCK1 -fopenmp -fopenmp-targets=i386-pc-linux-gnu -x c++ -std=c++11 -triple i386-unknown-unknown -emit-pch -o %t %s
15 // RUN: %clang_cc1 -fopenmp -fopenmp-targets=i386-pc-linux-gnu -x c++ -triple i386-unknown-unknown -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix CK1 --check-prefix CK1-32
56 // RUN: %clang_cc1 -DCK2 -fopenmp -fopenmp-targets=powerpc64le-ibm-linux-gnu -x c++ -std=c++11 -triple powerpc64le-unknown-unknown -emit-pch -o %t %s
57 // RUN: %clang_cc1 -fopenmp -fopenmp-targets=powerpc64le-ibm-linux-gnu -x c++ -triple powerpc64le-unknown-unknown -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix CK2 --check-prefix CK2-64
59 // RUN: %clang_cc1 -DCK2 -fopenmp -fopenmp-targets=i386-pc-linux-gnu -x c++ -std=c++11 -triple i386-unknown-unknown -emit-pch -o %t %s
60 // RUN: %clang_cc1 -fopenmp -fopenmp-targets=i386-pc-linux-gnu -x c++ -triple i386-unknown-unknown -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix CK2 --check-prefix CK2-32
105 // RUN: %clang_cc1 -DCK3 -fopenmp -fopenmp-targets=powerpc64le-ibm-linux-gnu -x c++ -std=c++11 -triple powerpc64le-unknown-unknown -emit-pch -o %t %s
106 // RUN: %clang_cc1 -fopenmp -fopenmp-targets=powerpc64le-ibm-linux-gnu -x c++ -triple powerpc64le-unknown-unknown -std=c++11 -include-pch %t -verify %s -emit-llvm -o - | FileCheck %s --check-prefix CK3 --check-prefix (…)
2771 STT<int> *std; variable
    [all...]
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 1 // RUN: %clang_cc1 -fsyntax-only -std=c++11 -Wc++98-compat -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -std=c++14 -Wc++98-compat -verify %s -DCXX14COMPAT
4 namespace std { namespace
57 InitListCtor(std::initializer_list<bool>);
69 std::initializer_list<int> xs = { 1, 2, 3 }; // expected-warning {{initialization of initializer_list object is incompatible with C++98}}
289 const std::type_info &ti = typeid(S::n); // expected-warning {{use of non-static data member 'n' in an unevaluated context is incompatible with C++98}}
warn-consumed-analysis.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -Wconsumed -fcxx-exceptions -std=c++11 %s
926 namespace std { namespace
946 std::move();
947 std::move(x);
948 std::__1::move();
949 std::__1::move(x);
  /external/clang/test/SemaTemplate/
dependent-names.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
133 namespace std { namespace
144 std::ostream &operator<<(std::ostream &out, const char *);
206 std::cout << value << "\n"; // expected-error {{neither visible in the template definition nor found by argument-dependent lookup}}
213 std::ostream& operator<<(std::ostream& out, ns::Data data) { // expected-note {{should be declared prior to the call site or in namespace 'PR10053::my_file2::ns'}}
225 print(std::cout, value); // expected-error 4{{neither visible in the template definition nor found by argument-dependent lookup}}
235 std::ostream &print(std::ostream &out, int); // expected-note-re {{should be declared prior to the call site{{$}}}
    [all...]
  /external/deqp/framework/delibs/decpp/
dePoolArray.hpp 528 // std::iterator_traits specializations
529 namespace std namespace
552 } // std
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 448 EIGEN_ALWAYS_INLINE std::ostream& operator << (std::ostream& os, const half& v) {
465 return x + (y-x) * half(float(std::rand()) / float(RAND_MAX));
479 namespace std { namespace
491 static const std::float_round_style round_style = std::round_to_nearest;
579 namespace std { namespace
584 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE std::size_t operator()(const Eigen::half& a) const {
585 return static_cast<std::size_t>(a.x);
590 } // end namespace std
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 103 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
104 typedef std::reverse_iterator<iterator> reverse_iterator;
191 std::uninitialized_copy(std::make_move_iterator(I),
192 std::make_move_iterator(E), Dest);
199 std::uninitialized_copy(I, E, Dest);
218 ::new ((void*) this->end()) T(::std::move(Elt));
278 std::uninitialized_copy(I, E, Dest);
286 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type
911 namespace std { namespace
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.h 54 namespace std namespace
57 std::size_t operator()(const BLEND_COMPILE_STATE &k) const
156 std::unordered_map<BLEND_COMPILE_STATE, PFN_BLEND_JIT_FUNC> *blendJIT;

Completed in 521 milliseconds

<<21222324252627282930>>