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

1 2 3 4 5 6 7 8

  /test/vts/testcases/system/libc/
LibcTest.py 48 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1,
52 result.return_type.scalar_value.int32_t)
53 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1,
63 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1,
67 result.return_type.scalar_value.int32_t)
68 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1,
78 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1,
82 result.return_type.scalar_value.int32_t)
83 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1,
93 asserts.assertNotEqual(result.return_type.scalar_value.int32_t, -1
    [all...]
  /system/bt/stack/smp/
aes.h 60 typedef uint_8t return_type; typedef
83 return_type aes_set_key(const unsigned char key[], length_type keylen,
89 return_type aes_encrypt(const unsigned char in[N_BLOCK],
92 return_type aes_cbc_encrypt(const unsigned char* in, unsigned char* out,
99 return_type aes_decrypt(const unsigned char in[N_BLOCK],
102 return_type aes_cbc_decrypt(const unsigned char* in, unsigned char* out,
  /external/google-breakpad/src/testing/scripts/generator/cpp/
gmock_class.py 65 return_type = 'void'
66 if node.return_type:
69 if node.return_type.modifiers:
70 modifiers = ' '.join(node.return_type.modifiers) + ' '
71 return_type = modifiers + node.return_type.name
72 template_args = [arg.name for arg in node.return_type.templated_types]
74 return_type += '<' + ', '.join(template_args) + '>'
81 if node.return_type.pointer:
82 return_type += '*
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 66 template <class F, class return_type>
69 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
75 template <class F, class return_type, class arg_type>
78 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
84 template <class F, class return_type, class arg_type1, class arg_type2>
87 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
93 template <class F, class return_type>
96 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/
types.pass.cpp 66 template <class F, class return_type>
69 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
75 template <class F, class return_type, class arg_type>
78 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
84 template <class F, class return_type, class arg_type1, class arg_type2>
87 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
93 template <class F, class return_type>
96 static_assert((std::is_same<typename F::result_type, return_type>::value), "" );
  /external/googletest/googlemock/scripts/generator/cpp/
gmock_class.py 66 return_type = 'void'
67 if node.return_type:
70 if node.return_type.modifiers:
71 modifiers = ' '.join(node.return_type.modifiers) + ' '
72 return_type = modifiers + node.return_type.name
73 template_args = [arg.name for arg in node.return_type.templated_types]
75 return_type += '<' + ', '.join(template_args) + '>'
82 if node.return_type.pointer:
83 return_type += '*
    [all...]
  /external/v8/testing/gmock/scripts/generator/cpp/
gmock_class.py 66 return_type = 'void'
67 if node.return_type:
70 if node.return_type.modifiers:
71 modifiers = ' '.join(node.return_type.modifiers) + ' '
72 return_type = modifiers + node.return_type.name
73 template_args = [arg.name for arg in node.return_type.templated_types]
75 return_type += '<' + ', '.join(template_args) + '>'
82 if node.return_type.pointer:
83 return_type += '*
    [all...]
  /external/libtextclassifier/
textclassifier_jni.h 46 #define JNI_METHOD_PRIMITIVE(return_type, package_name, class_name, \
48 JNIEXPORT return_type JNICALL JNI_METHOD_NAME_INTERNAL( \
53 #define JNI_METHOD2(return_type, package_name, class_name, method_name) \
54 JNI_METHOD_PRIMITIVE(return_type, package_name, class_name, method_name)
56 #define JNI_METHOD(return_type, class_name, method_name) \
57 JNI_METHOD2(return_type, TC_PACKAGE_NAME, class_name, method_name)
  /external/mesa3d/src/glx/
glxextensions.h 289 # define GLX_ALIAS2(return_type, real_func, proto_args, args, aliased_func) \
290 return_type real_func proto_args \
292 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \
293 GLX_ALIAS2(return_type, real_func, proto_args, args, aliased_func)
297 # define GLX_ALIAS(return_type, real_func, proto_args, args, aliased_func) \
298 return_type real_func proto_args \
  /external/v8/src/asmjs/
asm-types.cc 167 bool CanBeInvokedWith(AsmType* return_type,
179 bool AsmFroundType::CanBeInvokedWith(AsmType* return_type,
202 bool CanBeInvokedWith(AsmType* return_type,
204 if (!return_type_->IsExactly(return_type)) {
238 bool AsmFFIType::CanBeInvokedWith(AsmType* return_type,
240 if (return_type->IsExactly(AsmType::Float())) {
275 bool AsmFunctionType::CanBeInvokedWith(AsmType* return_type,
277 if (!return_type_->IsExactly(return_type)) {
308 AsmType* return_type, const ZoneVector<AsmType*>& args) {
310 if (overloads_[ii]->AsCallableType()->CanBeInvokedWith(return_type, args))
    [all...]
asm-types.h 110 virtual bool CanBeInvokedWith(AsmType* return_type,
137 bool CanBeInvokedWith(AsmType* return_type,
141 AsmFunctionType(Zone* zone, AsmType* return_type)
142 : return_type_(return_type), args_(zone) {}
171 bool CanBeInvokedWith(AsmType* return_type,
184 bool CanBeInvokedWith(AsmType* return_type,
201 bool CanBeInvokedWith(AsmType* return_type,
  /tools/dexter/slicer/
dex_ir_builder.cc 135 static std::string CreateShorty(Type* return_type, TypeList* param_types) {
137 ss << dex::DescriptorToShorty(return_type->descriptor->c_str());
146 Proto* Builder::GetProto(Type* return_type, TypeList* param_types) {
148 auto shorty = GetAsciiString(CreateShorty(return_type, param_types).c_str());
153 ir_proto->return_type == return_type &&
162 ir_proto->return_type = return_type;
  /development/vndk/tools/header-checker/tests/expected/
example1.cpp 799 return_type: "type-6"
811 return_type: "type-6"
823 return_type: "type-6"
835 return_type: "type-12"
847 return_type: "type-2"
859 return_type: "type-6"
871 return_type: "type-6"
883 return_type: "type-2"
895 return_type: "type-2"
917 return_type: "type-6
    [all...]
example1.h 799 return_type: "type-6"
811 return_type: "type-6"
823 return_type: "type-6"
835 return_type: "type-12"
847 return_type: "type-2"
859 return_type: "type-6"
871 return_type: "type-6"
883 return_type: "type-2"
895 return_type: "type-2"
917 return_type: "type-6
    [all...]
example2.h 357 return_type: "type-6"
369 return_type: "type-6"
381 return_type: "type-6"
393 return_type: "type-12"
  /external/libmojo/base/android/jni_generator/
jni_generator_tests.py 156 NativeMethod(return_type='int', static=False,
161 NativeMethod(return_type='void', static=False, name='Destroy',
167 NativeMethod(return_type='long', static=False, name='AddBookmark',
181 NativeMethod(return_type='String', static=True,
187 NativeMethod(return_type='void', static=True,
195 NativeMethod(return_type='byte[]', static=False,
200 NativeMethod(return_type='String[]', static=True,
204 NativeMethod(return_type='void', static=False,
210 NativeMethod(return_type='long', static=False,
231 NativeMethod(return_type='int', static=False
    [all...]
  /external/mesa3d/src/mapi/glapi/gen/
gl_table.py 54 f.return_type, f.name, arg_string, f.offset)
158 print 'typedef %s (GLAPIENTRYP _glptr_%s)(%s);' % (f.return_type, f.name, arg_string)
165 print 'static inline void SET_%s(struct _glapi_table *disp, %s (GLAPIENTRYP fn)(%s)) {' % (f.name, f.return_type, arg_string)
  /system/tools/aidl/
type_namespace.cpp 104 const ValidatableType* return_type = GetValidatableType(raw_type, &error_msg, local
106 if (return_type == nullptr) {
114 return return_type;
  /art/compiler/optimizing/
builder.h 52 DataType::Type return_type = DataType::Type::kInt32);
  /external/libffi/src/sh64/
ffi.c 37 return_type (ffi_type *arg) function
69 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
165 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0);
222 cif->flags = return_type (cif->rtype);
266 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
289 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
365 if (return_type (cif->rtype) == FFI_TYPE_STRUCT)
467 return return_type (cif->rtype);
  /external/python/cpython2/Modules/_ctypes/libffi/src/sh64/
ffi.c 37 return_type (ffi_type *arg) function
69 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
165 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0);
222 cif->flags = return_type (cif->rtype);
266 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
289 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
365 if (return_type (cif->rtype) == FFI_TYPE_STRUCT)
467 return return_type (cif->rtype);
  /external/python/cpython3/Modules/_ctypes/libffi/src/sh64/
ffi.c 37 return_type (ffi_type *arg) function
69 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
165 greg = (return_type (cif->rtype) == FFI_TYPE_STRUCT ? 1 : 0);
222 cif->flags = return_type (cif->rtype);
266 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
289 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
365 if (return_type (cif->rtype) == FFI_TYPE_STRUCT)
467 return return_type (cif->rtype);
  /external/tensorflow/tensorflow/java/src/gen/cc/
java_defs.h 207 static Method Create(const string& name, const Type& return_type) {
208 return Method(name, return_type, false);
215 const Type& return_type() const { return return_type_; } function in class:tensorflow::java::Method
250 Method(const string& name, const Type& return_type, bool constructor)
251 : name_(name), return_type_(return_type), constructor_(constructor) {}
  /external/clang/test/SemaCXX/
warn-range-loop-analysis.cpp 4 template <typename return_type>
6 return_type operator*();
  /external/libffi/src/sh/
ffi.c 57 return_type (ffi_type *arg) function
127 if (return_type (ecif->cif->rtype) == FFI_TYPE_STRUCT)
334 greg = ((return_type (cif->rtype) == FFI_TYPE_STRUCT) &&
390 cif->flags += (unsigned) (return_type (cif->rtype)) << 24;
424 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
447 && return_type (cif->rtype) != FFI_TYPE_STRUCT)
471 insn = (return_type (cif->rtype) == FFI_TYPE_STRUCT
716 return return_type (cif->rtype);

Completed in 671 milliseconds

1 2 3 4 5 6 7 8