Searched defs:arg_type (Results 1 - 19 of 19) sorted by relevance

/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
H A Dmove_convert.pass.cpp54 TrackingDeleter() : arg_type(&makeArgumentID<>()) {}
57 : arg_type(&makeArgumentID<TrackingDeleter const&>()) {}
60 : arg_type(&makeArgumentID<TrackingDeleter &&>()) {}
63 TrackingDeleter(T&&) : arg_type(&makeArgumentID<T&&>()) {}
66 arg_type = &makeArgumentID<TrackingDeleter const&>();
71 arg_type = &makeArgumentID<TrackingDeleter &&>();
77 arg_type = &makeArgumentID<T&&>();
85 TypeID const* tmp = arg_type;
86 arg_type = nullptr;
90 mutable TypeID const* arg_type; member in struct:TrackingDeleter
[all...]
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
H A Dmove_convert.pass.cpp68 TrackingDeleter() : arg_type(&makeArgumentID<>()) {}
71 : arg_type(&makeArgumentID<TrackingDeleter const&>()) {}
74 : arg_type(&makeArgumentID<TrackingDeleter &&>()) {}
77 TrackingDeleter(T&&) : arg_type(&makeArgumentID<T&&>()) {}
80 arg_type = &makeArgumentID<TrackingDeleter const&>();
85 arg_type = &makeArgumentID<TrackingDeleter &&>();
91 arg_type = &makeArgumentID<T&&>();
99 TypeID const* tmp = arg_type;
100 arg_type = nullptr;
104 mutable TypeID const* arg_type; member in struct:TrackingDeleter
145 mutable TypeID const* arg_type; member in struct:ConstTrackingDeleter
[all...]
/external/libchrome/base/trace_event/
H A Dtrace_log.cc115 unsigned char arg_type; local
117 ::trace_event_internal::SetTraceValue(value, &arg_type, &arg_value);
130 &arg_type,
/external/mesa3d/src/gallium/state_trackers/clover/llvm/codegen/
H A Dcommon.cpp80 const auto arg_type = arg.getType(); local
86 const unsigned arg_store_size = dl.getTypeStoreSize(arg_type);
87 const unsigned arg_api_size = dl.getTypeAllocSize(arg_type);
89 const auto target_type = !arg_type->isIntegerTy() ? arg_type :
124 isa<::llvm::PointerType>(arg_type) && arg.hasByValAttr() ?
125 cast<::llvm::PointerType>(arg_type)->getElementType() : arg_type;
/external/e2fsprogs/intl/
H A Dprintf-args.h75 } arg_type; typedef in typeref:enum:__anon5660
80 arg_type type;
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_logic.c360 LLVMTypeRef arg_type; local
370 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 4);
374 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 8);
378 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 32);
384 arg_type = LLVMVectorType(LLVMDoubleTypeInContext(lc), 2);
388 arg_type = LLVMVectorType(LLVMFloatTypeInContext(lc), 4);
391 arg_type = LLVMVectorType(LLVMInt8TypeInContext(lc), 16);
394 if (arg_type != bld->int_vec_type) {
395 mask = LLVMBuildBitCast(builder, mask, arg_type, "");
398 if (arg_type !
[all...]
/external/v8/tools/clang/plugins/
H A DCheckIPCVisitor.cpp110 QualType arg_type; local
114 arg_type = cast_expr->getTypeAsWritten();
116 arg_type = arg_expr->getType();
120 if (CheckType(arg_type, &details)) {
/external/libffi/src/arm/
H A Dffi.c69 static size_t ffi_put_arg(ffi_type **arg_type, void **arg, char *stack) argument
72 register ffi_type **p_arg = arg_type;
/external/python/cpython2/Modules/_ctypes/libffi/src/arm/
H A Dffi.c69 static size_t ffi_put_arg(ffi_type **arg_type, void **arg, char *stack) argument
72 register ffi_type **p_arg = arg_type;
/external/python/cpython3/Modules/_ctypes/libffi/src/arm/
H A Dffi.c69 static size_t ffi_put_arg(ffi_type **arg_type, void **arg, char *stack) argument
72 register ffi_type **p_arg = arg_type;
/external/v8/src/tracing/
H A Dtrace-event.h511 uint8_t arg_type; local
513 SetTraceValue(std::forward<ARG1_TYPE>(arg1_val), &arg_type, &arg_value); local
516 &arg1_name, &arg_type, &arg_value, flags);
/external/e2fsprogs/misc/
H A De4defrag.c1675 int arg_type = -1; local
1759 arg_type = DEVNAME;
1769 arg_type = DIRNAME;
1773 arg_type = FILENAME;
1787 if (arg_type == FILENAME || arg_type == DIRNAME) {
1816 switch (arg_type) {
1851 if (arg_type == DEVNAME) {
1974 if (arg_type == DEVNAME)
1977 else if (arg_type
[all...]
/external/flatbuffers/src/
H A Didl_gen_cpp.cpp2312 const auto arg_type = local
2319 arg_list += arg_type;
/external/wayland/src/
H A Dscanner.c188 enum arg_type { enum
201 enum arg_type type;
/external/v8/src/asmjs/
H A Dasm-typer.cc2381 AsmType* arg_type; local
2382 RECURSE(arg_type = ValidateExpression(arg));
2383 args.emplace_back(arg_type);
2684 AsmType* arg_type; local
2685 RECURSE(arg_type = ValidateExpression(arg));
2686 if (arg_type->IsA(AsmType::Floatish()) || arg_type->IsA(AsmType::DoubleQ()) ||
2687 arg_type->IsA(AsmType::Signed()) || arg_type->IsA(AsmType::Unsigned())) {
/external/python/cpython3/Python/
H A DPython-ast.c473 static PyTypeObject *arg_type; variable
1166 arg_type = make_type("arg", &AST_type, arg_fields, 2);
1167 if (!arg_type) return 0;
1168 if (!add_attributes(arg_type, arg_attributes, 2)) return 0;
3848 result = PyType_GenericNew(arg_type, NULL, NULL);
8041 if (PyDict_SetItemString(d, "arg", (PyObject*)arg_type) < 0) return NULL;
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cGPUShaderFP64Tests.cpp13092 const Utils::_variable_type res_type, const Utils::_variable_type arg_type)
13093 : functionObject(function_enum, function_name, function_pointer, res_type), m_arg_type(arg_type)
13154 const Utils::_variable_type res_type, const Utils::_variable_type arg_type)
13155 : unaryBase(function_enum, function_name, (glw::GLvoid*)function_pointer, res_type, arg_type)
13188 const Utils::_variable_type arg_type, const Utils::_variable_type out_type)
13189 : unaryBase(function_enum, function_name, (glw::GLvoid*)function_pointer, res_type, arg_type)
13942 function, "abs", de::abs, variable_type /* res_type */, variable_type /* arg_type */);
13949 function, "ceil", ceil, variable_type /* res_type */, variable_type /* arg_type */);
14088 function, "floor", floor, variable_type /* res_type */, variable_type /* arg_type */);
14103 function, "fract", Math::fract, variable_type /* res_type */, variable_type /* arg_type */);
13091 unaryBase(FunctionEnum function_enum, const glw::GLchar* function_name, glw::GLvoid* function_pointer, const Utils::_variable_type res_type, const Utils::_variable_type arg_type) argument
13153 unaryByComponent(FunctionEnum function_enum, const glw::GLchar* function_name, functionPointer function_pointer, const Utils::_variable_type res_type, const Utils::_variable_type arg_type) argument
13186 unaryWithOutputByComponent(FunctionEnum function_enum, const glw::GLchar* function_name, functionPointer function_pointer, const Utils::_variable_type res_type, const Utils::_variable_type arg_type, const Utils::_variable_type out_type) argument
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c938 const char *arg_type = "i32"; local
944 arg_type = "v2i32";
949 type_names[func], arg_type);
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 642 milliseconds