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

<<11121314151617181920>>

  /system/security/keystore/include/keystore/
utils.h 15 * std::shared_ptr<COLLECTION_TYPE<std::unique_ptr<T>>>
25 template <typename T, template <typename...> class Coll = std::vector>
28 typedef Coll<std::unique_ptr<typename std::remove_const<T>::type>> CollectionType;
29 typedef std::shared_ptr<CollectionType> CollectionPtr;
32 SharedNullableIterator(const std::shared_ptr<CollectionType>& coll) : coll_(coll) { init(); }
33 SharedNullableIterator(std::shared_ptr<CollectionType>&& coll) : coll_(coll) { init(); }
38 : coll_(std::move(other.coll_)), cur_(std::move(other.cur_)) {
86 namespace std { namespace
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
SimpleStats.java 167 Double std = stdev(); local
168 Double upper = avg + std;
169 Double lower = avg - std;
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util-generated.h 61 typename ::std::iterator_traits<ForwardIterator>::value_type> ValuesIn(
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util-generated.h     [all...]
  /art/compiler/optimizing/
superblock_cloner.h 53 void Dump(std::ostream& stream) const;
309 namespace std { namespace
321 } // namespace std
  /bionic/libc/kernel/uapi/linux/
wmi.h 41 struct calling_interface_buffer std; member in struct:dell_wmi_smbios_buffer
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Util.java 32 public static double std(double[] data) { method in class:Util
33 StandardDeviation std = new StandardDeviation(); local
34 return std.evaluate(data);
  /external/clang/include/clang/Frontend/
SerializedDiagnosticReader.h 39 const std::error_category &SDErrorCategory();
41 inline std::error_code make_error_code(SDError E) {
42 return std::error_code(static_cast<int>(E), SDErrorCategory());
65 std::error_code readDiagnostics(StringRef File);
75 std::error_code readMetaBlock(llvm::BitstreamCursor &Stream);
78 std::error_code readDiagnosticBlock(llvm::BitstreamCursor &Stream);
82 virtual std::error_code visitStartOfDiagnostic() {
83 return std::error_code();
86 virtual std::error_code visitEndOfDiagnostic() { return std::error_code();
126 namespace std { namespace
    [all...]
  /external/clang/test/Analysis/
MPIMock.h 16 namespace std { template<class T> struct complex { T real; T imag; }; } namespace
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 1 // RUN: %clang_cc1 -std=c++11 %s -verify -triple x86_64-linux-gnu
3 namespace std { namespace
13 constexpr std::nullptr_t get_nullptr() { return nullptr; }
15 constexpr std::nullptr_t np = nullptr;
17 std::nullptr_t nonconst_np; // expected-note{{declared here}}
27 IP<nonconst_np> ip5; // expected-error{{non-type template argument of type 'std::nullptr_t' (aka 'nullptr_t') is not a constant expression}} \
58 template<std::nullptr_t np> struct NP { // expected-note 2{{template parameter is declared here}}
65 NP<0> np4; // expected-error{{null non-type template argument must be cast to template parameter type 'std::nullptr_t' (aka 'nullptr_t')}}
67 NP<i> np5; // expected-error{{non-type template argument of type 'const int' cannot be converted to a value of type 'std::nullptr_t'}}
  /external/clang/test/CodeGenCXX/
global-init.cpp 109 namespace std { struct type_info; } namespace
128 const std::type_info *const s = &typeid(*p);
132 const std::type_info *const t = &typeid(p);
mangle-lambdas.cpp 1 // RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-macosx10.7.0 -emit-llvm -o - %s -w | FileCheck %s
162 namespace std { namespace
168 void f(const std::type_info& x = typeid([]()->A& { return g; }()));
  /external/clang/test/Index/
load-stmts.cpp 28 namespace std { namespace
  /external/clang/test/SemaCXX/
cxx0x-initializer-scalars.cpp 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -pedantic-errors
6 namespace std { namespace
110 one f(std::initializer_list<int>);
nested-name-spec-locations.cpp 151 namespace std { namespace in namespace:PR9388
155 template<typename T> static void foo(std::vector<T*> &V) {
158 void bar(std::vector<int*> &Blocks) {
uninit-variables.cpp 1 // RUN: %clang_cc1 -fsyntax-only -Wuninitialized -fsyntax-only -fcxx-exceptions %s -verify -std=c++1y
4 namespace std { class type_info {}; } namespace
vararg-non-pod.cpp 2 // RUN: %clang_cc1 -fsyntax-only -verify -fblocks -std=c++98 %s -Wno-error=non-pod-varargs
3 // RUN: %clang_cc1 -fsyntax-only -verify -fblocks -std=c++11 %s -Wno-error=non-pod-varargs
7 // RUN: %clang_cc1 -fsyntax-only -verify -fblocks -std=c++98 %s -Wno-error=non-pod-varargs -fms-compatibility
8 // RUN: %clang_cc1 -fsyntax-only -verify -fblocks -std=c++11 %s -Wno-error=non-pod-varargs -fms-compatibility
139 namespace std { namespace
warn-pessmizing-move.cpp 1 // RUN: %clang_cc1 -fsyntax-only -Wpessimizing-move -std=c++11 -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -Wpessimizing-move -std=c++11 -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
4 // definitions for std::move
5 namespace std { namespace
25 return std::move(a1);
26 return std::move(a2);
28 // expected-note@-2{{remove std::move call}}
38 return std::move(a1);
39 return std::move(a2);
44 return std::move(b1)
    [all...]
warn-unused-result.cpp 1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
129 namespace std { namespace

Completed in 2471 milliseconds

<<11121314151617181920>>