HomeSort by relevance Sort by last modified time
    Searched refs:ParamType (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/libbrillo/brillo/dbus/
dbus_param_writer.h 27 template<typename ParamType, typename... RestOfParams>
29 const ParamType& param,
34 DBusType<ParamType>::Write(writer, param);
46 template<typename ParamType, typename... RestOfParams>
48 const ParamType& /* param */,
60 template<typename ParamType, typename... RestOfParams>
62 ParamType* param,
67 DBusType<ParamType>::Write(writer, *param);
dbus_param_reader.h 65 // 1. For the case where ParamType is a value type (D-Bus IN parameter).
66 // 2. For the case where ParamType is a pointer (D-Bus OUT parameter).
72 // Overload 1: ParamType is not a pointer.
73 template<typename ParamType, typename CallbackType, typename... Args>
74 static typename std::enable_if<!std::is_pointer<ParamType>::value, bool>::type
85 // ParamType could be a reference type (e.g. 'const std::string&').
88 // the value type. If ParamType is already a value type, ParamValueType will
89 // be the same as ParamType.
90 using ParamValueType = typename std::decay<ParamType>::type;
103 // (ParamType) from DBusParamReader<> template parameter list and forwar
    [all...]
  /cts/suite/audio_quality/lib/include/task/
TaskProcess.h 64 enum ParamType {
71 Param(ParamType type, android::String8& string);
73 ParamType getType();
81 ParamType mType;
  /external/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h 64 /// \brief AST_MATCHER_FUNCTION_P(ReturnType, DefineMatcher, ParamType, Param) {
72 /// is ParamType.
75 #define AST_MATCHER_FUNCTION_P(ReturnType, DefineMatcher, ParamType, Param) \
76 AST_MATCHER_FUNCTION_P_OVERLOAD(ReturnType, DefineMatcher, ParamType, Param, \
78 #define AST_MATCHER_FUNCTION_P_OVERLOAD(ReturnType, DefineMatcher, ParamType, \
80 inline ReturnType DefineMatcher(ParamType const &Param); \
81 typedef ReturnType (&DefineMatcher##_Type##OverloadId)(ParamType const &); \
82 inline ReturnType DefineMatcher(ParamType const &Param)
116 /// \brief AST_MATCHER_P(Type, DefineMatcher, ParamType, Param) { ... }
124 /// is ParamType
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-param-util.h 144 typedef T ParamType;
355 typedef typename TestClass::ParamType ParamType;
356 explicit ParameterizedTestFactory(ParamType parameter) :
364 const ParamType parameter_;
373 template <class ParamType>
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
391 : public TestMetaFactoryBase<typename TestCase::ParamType> {
393 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 144 typedef T ParamType;
355 typedef typename TestClass::ParamType ParamType;
356 explicit ParameterizedTestFactory(ParamType parameter) :
364 const ParamType parameter_;
373 template <class ParamType>
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
391 : public TestMetaFactoryBase<typename TestCase::ParamType> {
393 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-param-util.h 144 typedef T ParamType;
355 typedef typename TestClass::ParamType ParamType;
356 explicit ParameterizedTestFactory(ParamType parameter) :
364 const ParamType parameter_;
373 template <class ParamType>
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
391 : public TestMetaFactoryBase<typename TestCase::ParamType> {
393 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-param-util.h 144 typedef T ParamType;
355 typedef typename TestClass::ParamType ParamType;
356 explicit ParameterizedTestFactory(ParamType parameter) :
364 const ParamType parameter_;
373 template <class ParamType>
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
391 : public TestMetaFactoryBase<typename TestCase::ParamType> {
393 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 143 typedef T ParamType;
354 typedef typename TestClass::ParamType ParamType;
355 explicit ParameterizedTestFactory(ParamType parameter) :
363 const ParamType parameter_;
372 template <class ParamType>
377 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
390 : public TestMetaFactoryBase<typename TestCase::ParamType> {
392 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-param-util.h 144 typedef T ParamType;
355 typedef typename TestClass::ParamType ParamType;
356 explicit ParameterizedTestFactory(ParamType parameter) :
364 const ParamType parameter_;
373 template <class ParamType>
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
391 : public TestMetaFactoryBase<typename TestCase::ParamType> {
393 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-param-util.h 144 typedef T ParamType;
355 typedef typename TestClass::ParamType ParamType;
356 explicit ParameterizedTestFactory(ParamType parameter) :
364 const ParamType parameter_;
373 template <class ParamType>
378 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
391 : public TestMetaFactoryBase<typename TestCase::ParamType> {
393 typedef typename TestCase::ParamType ParamType;
    [all...]
gtest-param-util-generated.h     [all...]
  /external/libchrome/base/
tuple.h 118 // ParamType: what type to pass to functions (refs should not be constified).
124 typedef const P& ParamType;
131 typedef P& ParamType;
158 explicit Tuple(typename TupleTraits<Ts>::ParamType... args)
169 explicit TupleBaseImpl(typename TupleTraits<Ts>::ParamType... args)
176 explicit TupleLeaf(typename TupleTraits<T>::ParamType x) : x(x) {}
215 using ParamTuple = Tuple<typename TupleTraits<Ts>::ParamType...>;
  /external/libweave/third_party/chromium/base/
tuple.h 118 // ParamType: what type to pass to functions (refs should not be constified).
124 typedef const P& ParamType;
131 typedef P& ParamType;
158 explicit Tuple(typename TupleTraits<Ts>::ParamType... args)
169 explicit TupleBaseImpl(typename TupleTraits<Ts>::ParamType... args)
176 explicit TupleLeaf(typename TupleTraits<T>::ParamType x) : x(x) {}
215 using ParamTuple = Tuple<typename TupleTraits<Ts>::ParamType...>;
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 180 static bool isRValueRef(QualType ParamType) {
181 return ParamType->isRValueReferenceType();
188 static bool isPointerOrRef(QualType ParamType) {
189 return ParamType->isPointerType() || ParamType->isReferenceType();
621 QualType ParamType = Param->getType();
644 if (isRValueRef(ParamType))
648 else if (isPointerOrRef(ParamType) &&
649 (!ParamType->getPointeeType().isConstQualified() ||
650 isSetOnReadPtrType(ParamType)))
    [all...]
  /ndk/sources/android/support/tests/minitest/
minitest.cc 73 #define MINITEST_STRING_OPERATOR_LL_(ParamType, Format) \
74 String& String::operator<<(ParamType v) { \
  /external/opencv3/modules/core/include/opencv2/
core.hpp     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_pageobj.h 268 typedef enum { None, PropertiesDict, DirectDict, MCID } ParamType;
278 inline ParamType GetParamType() const { return m_ParamType; }
286 inline void SetParam(ParamType type, void* param) {
294 ParamType m_ParamType;

Completed in 987 milliseconds

1 2 3