HomeSort by: relevance | last modified time | path
    Searched defs:constructor (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/external/bsd/libarchive/dist/libarchive/test/
test_archive_read_support.c 33 typedef struct archive *constructor(void); typedef in typeref:struct:constructor
49 test_success(constructor new_, enabler enable_, destructor free_)
65 test_failure(constructor new_, enabler enable_, destructor free_)
  /src/external/cddl/osnet/lib/libumem/
umem.c 35 umem_constructor_t *constructor; member in struct:umem_cache
106 umem_cache_t *umem_cache_create(char *debug_name, size_t bufsize, size_t align, umem_constructor_t *constructor, umem_destructor_t *destructor, umem_reclaim_t *reclaim, void *callback_data, void *source, int cflags)
114 cache->constructor = constructor;
137 if(cache->constructor != NULL) {
138 if(cache->constructor(buf, cache->callback_data, flags) != 0) {
  /src/external/gpl2/gettext/dist/gettext-tools/src/
read-catalog-abstract.h 59 void (*constructor) (struct abstract_catalog_reader_ty *pop); member in struct:abstract_catalog_reader_class_ty
148 call its constructor. */
  /src/external/bsd/openldap/dist/servers/slapd/slapi/
slapi_ext.c 106 slapi_extension_constructor_fnptr constructor; local
112 constructor = registered_extensions.extensions[objecttype].constructors[extensionhandle];
116 if ( constructor != NULL ) {
117 eblock->extensions[extensionhandle] = (*constructor)( object, parent );
177 slapi_extension_constructor_fnptr constructor,
215 re->constructors[*extensionhandle] = constructor;
  /src/external/mit/isl/dist/interface/
cpp.h 23 constructor, enumerator in enum:Method::Kind
  /src/external/bsd/pcc/dist/pcc/arch/arm/
local.c 624 static int constructor; variable
639 if (strcmp(str, "constructor") == 0 || strcmp(str, "init") == 0) {
640 constructor = 1;
661 if ((constructor || destructor) && (sp->sclass != PARAM)) {
663 constructor ? 'c' : 'd');
667 constructor = destructor = 0;
  /src/external/bsd/pcc/dist/pcc/arch/hppa/
local.c 770 int constructor; variable
783 if (strcmp(str, "constructor") == 0 || strcmp(str, "init") == 0) {
784 constructor = 1;
813 if ((constructor || destructor) && (sp->sclass != PARAM)) {
816 constructor ? 'c' : 'd', exname(sp->sname));
817 constructor = destructor = 0;
  /src/external/bsd/pcc/dist/pcc/arch/i86/
local.c 498 static int constructor; variable
518 if (strcmp(str, "constructor") == 0 || strcmp(str, "init") == 0) {
519 constructor = 1;
582 if ((constructor || destructor) && (sp->sclass != PARAM)) {
584 constructor ? 'c' : 'd');
588 constructor = destructor = 0;
  /src/external/bsd/pcc/dist/pcc/arch/m68k/
local.c 497 static int constructor; variable
548 if ((constructor || destructor) && (sp->sclass != PARAM)) {
553 (struct symtab *)(constructor ? "constructor" : "destructor");
555 constructor = destructor = 0;
  /src/external/bsd/pcc/dist/pcc/arch/mips/
local.c 752 static int constructor; variable
766 if (strcmp(str, "constructor") == 0 || strcmp(str, "init") == 0) {
767 constructor = 1;
784 if ((constructor || destructor) && (sp->sclass != PARAM)) {
786 constructor ? 'c' : 'd');
790 constructor = destructor = 0;
  /src/external/bsd/pcc/dist/pcc/arch/amd64/
local.c 848 static int constructor; variable
863 if (strcmp(str, "constructor") == 0 || strcmp(str, "init") == 0) {
864 constructor = 1;
929 if ((constructor || destructor) && (sp->sclass != PARAM)) {
934 (struct symtab *)(constructor ? "constructor" : "destructor");
938 constructor = destructor = 0;
  /src/external/bsd/pcc/dist/pcc/arch/i386/
local.c 1108 static int constructor; variable
1136 if (strcmp(str, "constructor") == 0 || strcmp(str, "init") == 0) {
1137 constructor = 1;
1205 if ((constructor || destructor) && (sp->sclass != PARAM)) {
1208 constructor ? 'c' : 'd');
1211 constructor ? 'c' : 'd');
1214 if (constructor)
1219 if (constructor)
1220 printf(PRTPREF "\t.constructor\n");
1225 uerror("constructor/destructor are not supported for this target")
    [all...]
  /src/external/gpl3/gcc/dist/gcc/objc/
objc-gnu-runtime-abi-01.cc 871 /* Declare a static instance of CLASS_DECL initialized by CONSTRUCTOR. */
876 objc_add_static_instance (tree constructor, tree class_decl)
898 DECL_INITIAL (decl) = constructor;
918 tree constructor, fields; local
931 constructor = objc_build_constructor (internal_const_str_type, v);
933 constructor = objc_add_static_instance (constructor, constant_string_type);
934 return constructor;
1908 This is a CONSTRUCTOR. */
objc-next-runtime-abi-01.cc 1014 tree constructor, fields, var; local
1029 constructor = objc_build_constructor (internal_const_str_type, v);
1031 var = build_decl (input_location, CONST_DECL, NULL, TREE_TYPE (constructor));
1032 DECL_INITIAL (var) = constructor;
2140 This is a CONSTRUCTOR. */
  /src/external/gpl3/gcc/dist/gcc/
tree-switch-conversion.cc 65 /* Constructor. */
473 /* If all values in the constructor vector are products of a linear function
638 vec<constructor_elt, va_gc> *constructor = m_constructors[num];
640 bool linear_p = contains_linear_function_p (constructor, &coeff_a, &coeff_b);
643 && (type = range_check_type (TREE_TYPE ((*constructor)[0].value))))
650 /* We must use type of constructor values. */
673 FOR_EACH_VEC_SAFE_ELT (constructor, i, elt)
676 ctor = build_constructor (array_type, constructor);
1100 /* Constructor. */
637 vec<constructor_elt, va_gc> *constructor = m_constructors[num]; local
  /src/external/gpl3/gcc.old/dist/gcc/objc/
objc-gnu-runtime-abi-01.cc 868 /* Declare a static instance of CLASS_DECL initialized by CONSTRUCTOR. */
873 objc_add_static_instance (tree constructor, tree class_decl)
895 DECL_INITIAL (decl) = constructor;
915 tree constructor, fields; local
928 constructor = objc_build_constructor (internal_const_str_type, v);
930 constructor = objc_add_static_instance (constructor, constant_string_type);
931 return constructor;
1905 This is a CONSTRUCTOR. */
objc-next-runtime-abi-01.cc 1011 tree constructor, fields, var; local
1026 constructor = objc_build_constructor (internal_const_str_type, v);
1028 var = build_decl (input_location, CONST_DECL, NULL, TREE_TYPE (constructor));
1029 DECL_INITIAL (var) = constructor;
2137 This is a CONSTRUCTOR. */
  /src/external/gpl3/gcc.old/dist/gcc/
tree-switch-conversion.cc 64 /* Constructor. */
440 /* If all values in the constructor vector are products of a linear function
602 vec<constructor_elt, va_gc> *constructor = m_constructors[num];
604 bool linear_p = contains_linear_function_p (constructor, &coeff_a, &coeff_b);
607 && (type = range_check_type (TREE_TYPE ((*constructor)[0].value))))
614 /* We must use type of constructor values. */
637 FOR_EACH_VEC_SAFE_ELT (constructor, i, elt)
640 ctor = build_constructor (array_type, constructor);
1055 /* Constructor. */
601 vec<constructor_elt, va_gc> *constructor = m_constructors[num]; local
  /src/external/gpl3/gdb/dist/gdb/
varobj.c 125 /* The pretty-printer constructor. If NULL, then the default
128 PyObject *constructor = NULL; member in struct:varobj_dynamic
469 instantiate_pretty_printer (PyObject *constructor, struct value *value)
475 return PyObject_CallFunctionObjArgs (constructor, val_obj.get (), NULL);
1012 /* A helper function to install a constructor function and visualizer
1016 install_visualizer (struct varobj_dynamic *var, PyObject *constructor,
1019 Py_XDECREF (var->constructor);
1020 var->constructor = constructor;
1058 /* Instantiate and install a visualizer for VAR using CONSTRUCTOR t
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
varobj.c 125 /* The pretty-printer constructor. If NULL, then the default
128 PyObject *constructor = NULL; member in struct:varobj_dynamic
472 instantiate_pretty_printer (PyObject *constructor, struct value *value)
478 return PyObject_CallFunctionObjArgs (constructor, val_obj.get (), NULL);
1015 /* A helper function to install a constructor function and visualizer
1019 install_visualizer (struct varobj_dynamic *var, PyObject *constructor,
1022 Py_XDECREF (var->constructor);
1023 var->constructor = constructor;
1061 /* Instantiate and install a visualizer for VAR using CONSTRUCTOR t
    [all...]
  /src/external/mit/lua/dist/src/
lparser.c 857 checklimit(fs, cc->nh, MAX_INT, "items in a constructor");
929 static void constructor (LexState *ls, expdesc *t) { function
930 /* constructor -> '{' [ field { sep field } [sep] ] '}'
1046 case '{': { /* funcargs -> constructor */
1047 constructor(ls, &args);
1146 constructor | FUNCTION body | suffixedexp */
1183 case '{': { /* constructor */
1184 constructor(ls, v);
  /src/external/gpl3/binutils/dist/include/
bfdlink.h 824 /* A function which is called when the name of a g++ constructor or
826 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
830 void (*constructor)
831 (struct bfd_link_info *, bool constructor, const char *name,
996 generate relocs for the constructor tables. The
828 void (*constructor) member in struct:bfd_link_callbacks
  /src/external/gpl3/binutils.old/dist/include/
bfdlink.h 816 /* A function which is called when the name of a g++ constructor or
818 formats. CONSTRUCTOR is TRUE for a constructor, FALSE for a
822 void (*constructor)
823 (struct bfd_link_info *, bool constructor, const char *name,
983 generate relocs for the constructor tables. The
820 void (*constructor) member in struct:bfd_link_callbacks
  /src/external/gpl3/gcc/dist/gcc/config/
darwin.cc 1786 if (TREE_CODE (decl) == CONSTRUCTOR
3860 tree var, constructor, field; local
3900 constructor = build_constructor (ccfstring_type_node, v);
3901 TREE_READONLY (constructor) = true;
3902 TREE_CONSTANT (constructor) = true;
3903 TREE_STATIC (constructor) = true;
3909 TREE_LANG_FLAG_4 (constructor) = 1; /* TREE_HAS_CONSTRUCTOR */
3913 NULL, TREE_TYPE (constructor));
3921 DECL_INITIAL (var) = constructor;
3924 DECL_INITIAL (var) = constructor;
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/
darwin.cc 1747 if (TREE_CODE (decl) == CONSTRUCTOR
3821 tree var, constructor, field; local
3861 constructor = build_constructor (ccfstring_type_node, v);
3862 TREE_READONLY (constructor) = true;
3863 TREE_CONSTANT (constructor) = true;
3864 TREE_STATIC (constructor) = true;
3870 TREE_LANG_FLAG_4 (constructor) = 1; /* TREE_HAS_CONSTRUCTOR */
3874 NULL, TREE_TYPE (constructor));
3882 DECL_INITIAL (var) = constructor;
3885 DECL_INITIAL (var) = constructor;
    [all...]

Completed in 71 milliseconds

1 2