HomeSort by: relevance | last modified time | path
    Searched refs:clazz (Results 1 - 17 of 17) sorted by relevancy

  /src/external/mit/isl/dist/interface/
cpp_conversion.cc 16 /* If "clazz" describes a subclass of a C type, then print code
22 void cpp_conversion_generator::cast(const isl_class &clazz, const char *to)
24 string name = cpp_generator::type2cpp(clazz);
26 if (!clazz.is_type_subclass())
29 cast(classes[clazz.superclass_name], to);
34 * "clazz" from the "from" bindings to the "to" bindings.
35 * If "clazz" describes a subclass of a C type, then the result
39 void cpp_conversion_generator::convert(const isl_class &clazz,
42 string name = cpp_generator::type2cpp(clazz);
47 cast(clazz, to)
    [all...]
python.h 21 void print(const isl_class &clazz);
24 void print_class_header(const isl_class &clazz, const string &name,
36 void print_method_return(int indent, const isl_class &clazz,
40 void print_constructor(const isl_class &clazz, FunctionDecl *method);
41 void print_special_constructors(const isl_class &clazz);
42 void print_special_methods(const isl_class &clazz);
43 void print_upcast_constructors(const isl_class &clazz);
44 void print_new(const isl_class &clazz,
46 void print_representation(const isl_class &clazz,
48 void print_copy_callbacks(const isl_class &clazz);
    [all...]
cpp_conversion.h 4 void cast(const isl_class &clazz, const char *to);
5 void convert(const isl_class &clazz, const char *from, const char *to,
7 void print(const isl_class &clazz);
python.cc 331 * whether any of the persistent callbacks of "clazz"
338 const isl_class &clazz, const char *fmt)
340 const set<FunctionDecl *> &callbacks = clazz.persistent_callbacks;
344 string callback_name = clazz.persistent_callback_name(*in);
389 void python_generator::print_method_return(int indent, const isl_class &clazz,
394 if (!is_static(clazz, method))
395 print_persistent_callback_failure_check(indent, clazz, fmt);
403 if (is_mutator(clazz, method) &&
404 clazz.has_persistent_callbacks())
406 if (clazz.persistent_callbacks.count(method))
    [all...]
cpp.cc 48 void cpp_generator::set_class_construction_types(isl_class &clazz)
50 for (const auto &cons : clazz.constructors) {
55 if (!is_implicit_conversion(Method(clazz, cons)))
61 clazz.construction_types.emplace(arg_type, param);
71 auto &clazz = kvp.second; local
72 set_class_construction_types(clazz);
95 /* Copy the method called "name" described by "fd" from "super" to "clazz"
101 static void copy_method(isl_class &clazz, const isl_class &super,
104 clazz.methods[name].insert(fd);
105 clazz.copied_from.emplace(fd, super)
255 auto &clazz = kvp.second; local
917 const auto &clazz = cons.clazz; local
    [all...]
plain_cpp.cc 211 if (!clazz.is_type_subclass())
214 super = type2cpp(clazz.superclass_name);
222 clazz.subclass_name.c_str());
225 /* Print declarations for class "clazz" to "os".
227 * If "clazz" is a subclass based on a type function,
232 * Conversely, if "clazz" is a superclass with a type function,
238 void plain_cpp_generator::print_class(ostream &os, const isl_class &clazz)
240 decl_printer printer(os, clazz, *this);
241 const char *name = clazz.name.c_str();
249 if (clazz.is_type_subclass()
    [all...]
cpp.h 12 * "clazz" is the class to which the method belongs.
30 Method(const isl_class &clazz, FunctionDecl *fd,
32 Method(const isl_class &clazz, FunctionDecl *fd);
57 const isl_class &clazz; member in struct:Method
94 * (if different from clazz.name).
117 EnumMethod(const isl_class &clazz, FunctionDecl *fd,
159 void set_class_construction_types(isl_class &clazz);
161 void copy_methods(isl_class &clazz, const std::string &name,
163 void copy_super_methods(isl_class &clazz, const isl_class &super);
164 void copy_super_methods(isl_class &clazz, set<string> &done)
184 const isl_class &clazz; member in struct:cpp_generator::class_printer
    [all...]
plain_cpp.h 46 void print_class(ostream &os, const isl_class &clazz);
47 void print_class_forward_decl(ostream &os, const isl_class &clazz);
49 void print_class_impl(ostream &os, const isl_class &clazz);
51 const isl_class &clazz, FunctionDecl *fd);
73 plain_printer(std::ostream &os, const isl_class &clazz,
75 class_printer(os, clazz, generator, is_declaration),
106 decl_printer(std::ostream &os, const isl_class &clazz,
108 plain_printer(os, clazz, generator, true) {}
135 impl_printer(std::ostream &os, const isl_class &clazz,
137 plain_printer(os, clazz, generator, false) {
    [all...]
template_cpp.h 71 * "clazz" describes the plain class.
80 const isl_class &clazz; member in struct:template_class
101 void add_template_class(const isl_class &clazz, const std::string &name,
generator.h 170 void extract_class_automatic_conversions(const isl_class &clazz);
195 static bool is_static(const isl_class &clazz, FunctionDecl *method);
196 static bool is_mutator(const isl_class &clazz, FunctionDecl *fd);
generator.cc 84 bool generator::is_static(const isl_class &clazz, FunctionDecl *method)
86 return clazz.is_static(method);
89 /* Does "fd" modify an object of "clazz"?
93 bool generator::is_mutator(const isl_class &clazz, FunctionDecl *fd)
100 if (is_static(clazz, fd))
165 void generator::extract_class_automatic_conversions(const isl_class &clazz)
167 const function_set &constructors = clazz.constructors;
template_cpp.cc 1105 * by "clazz" and the initial specializations by "class_tuples".
1107 void template_cpp_generator::add_template_class(const isl_class &clazz,
1114 template_class{name, super, clazz, class_tuples});
1136 const auto &clazz = kvp.second; local
1137 std::string name = type2cpp(clazz);
1142 add_template_class(clazz, name, class_tuples);
1391 instance.template_class.clazz, instance_printer.generator,
1677 Method method(clazz, fd, clazz.base_method_name(fd));
1896 /* Print a definition for the "get" method "fd" in class "clazz",
    [all...]
  /src/external/bsd/file/dist/src/
readelf.c 150 #define xsh_addr (clazz == ELFCLASS32 \
153 #define xsh_sizeof (clazz == ELFCLASS32 \
156 #define xsh_size CAST(size_t, (clazz == ELFCLASS32 \
159 #define xsh_offset CAST(off_t, (clazz == ELFCLASS32 \
162 #define xsh_type (clazz == ELFCLASS32 \
165 #define xsh_name (clazz == ELFCLASS32 \
169 #define xph_addr (clazz == ELFCLASS32 \
172 #define xph_sizeof (clazz == ELFCLASS32 \
175 #define xph_type (clazz == ELFCLASS32 \
178 #define xph_offset CAST(off_t, (clazz == ELFCLASS32
1829 int clazz; local
    [all...]
elfclass.h 45 if (dophn_core(ms, clazz, swap, fd,
60 if (dophn_exec(ms, clazz, swap, fd,
70 if (doshn(ms, clazz, swap, fd,
  /src/external/gpl2/gettext/dist/gettext-runtime/intl-csharp/
intl.cs 181 Type clazz = satelliteAssembly.GetType(ConstructClassName(resourceName)+"_"+culture.Name.Replace('-','_'));
183 ConstructorInfo constructor = clazz.GetConstructor(Type.EmptyTypes);
  /src/external/gpl2/gettext/dist/gettext-tools/src/
msgunfmt.cs 166 Type clazz = satelliteAssembly.GetType(ConstructClassName(resourceName)+"_"+cultureName.Replace('-','_'));
167 ConstructorInfo constructor = clazz.GetConstructor(Type.EmptyTypes);
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/uni/
package.d 8602 immutable clazz = combiningClass(ch);
8603 ccc[idx] = clazz;
8604 if (clazz == 0 && lastClazz != 0)
8611 else if (clazz != 0 && lastClazz == 0)
8616 lastClazz = clazz;

Completed in 48 milliseconds