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

<<21222324252627282930>>

  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVEntry.cpp 71 operator std::pair<const Op, SPIRVFactoryTy>() {
72 return std::make_pair(Opn, Factory);
82 typedef std::map<Op, SPIRVFactoryTy> OpToFactoryMapTy;
83 static const OpToFactoryMapTy OpToFactoryMap(std::begin(Table),
84 std::end(Table));
95 std::unique_ptr<SPIRV::SPIRVEntry>
97 return std::unique_ptr<SPIRVEntry>(create(OC));
100 std::unique_ptr<SPIRV::SPIRVExtInst>
103 return std::unique_ptr<SPIRVExtInst>(new SPIRVExtInst(Set, ExtOp));
141 SPIRVEntry::getDecoder(std::istream& I)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
SmallVector.h 27 namespace std { namespace
29 // Work around flawed VC++ implementation of std::uninitialized_copy. Define
113 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
114 typedef std::reverse_iterator<iterator> reverse_iterator;
191 std::uninitialized_copy(I, E, Dest);
240 std::uninitialized_copy(I, E, Dest);
248 // iterators): std::uninitialized_copy optimizes to memmove, but we can
350 size_type NumInputs = std::distance(in_start, in_end);
358 std::uninitialized_copy(in_start, in_end, this->end());
370 std::uninitialized_fill_n(this->end(), NumInputs, Elt)
748 namespace std { namespace in namespace:llvm
    [all...]
ilist.h 145 : public std::iterator<std::bidirectional_iterator_tag, NodeTy, ptrdiff_t> {
149 typedef std::iterator<std::bidirectional_iterator_tag,
347 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
348 typedef std::reverse_iterator<iterator> reverse_iterator;
406 std::swap(Head, RHS.Head);
523 return std::distance(begin(), end());
700 namespace std { namespace
706 } // End 'std' extensions..
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
SmallVector.h 105 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
106 typedef std::reverse_iterator<iterator> reverse_iterator;
194 std::uninitialized_copy(std::make_move_iterator(I),
195 std::make_move_iterator(E), Dest);
202 std::uninitialized_copy(I, E, Dest);
221 ::new ((void*) this->end()) T(::std::move(Elt));
281 std::uninitialized_copy(I, E, Dest);
289 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type
914 namespace std { namespace
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
process_test.cc 126 mic_level = std::min(std::max(mic_level, 0), 255);
132 v = std::max(std::min(32767.0f, v), -32768.0f);
155 std::string out_filename;
457 const std::string out_path = webrtc::test::OutputPath();
463 const std::string vad_file_default = out_path + "vad_out.dat";
464 const std::string ns_prob_file_default = out_path + "ns_prob.dat";
584 std::ostringstream trace_stream;
725 near_read_bytes = std::min(near_read_bytes, near_size_bytes)
1096 int std = 0; local
    [all...]
  /hardware/interfaces/camera/common/1.0/default/
Exif.cpp 35 namespace std { namespace
42 } // namespace std
82 virtual bool setComponentsConfiguration(const std::string& components_configuration);
99 virtual bool setDescription(const std::string& description);
153 virtual bool setGpsProcessingMethod(const std::string& method);
213 virtual bool setSubsecTime(const std::string& subsec_time);
234 virtual bool setMake(const std::string& make);
238 virtual bool setModel(const std::string& model);
255 virtual bool setExifVersion(const std::string& exif_version);
265 virtual std::unique_ptr<ExifEntry> addVariableLengthEntry(ExifIfd ifd
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SmallVector.h 105 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
106 typedef std::reverse_iterator<iterator> reverse_iterator;
194 std::uninitialized_copy(std::make_move_iterator(I),
195 std::make_move_iterator(E), Dest);
202 std::uninitialized_copy(I, E, Dest);
221 ::new ((void*) this->end()) T(::std::move(Elt));
281 std::uninitialized_copy(I, E, Dest);
289 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type
914 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
SmallVector.h 105 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
106 typedef std::reverse_iterator<iterator> reverse_iterator;
194 std::uninitialized_copy(std::make_move_iterator(I),
195 std::make_move_iterator(E), Dest);
202 std::uninitialized_copy(I, E, Dest);
221 ::new ((void*) this->end()) T(::std::move(Elt));
281 std::uninitialized_copy(I, E, Dest);
289 typename std::enable_if<std::is_same<typename std::remove_const<T1>::type
914 namespace std { namespace
    [all...]
  /system/libhidl/base/include/hidl/
HidlSupport.h 132 // copy from an std::string.
133 hidl_string(const std::string &);
146 // copy from an std::string.
147 hidl_string &operator=(const std::string &);
150 // cast to std::string.
151 operator std::string() const;
197 std::ostream& operator<<(std::ostream& os, const hidl_string& str);
215 : mHandle(std::move(handle)), mSize(size), mName(name) {}
247 *this = std::move(other)
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest.h 144 // ::string, which is different to std::string).
147 // ::wstring, which is different to std::wstring).
153 // std::wstring does/doesn't work (Google Test can
154 // be used where std::wstring is unavailable).
388 // The user told us that ::std::string isn't available.
389 #error "Google Test cannot be used where ::std::string isn't available."
401 // The user didn't tell us whether ::std::wstring is available, so we need
403 // TODO(wan@google.com): uses autoconf to detect whether ::std::wstring
406 // Cygwin 1.5 and below doesn't support ::std::wstring.
550 #include <utility> // For ::std::pair
613 namespace std { namespace
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h 149 // ::string, which is different to std::string).
152 // ::wstring, which is different to std::wstring).
160 // std::wstring does/doesn't work (Google Test can
161 // be used where std::wstring is unavailable).
249 // IteratorTraits - partial implementation of std::iterator_traits, which
370 // -std={c,gnu}++{0x,11} is passed. The C++11 standard specifies a
472 // The user told us that ::std::string isn't available.
473 # error "Google Test cannot be used where ::std::string isn't available."
485 // The user didn't tell us whether ::std::wstring is available, so we need
487 // TODO(wan@google.com): uses autoconf to detect whether ::std::wstrin
745 namespace std { namespace
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
gtest.h 149 // ::string, which is different to std::string).
152 // ::wstring, which is different to std::wstring).
160 // std::wstring does/doesn't work (Google Test can
161 // be used where std::wstring is unavailable).
249 // IteratorTraits - partial implementation of std::iterator_traits, which
370 // -std={c,gnu}++{0x,11} is passed. The C++11 standard specifies a
472 // The user told us that ::std::string isn't available.
473 # error "Google Test cannot be used where ::std::string isn't available."
485 // The user didn't tell us whether ::std::wstring is available, so we need
487 // TODO(wan@google.com): uses autoconf to detect whether ::std::wstrin
745 namespace std { namespace
    [all...]
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/core/jackson-databind/2.6.6/
jackson-databind-2.6.6.jar 
  /bionic/libc/stdio/
stdio.cpp 67 #define std(flags, file) \ macro
85 std(__SRD, STDIN_FILENO),
86 std(__SWR, STDOUT_FILENO),
87 std(__SWR|__SNBF, STDERR_FILENO),
  /external/clang/test/CXX/drs/
dr4xx.cpp 1 // RUN: env ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++98 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
2 // RUN: env ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++11 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
3 // RUN: env ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++14 %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
4 // RUN: env ASAN_OPTIONS=detect_stack_use_after_return=0 %clang_cc1 -std=c++1z %s -verify -fexceptions -fcxx-exceptions -pedantic-errors
9 namespace std { struct type_info; } namespace
  /external/clang/test/Misc/
diag-template-diffing.cpp 1 // RUN: not %clang_cc1 -fsyntax-only %s -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-ELIDE-NOTREE
2 // RUN: not %clang_cc1 -fsyntax-only %s -fno-elide-type -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-NOELIDE-NOTREE
3 // RUN: not %clang_cc1 -fsyntax-only %s -fdiagnostics-show-template-tree -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-ELIDE-TREE
4 // RUN: not %clang_cc1 -fsyntax-only %s -fno-elide-type -fdiagnostics-show-template-tree -std=c++11 2>&1 | FileCheck %s -check-prefix=CHECK-NOELIDE-TREE
12 namespace std {template <typename T> class vector;} namespace
13 using std::vector;
17 namespace std { namespace
25 } // end namespace std
27 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<std::basic_string>' to 'vector<versa_string>' for 1st argument
29 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'vector<std::basic_string>' to 'vector<versa_string>' for 1st argumen
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzregts.cpp 202 * day of onset 1:59 AM STD = display name 1:59 AM ST
203 * 2:00 AM STD = display name 3:00 AM DT
204 * day of end 0:59 AM STD = display name 1:59 AM DT
205 * 1:00 AM STD = display name 1:00 AM ST
947 UDate std = tempcal->getTime(status); \/\/ Time in standard local
    [all...]
  /external/libchrome/base/
logging.h 280 typedef void (*LogAssertHandlerFunction)(const std::string& str);
288 const char* file, int line, size_t message_start, const std::string& str);
430 BASE_EXPORT extern std::ostream* g_swallow_stream;
440 // implementations of operator<<(std::ostream, ...) in some .cc files, because
453 CheckOpResult(std::string* message) : message_(message) {}
457 std::string* message() { return message_; }
460 std::string* message_;
616 inline typename std::enable_if<
618 !std::is_function<typename std::remove_pointer<T>::type>::value
1087 namespace std { namespace
    [all...]
  /external/llvm/include/llvm/ADT/
ilist.h 193 : public std::iterator<std::bidirectional_iterator_tag, NodeTy, ptrdiff_t> {
196 typedef std::iterator<std::bidirectional_iterator_tag, NodeTy, ptrdiff_t>
345 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
346 typedef std::reverse_iterator<iterator> reverse_iterator;
406 std::swap(Head, RHS.Head);
544 return std::distance(begin(), end());
618 if (std::next(begin()) == end())
622 while (End != end() && std::next(End) != end())
740 namespace std { namespace
    [all...]
  /external/python/cpython3/Python/
pylifecycle.c 93 int Py_UnbufferedStdioFlag = 0; /* Unbuffered binary std{in,out,err} */
1186 PyObject *std = NULL; local
    [all...]
  /external/skia/tests/
MathTest.cpp 86 float std = std_floor(value); local
87 if (std != fast) {
89 value, fast, std, value);
  /external/skqp/tests/
MathTest.cpp 86 float std = std_floor(value); local
87 if (std != fast) {
89 value, fast, std, value);
  /external/swiftshader/third_party/subzero/src/
IceGlobalContext.cpp 45 namespace std { namespace
53 hash<std::size_t>()(Key.OffsetExpr.size() + (Key.Offset << 5));
56 } // end of namespace std
69 typename std::enable_if<
70 std::is_integral<KeyType>::value ||
71 std::is_same<KeyType, RelocatableTuple>::value>::type> {
77 struct KeyCompare<KeyType, typename std::enable_if<
78 std::is_floating_point<KeyType>::value>::type> {
91 typename std::enable_if<std::is_floating_point
    [all...]
  /external/webrtc/talk/media/base/
videoengine_unittest.h 79 namespace std { namespace
80 inline std::ostream& operator<<(std::ostream& s, const cricket::VideoCodec& c) {
85 } // namespace std
319 std::string* payload) {
568 std::vector<uint32_t> ssrcs;
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
structs.h 186 int16_t std; member in struct:__anon44049

Completed in 650 milliseconds

<<21222324252627282930>>