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

1 23 4 5 6 7 8

  /external/googletest/googlemock/include/gmock/
gmock-generated-actions.h     [all...]
  /external/v8/testing/gmock/include/gmock/
gmock-generated-actions.h     [all...]
  /external/python/cpython3/Lib/
tempfile.py 99 return_type = None
104 if return_type is str:
107 return_type = bytes
109 if return_type is bytes:
112 return_type = str
113 if return_type is None:
115 return return_type
  /external/vulkan-validation-layers/scripts/
loader_extension_generator.py 107 self.CommandData = namedtuple('CommandData', ['name', 'ext_name', 'ext_type', 'protect', 'return_type', 'handle_type', 'params', 'cdecl'])
272 return_type = cmdinfo.elem.find('proto/type')
273 if (return_type != None and return_type.text == 'void'):
274 return_type = None
303 return_type = return_type,
313 return_type = return_type,
325 return_type = return_type
    [all...]
  /bionic/libc/tools/
gensyscalls.py 428 return_type = line[:pos_lparen].strip().split()
429 if len(return_type) < 2:
433 syscall_func = return_type[-1]
434 return_type = string.join(return_type[:-1],' ')
482 "decl" : "%-15s %s (%s);" % (return_type, syscall_func, params),
  /external/mesa3d/src/compiler/glsl/
lower_jumps.cpp 241 assert(!this->signature->return_type->is_void());
242 return_value = new(this->signature) ir_variable(this->signature->return_type, "return_value", ir_var_temporary);
321 if(!this->function.signature->return_type->is_void()) {
581 else if(jump_strengths[0] == strength_return && this->function.signature->return_type->is_void())
    [all...]
  /system/tools/aidl/
ast_cpp.cpp 170 MethodDecl::MethodDecl(const std::string& return_type,
173 : MethodDecl(return_type, name, std::move(arg_list), 0u) {}
175 MethodDecl::MethodDecl(const std::string& return_type,
179 : return_type_(return_type),
262 MethodImpl::MethodImpl(const string& return_type,
267 : return_type_(return_type),
  /external/mesa3d/src/compiler/
nir_types.h 147 const struct glsl_type * glsl_function_type(const struct glsl_type *return_type,
nir_types.cpp 351 glsl_function_type(const glsl_type *return_type,
354 return glsl_type::get_function_instance(return_type, params, num_params);
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 602 self.return_type = "void"
708 return_type = "void"
711 return_type = child.get( "type", "void" )
718 if self.return_type != return_type:
719 raise RuntimeError( "Return type changed in %s. Was %s, now %s." % (name, self.return_type, return_type))
732 self.return_type = return_type
    [all...]
  /external/v8/src/asmjs/
asm-typer.cc 1811 AsmType* return_type; local
1821 AsmType* return_type; local
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
debug.c 193 debug_type return_type; member in struct:debug_function_type
253 debug_type return_type; member in struct:debug_method_type
369 debug_type return_type; member in struct:debug_function
767 debug_type return_type, bfd_boolean global,
777 if (return_type == NULL)
789 f->return_type = return_type;
    [all...]
  /art/compiler/optimizing/
optimizing_unit_test.h 148 DataType::Type return_type = DataType::Type::kInt32) {
175 HGraphBuilder builder(graph, dex_compilation_unit, accessor, handles_.get(), return_type);
  /external/harfbuzz_ng/src/
hb-unicode-private.hh 72 #define HB_UNICODE_FUNC_IMPLEMENT(return_type, name) \
73 inline return_type name (hb_codepoint_t unicode) { return func.name (this, unicode, user_data.name); }
hb-unicode.cc 376 #define HB_UNICODE_FUNC_IMPLEMENT(return_type, name) \
378 return_type \
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/scripts/
gen_llvm_ir_macros.py 160 return_type = func.group(1).lstrip() + '*'
224 "return": return_type,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
type_manager.cpp 126 Type* return_type = GetType(inst.GetSingleWordInOperand(0)); variable
131 type = new Function(return_type, param_types);
  /art/test/712-varhandle-invocations/util-src/
generate_java.py 762 return_type = accessor.get_return_type(var_type) variable
818 return_type = accessor.get_return_type(var_type) variable
    [all...]
  /test/vts/runners/host/tcp_client/
vts_tcp_client.py 301 if result.return_type.type == CompSpecMsg_pb2.TYPE_SUBMODULE:
317 if hasattr(result, "return_type"):
347 if result.return_type.type == CompSpecMsg_pb2.TYPE_SUBMODULE:
352 elif result.return_type.type == CompSpecMsg_pb2.TYPE_SCALAR:
353 return getattr(result.return_type.scalar_value,
354 result.return_type.scalar_type)
  /external/google-breakpad/src/testing/scripts/generator/cpp/
ast.py 360 def __init__(self, start, end, name, return_type, parameters,
364 self.return_type = converter.CreateReturnType(return_type)
377 if self.return_type and 'static' in self.return_type.modifiers:
393 (self.return_type, self.name, self.parameters,
399 def __init__(self, start, end, name, in_class, return_type, parameters,
401 Function.__init__(self, start, end, name, return_type, parameters,
    [all...]
  /external/googletest/googlemock/scripts/generator/cpp/
ast.py 361 def __init__(self, start, end, name, return_type, parameters,
365 self.return_type = converter.CreateReturnType(return_type)
378 if self.return_type and 'static' in self.return_type.modifiers:
394 (self.return_type, self.name, self.parameters,
400 def __init__(self, start, end, name, in_class, return_type, parameters,
402 Function.__init__(self, start, end, name, return_type, parameters,
    [all...]
  /external/v8/testing/gmock/scripts/generator/cpp/
ast.py 361 def __init__(self, start, end, name, return_type, parameters,
365 self.return_type = converter.CreateReturnType(return_type)
378 if self.return_type and 'static' in self.return_type.modifiers:
394 (self.return_type, self.name, self.parameters,
400 def __init__(self, start, end, name, in_class, return_type, parameters,
402 Function.__init__(self, start, end, name, return_type, parameters,
    [all...]
  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 61 typedef T return_type; typedef in struct:flatbuffers::IndirectHelper
64 static return_type Read(const uint8_t *p, uoffset_t i) {
69 typedef const T *return_type; typedef in struct:flatbuffers::IndirectHelper
72 static return_type Read(const uint8_t *p, uoffset_t i) {
74 return reinterpret_cast<return_type>(p + ReadScalar<uoffset_t>(p));
78 typedef const T *return_type; typedef in struct:flatbuffers::IndirectHelper
81 static return_type Read(const uint8_t *p, uoffset_t i) {
186 typedef VectorIterator<T, typename IndirectHelper<T>::return_type>
194 typedef typename IndirectHelper<T>::return_type return_type; typedef in class:flatbuffers::Vector
    [all...]
  /system/chre/external/flatbuffers/include/flatbuffers/
flatbuffers.h 256 typedef T return_type; typedef in struct:flatbuffers::IndirectHelper
259 static return_type Read(const uint8_t *p, uoffset_t i) {
264 typedef const T *return_type; typedef in struct:flatbuffers::IndirectHelper
267 static return_type Read(const uint8_t *p, uoffset_t i) {
269 return reinterpret_cast<return_type>(p + ReadScalar<uoffset_t>(p));
273 typedef const T *return_type; typedef in struct:flatbuffers::IndirectHelper
276 static return_type Read(const uint8_t *p, uoffset_t i) {
377 typedef VectorIterator<T, typename IndirectHelper<T>::return_type>
385 typedef typename IndirectHelper<T>::return_type return_type; typedef in class:flatbuffers::Vector
    [all...]
  /art/runtime/mirror/
emulated_stack_frame.cc 53 const Primitive::Type return_type = r_type->GetPrimitiveType(); local
54 if (return_type == Primitive::kPrimNot) {
56 } else if (Primitive::Is64BitType(return_type)) {

Completed in 506 milliseconds

1 23 4 5 6 7 8