/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
TelephonyTestUtils.java | 46 Class<?>[] paramType = new Class[numParam]; 48 paramType[i] = params[i].getClass(); 50 Constructor constructor = clazz.getDeclaredConstructor(paramType); 68 Class<?>[] paramType = new Class[numParam]; 70 paramType[i] = params[i].getClass(); 72 Method methodReflection = clazz.getDeclaredMethod(method, paramType); 92 Class<?>[] paramType = new Class[numParam]; 94 paramType[i] = params[i].getClass(); 96 Method methodReflection = clazz.getDeclaredMethod(method, paramType); 116 Class<?>[] paramType = new Class[numParam] [all...] |
/external/libbrillo/brillo/dbus/ |
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...] |
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);
|
/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...] |
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/common/inc/ |
vidc_debug.h | 68 #define VALIDATE_OMX_PARAM_DATA(ptr, paramType) \ 71 paramType *p = reinterpret_cast<paramType *>(ptr); \ 72 if (p->nSize < sizeof(paramType)) { \ 74 (unsigned int)p->nSize, sizeof(paramType), #paramType); \
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/ |
vidc_debug.h | 72 #define VALIDATE_OMX_PARAM_DATA(ptr, paramType) \ 75 paramType *p = reinterpret_cast<paramType *>(ptr); \ 76 if (p->nSize < sizeof(paramType)) { \ 78 (unsigned int)p->nSize, sizeof(paramType), #paramType); \
|
/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/mesa3d/src/mapi/vgapi/ |
vgapi.csv | 31 VGint, GetParameterVectorSize, VGHandle object, VGint paramType 32 VGfloat, GetParameterf, VGHandle object, VGint paramType 33 void, GetParameterfv, VGHandle object, VGint paramType, VGint count, VGfloat *values 34 VGint, GetParameteri, VGHandle object, VGint paramType 35 void, GetParameteriv, VGHandle object, VGint paramType, VGint count, VGint *values 67 void, SetParameterf, VGHandle object, VGint paramType, VGfloat value 68 void, SetParameterfv, VGHandle object, VGint paramType, VGint count, const VGfloat *values 69 void, SetParameteri, VGHandle object, VGint paramType, VGint value 70 void, SetParameteriv, VGHandle object, VGint paramType, VGint count, const VGint *values
|
/ndk/docs/Additional_library_docs/renderscript/ |
classandroid_1_1RSC_1_1Allocation.html | 92 <td class="paramtype">const void * </td> 116 <td class="paramtype">uint32_t </td> 122 <td class="paramtype">size_t </td> 128 <td class="paramtype">const void * </td> 158 <td class="paramtype">uint32_t </td> 164 <td class="paramtype">size_t </td> 170 <td class="paramtype">sp< const <a class="el" href="classandroid_1_1RSC_1_1Allocation.html">Allocation</a> > </td> 176 <td class="paramtype">uint32_t </td> 207 <td class="paramtype">uint32_t </td> 213 <td class="paramtype">size_t </td [all...] |
classandroid_1_1RSC_1_1ScriptIntrinsicLUT.html | 77 <td class="paramtype">sp< <a class="el" href="classandroid_1_1RSC_1_1RS.html">RS</a> > </td> 83 <td class="paramtype">sp< const <a class="el" href="classandroid_1_1RSC_1_1Element.html">Element</a> > </td> 114 <td class="paramtype">sp< <a class="el" href="classandroid_1_1RSC_1_1Allocation.html">Allocation</a> > </td> 120 <td class="paramtype">sp< <a class="el" href="classandroid_1_1RSC_1_1Allocation.html">Allocation</a> > </td> 149 <td class="paramtype">unsigned char </td> 155 <td class="paramtype">unsigned int </td> 161 <td class="paramtype">unsigned char * </td> 191 <td class="paramtype">unsigned char </td> 197 <td class="paramtype">unsigned int </td> 203 <td class="paramtype">unsigned char * </td [all...] |
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
OldGenericReflectionCornerCases.java | 51 ParameterizedType paramType = (ParameterizedType) parameter; 52 Type[] actualTypeArguments = paramType.getActualTypeArguments(); 94 ParameterizedType paramType = (ParameterizedType) parameter; 95 Type[] actualTypeArguments = paramType.getActualTypeArguments(); 151 ParameterizedType paramType = (ParameterizedType) parameter; 152 Type[] actualTypeArguments = paramType.getActualTypeArguments(); 203 ParameterizedType paramType = (ParameterizedType) parameter; 204 Type[] actualTypeArguments = paramType.getActualTypeArguments();
|
/hardware/qcom/display/msm8084/libqdutils/ |
qdMetaData.cpp | 38 int setMetaData(private_handle_t *handle, DispParamType paramType, 60 data->operation |= paramType; 61 switch (paramType) { 90 ALOGE("Unknown paramType %d", paramType);
|
/hardware/qcom/display/msm8226/libqdutils/ |
qdMetaData.cpp | 39 int setMetaData(private_handle_t *handle, DispParamType paramType, 61 data->operation |= paramType; 62 switch (paramType) { 91 ALOGE("Unknown paramType %d", paramType);
|
/hardware/qcom/display/msm8909/libqdutils/ |
qdMetaData.cpp | 39 int setMetaData(private_handle_t *handle, DispParamType paramType, 61 data->operation |= paramType; 62 switch (paramType) { 97 ALOGE("Unknown paramType %d", paramType);
|
/hardware/qcom/display/msm8960/libqdutils/ |
qdMetaData.cpp | 36 int setMetaData(private_handle_t *handle, DispParamType paramType, 58 data->operation |= paramType; 59 switch (paramType) { 82 ALOGE("Unknown paramType %d", paramType);
|
/hardware/qcom/display/msm8994/libqdutils/ |
qdMetaData.cpp | 39 int setMetaData(private_handle_t *handle, DispParamType paramType, 61 data->operation |= paramType; 62 switch (paramType) { 97 ALOGE("Unknown paramType %d", paramType);
|
/hardware/qcom/display/msm8996/libqdutils/ |
qdMetaData.cpp | 39 int setMetaData(private_handle_t *handle, DispParamType paramType, 61 data->operation |= paramType; 62 switch (paramType) { 91 ALOGE("Unknown paramType %d", paramType);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_params.c | 972 VGint paramType, 983 switch(paramType) { 987 vegaSetParameteri(object, paramType, floor(value)); 994 /* it's an error if paramType refers to a vector parameter */ 1026 VGint paramType, 1037 switch(paramType) { 1051 /* it's an error if paramType refers to a vector parameter */ 1101 VGint paramType, 1107 VGint real_count = vegaGetParameterVectorSize(object, paramType); 1121 switch(paramType) { [all...] |
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
gtest-param-util-generated.h.pump | 133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; 139 virtual ParamIteratorInterface<ParamType>* Begin() const { 142 virtual ParamIteratorInterface<ParamType>* End() const { 147 class Iterator : public ParamIteratorInterface<ParamType> { 149 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[ 162 virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const { 180 virtual ParamIteratorInterface<ParamType>* Clone() const { 183 virtual const ParamType* Current() const { return ¤t_value_; } 184 virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const { 215 current_value_ = ParamType($for j, [[*current$(j)_]]) [all...] |
/external/gtest/include/gtest/internal/ |
gtest-param-util-generated.h.pump | 133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; 139 virtual ParamIteratorInterface<ParamType>* Begin() const { 142 virtual ParamIteratorInterface<ParamType>* End() const { 147 class Iterator : public ParamIteratorInterface<ParamType> { 149 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[ 162 virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const { 180 virtual ParamIteratorInterface<ParamType>* Clone() const { 183 virtual const ParamType* Current() const { return ¤t_value_; } 184 virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const { 215 current_value_ = ParamType($for j, [[*current$(j)_]]) [all...] |
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-param-util-generated.h.pump | 133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; 139 virtual ParamIteratorInterface<ParamType>* Begin() const { 142 virtual ParamIteratorInterface<ParamType>* End() const { 147 class Iterator : public ParamIteratorInterface<ParamType> { 149 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[ 162 virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const { 180 virtual ParamIteratorInterface<ParamType>* Clone() const { 183 virtual const ParamType* Current() const { return ¤t_value_; } 184 virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const { 215 current_value_ = ParamType($for j, [[*current$(j)_]]) [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-param-util-generated.h.pump | 133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; 139 virtual ParamIteratorInterface<ParamType>* Begin() const { 142 virtual ParamIteratorInterface<ParamType>* End() const { 147 class Iterator : public ParamIteratorInterface<ParamType> { 149 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[ 162 virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const { 180 virtual ParamIteratorInterface<ParamType>* Clone() const { 183 virtual const ParamType* Current() const { return ¤t_value_; } 184 virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const { 215 current_value_ = ParamType($for j, [[*current$(j)_]]) [all...] |
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
gtest-param-util-generated.h.pump | 133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; 139 virtual ParamIteratorInterface<ParamType>* Begin() const { 142 virtual ParamIteratorInterface<ParamType>* End() const { 147 class Iterator : public ParamIteratorInterface<ParamType> { 149 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[ 162 virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const { 180 virtual ParamIteratorInterface<ParamType>* Clone() const { 183 virtual const ParamType* Current() const { return ¤t_value_; } 184 virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const { 215 current_value_ = ParamType($for j, [[*current$(j)_]]) [all...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-param-util-generated.h.pump | 133 typedef ::std::tr1::tuple<$for j, [[T$j]]> ParamType; 139 virtual ParamIteratorInterface<ParamType>* Begin() const { 142 virtual ParamIteratorInterface<ParamType>* End() const { 147 class Iterator : public ParamIteratorInterface<ParamType> { 149 Iterator(const ParamGeneratorInterface<ParamType>* base, $for j, [[ 162 virtual const ParamGeneratorInterface<ParamType>* BaseGenerator() const { 180 virtual ParamIteratorInterface<ParamType>* Clone() const { 183 virtual const ParamType* Current() const { return ¤t_value_; } 184 virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const { 215 current_value_ = ParamType($for j, [[*current$(j)_]]) [all...] |
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/ |
MarshalQueryablePair.java | 55 ParameterizedType paramType; 57 paramType = (ParameterizedType) typeReference.getType(); 64 Type actualTypeArgument = paramType.getActualTypeArguments()[0]; 74 Type actualTypeArgument = paramType.getActualTypeArguments()[1];
|