HomeSort by: relevance | last modified time | path
    Searched refs:argtypes (Results 1 - 25 of 46) sorted by relevancy

1 2

  /src/external/gpl3/gdb.old/dist/gdb/
make-target-delegates.py 80 ARGTYPES = re.compile(
99 self, argtypes: List[str], return_type: str, style: str, default_arg: str
101 self.argtypes = argtypes
155 m = ARGTYPES.match(item)
167 # Write function header given name, return type, and argtypes.
170 f: TextIO, decl: bool, name: str, return_type: str, argtypes: List[str]
181 for i in range(len(argtypes)):
182 val = re.sub(TARGET_DEBUG_PRINTER, "", argtypes[i])
198 def write_declaration(f: TextIO, name: str, return_type: str, argtypes: List[str])
357 argtypes = parse_argtypes(data["args"]) variable
    [all...]
gdbtypes.c 3240 struct field *argtypes;
3280 argtypes = (struct field *)
3290 argtypes[0].set_type (lookup_pointer_type (type));
3306 argtypes[argcount].set_type
3333 argtypes, argcount, p[-2] == '.');
3239 struct field *argtypes; local
  /src/external/gpl3/gdb/dist/gdb/
make-target-delegates.py 80 ARGTYPES = re.compile(
99 self, argtypes: List[str], return_type: str, style: str, default_arg: str
101 self.argtypes = argtypes
155 m = ARGTYPES.match(item)
167 # Write function header given name, return type, and argtypes.
170 f: TextIO, decl: bool, name: str, return_type: str, argtypes: List[str]
181 for i in range(len(argtypes)):
182 val = re.sub(TARGET_DEBUG_PRINTER, "", argtypes[i])
198 def write_declaration(f: TextIO, name: str, return_type: str, argtypes: List[str])
357 argtypes = parse_argtypes(data["args"]) variable
    [all...]
gdbtypes.c 3302 struct field *argtypes;
3342 argtypes = (struct field *)
3352 argtypes[0].set_type (lookup_pointer_type (type));
3368 argtypes[argcount].set_type
3395 gdb::make_array_view (argtypes, argcount),
3301 struct field *argtypes; local
  /src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
object.py 430 library.LLVMCreateObjectFile.argtypes = [MemoryBuffer]
433 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
435 library.LLVMGetSections.argtypes = [ObjectFile]
438 library.LLVMDisposeSectionIterator.argtypes = [c_object_p]
440 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p]
443 library.LLVMMoveToNextSection.argtypes = [c_object_p]
445 library.LLVMMoveToContainingSection.argtypes = [c_object_p, c_object_p]
447 library.LLVMGetSymbols.argtypes = [ObjectFile]
450 library.LLVMDisposeSymbolIterator.argtypes = [c_object_p]
452 library.LLVMIsSymbolIteratorAtEnd.argtypes = [ObjectFile, c_object_p
    [all...]
core.py 452 library.LLVMInitializeCore.argtypes = [PassRegistry]
455 library.LLVMInitializeTransformUtils.argtypes = [PassRegistry]
458 library.LLVMInitializeScalarOpts.argtypes = [PassRegistry]
461 library.LLVMInitializeObjCARCOpts.argtypes = [PassRegistry]
464 library.LLVMInitializeVectorization.argtypes = [PassRegistry]
467 library.LLVMInitializeInstCombine.argtypes = [PassRegistry]
470 library.LLVMInitializeAggressiveInstCombiner.argtypes = [PassRegistry]
473 library.LLVMInitializeIPO.argtypes = [PassRegistry]
476 library.LLVMInitializeInstrumentation.argtypes = [PassRegistry]
479 library.LLVMInitializeAnalysis.argtypes = [PassRegistry
    [all...]
bit_reader.py 27 library.LLVMParseBitcode2.argtypes = [MemoryBuffer, POINTER(c_object_p)]
disassembler.py 149 library.LLVMCreateDisasm.argtypes = [c_char_p, c_void_p, c_int,
153 library.LLVMDisasmDispose.argtypes = [Disassembler]
155 library.LLVMDisasmInstruction.argtypes = [Disassembler, POINTER(c_ubyte),
159 library.LLVMSetDisasmOptions.argtypes = [Disassembler, c_uint64]
  /src/external/bsd/file/dist/python/
magic.py 72 _open.argtypes = [c_int]
76 _close.argtypes = [magic_t]
80 _file.argtypes = [magic_t, c_char_p]
84 _descriptor.argtypes = [magic_t, c_int]
88 _buffer.argtypes = [magic_t, c_void_p, c_size_t]
92 _error.argtypes = [magic_t]
96 _setflags.argtypes = [magic_t, c_int]
100 _load.argtypes = [magic_t, c_char_p]
104 _compile.argtypes = [magic_t, c_char_p]
108 _check.argtypes = [magic_t, c_char_p
    [all...]
  /src/external/mit/isl/dist/interface/
isl.py 42 isl.isl_ctx_free.argtypes = [Context]
44 isl.isl_id_alloc.argtypes = [Context, c_char_p, py_object]
46 isl.isl_id_set_free_user.argtypes = [c_void_p, c_void_p]
48 isl.isl_id_get_free_user.argtypes = [c_void_p]
50 isl.isl_id_get_user.argtypes = [c_void_p]
494 isl.isl_union_pw_multi_aff_from_multi_aff.argtypes = [c_void_p]
496 isl.isl_union_pw_multi_aff_from_pw_multi_aff.argtypes = [c_void_p]
498 isl.isl_union_pw_multi_aff_from_union_pw_aff.argtypes = [c_void_p]
500 isl.isl_union_pw_multi_aff_read_from_str.argtypes = [Context, c_char_p]
502 isl.isl_union_pw_multi_aff_add.argtypes = [c_void_p, c_void_p
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
function-tests.cc 140 tree argtypes = TYPE_ARG_TYPES (fntype); local
141 ASSERT_EQ (TREE_LIST, TREE_CODE (argtypes));
142 ASSERT_EQ (void_type_node, TREE_VALUE (argtypes));
143 ASSERT_EQ (NULL, TREE_CHAIN (argtypes));
  /src/external/gpl3/gcc.old/dist/gcc/
function-tests.cc 139 tree argtypes = TYPE_ARG_TYPES (fntype); local
140 ASSERT_EQ (TREE_LIST, TREE_CODE (argtypes));
141 ASSERT_EQ (void_type_node, TREE_VALUE (argtypes));
142 ASSERT_EQ (NULL, TREE_CHAIN (argtypes));
  /src/external/gpl3/binutils/dist/binutils/
stabs.c 2677 char *argtypes = NULL; local
2776 argtypes = savestring (dhandle, *pp, p - *pp);
2887 if (strncmp (argtypes, name, strlen (name)) != 0)
2904 /* If the type is not a stub, then the argtypes string is
2906 argtypes string is the mangled form of the argument
2909 physname = argtypes;
2924 tagname, return_type, argtypes,
3003 const char *argtypes, bool constp,
3015 is_full_physname_constructor = ((argtypes[0] == '_'
3016 && argtypes[1] == '_
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
stabs.c 2677 char *argtypes = NULL; local
2776 argtypes = savestring (dhandle, *pp, p - *pp);
2887 if (strncmp (argtypes, name, strlen (name)) != 0)
2904 /* If the type is not a stub, then the argtypes string is
2906 argtypes string is the mangled form of the argument
2909 physname = argtypes;
2924 tagname, return_type, argtypes,
3003 const char *argtypes, bool constp,
3015 is_full_physname_constructor = ((argtypes[0] == '_'
3016 && argtypes[1] == '_
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-attribs.cc 3386 tree argtypes = TYPE_ARG_TYPES (fntype); local
3387 if (!argtypes)
3398 tree argtype = TREE_VALUE (argtypes);
4972 tree argtypes[2] = { NULL_TREE, NULL_TREE }; local
4997 argtypes[i] = get_argument_type (type, idxs[i], &nfuncargs);
5028 if (!argtypes[0] || (idxnodes[1] && !argtypes[1]))
5049 if (!POINTER_TYPE_P (argtypes[0]))
5054 attrstr, argtypes[0]);
5060 tree ptrtype = TREE_TYPE (argtypes[0])
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-attribs.cc 3709 tree argtypes = TYPE_ARG_TYPES (fntype); local
3710 if (!argtypes)
3721 tree argtype = TREE_VALUE (argtypes);
5343 tree argtypes[2] = { NULL_TREE, NULL_TREE }; local
5368 argtypes[i] = get_argument_type (type, idxs[i], &nfuncargs);
5399 if (!argtypes[0] || (idxnodes[1] && !argtypes[1]))
5420 if (!POINTER_TYPE_P (argtypes[0]))
5425 attrstr, argtypes[0]);
5431 tree ptrtype = TREE_TYPE (argtypes[0])
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-c.cc 867 tree argtypes = TYPE_ARG_TYPES (fntype);
873 arg_type[i] = TREE_VALUE (argtypes);
874 argtypes = TREE_CHAIN (argtypes);
866 tree argtypes = TYPE_ARG_TYPES (fntype); local
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-c.cc 865 tree argtypes = TYPE_ARG_TYPES (fntype);
871 arg_type[i] = TREE_VALUE (argtypes);
872 argtypes = TREE_CHAIN (argtypes);
864 tree argtypes = TYPE_ARG_TYPES (fntype); local
  /src/external/gpl3/gcc/dist/gcc/cp/
call.cc 2720 tree *argtypes, int flags, tsubst_flags_t complain)
2745 t = implicit_conversion (types[i], argtypes[i], args[i],
2752 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2770 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2778 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2827 tree type2, vec<tree,va_gc> &args, tree *argtypes,
3270 (candidates, fnname, cptype, cptype, args, argtypes,
3277 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
3279 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
3284 (candidates, fnname, type1, type2, args, argtypes, flags, complain)
3318 tree type, argtypes[3], t; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
call.cc 2619 tree *argtypes, int flags, tsubst_flags_t complain)
2644 t = implicit_conversion (types[i], argtypes[i], args[i],
2651 reason = arg_conversion_rejection (NULL_TREE, i, argtypes[i],
2669 t = implicit_conversion (boolean_type_node, argtypes[2], args[2],
2677 reason = arg_conversion_rejection (NULL_TREE, 0, argtypes[2],
2726 tree type2, vec<tree,va_gc> &args, tree *argtypes,
3169 (candidates, fnname, cptype, cptype, args, argtypes,
3176 (candidates, fnname, type1, type1, args, argtypes, flags, complain);
3178 (candidates, fnname, type2, type2, args, argtypes, flags, complain);
3183 (candidates, fnname, type1, type2, args, argtypes, flags, complain)
3217 tree type, argtypes[3], t; local
    [all...]
tree.cc 6055 tree argtypes = TYPE_ARG_TYPES (t);
6056 while (argtypes)
6058 TREE_PURPOSE (argtypes) = 0;
6059 argtypes = TREE_CHAIN (argtypes);
6048 tree argtypes = TYPE_ARG_TYPES (t); local
  /src/external/gpl3/gcc/dist/gcc/objc/
objc-gnu-runtime-abi-01.cc 593 receiver & _cmd at the start of a method argument list to ARGTYPES.
600 gnu_runtime_abi_01_get_arg_type_list_base (vec<tree, va_gc> **argtypes,
611 vec_safe_push (*argtypes, receiver_type);
613 vec_safe_push (*argtypes, objc_selector_type);
objc-next-runtime-abi-01.cc 729 receiver & _cmd at the start of a method argument list to ARGTYPES.
736 next_runtime_abi_01_get_arg_type_list_base (vec<tree, va_gc> **argtypes,
749 vec_safe_push (*argtypes, receiver_type);
751 vec_safe_push (*argtypes, objc_selector_type);
  /src/external/gpl3/gcc.old/dist/gcc/objc/
objc-gnu-runtime-abi-01.cc 593 receiver & _cmd at the start of a method argument list to ARGTYPES.
600 gnu_runtime_abi_01_get_arg_type_list_base (vec<tree, va_gc> **argtypes,
611 vec_safe_push (*argtypes, receiver_type);
613 vec_safe_push (*argtypes, objc_selector_type);
objc-next-runtime-abi-01.cc 729 receiver & _cmd at the start of a method argument list to ARGTYPES.
736 next_runtime_abi_01_get_arg_type_list_base (vec<tree, va_gc> **argtypes,
749 vec_safe_push (*argtypes, receiver_type);
751 vec_safe_push (*argtypes, objc_selector_type);

Completed in 181 milliseconds

1 2