Home
last modified time | relevance | path

Searched refs:translation_unit (Results 1 - 23 of 23) sorted by relevance

/third_party/libabigail/include/
H A Dabg-fwd.h104 class translation_unit;
106 /// translation_unit type.
107 typedef shared_ptr<translation_unit> translation_unit_sptr;
328 translation_unit*
331 translation_unit*
334 translation_unit*
1099 lookup_basic_type(const type_decl&, const translation_unit&);
1102 lookup_basic_type(const interned_string&, const translation_unit&);
1105 lookup_basic_type(const string&, const translation_unit&);
1123 lookup_class_type(const class_decl&, const translation_unit
[all...]
H A Dabg-ir.h646 class translation_unit : public traversable_base class
652 translation_unit() = delete;
692 translation_unit(const ir::environment& env,
696 virtual ~translation_unit();
768 operator==(const translation_unit&) const;
771 operator!=(const translation_unit&) const;
781 const translation_unit& tu);
785 translation_unit& tu);
789 translation_unit& tu);
790 };//end class translation_unit
[all...]
H A Dabg-writer.h11 /// de-serialize an instance of @ref abigail::translation_unit to an
102 const translation_unit& tu,
/third_party/libabigail/src/
H A Dabg-ir.cc1125 // <translation_unit stuff>
1127 /// Constructor of translation_unit.
1138 translation_unit::translation_unit(const environment& env, in translation_unit() function in abigail::ir::translation_unit
1153 translation_unit::get_global_scope() const in get_global_scope()
1155 return const_cast<translation_unit*>(this)->get_global_scope(); in get_global_scope()
1164 translation_unit::get_global_scope() in get_global_scope()
1169 (new global_scope(const_cast<translation_unit*>(this))); in get_global_scope()
1171 (const_cast<translation_unit*>(this)); in get_global_scope()
1176 /// Getter of the types of the current @ref translation_unit
[all...]
H A Dabg-dwarf-reader.cc466 static translation_unit::language
589 get_default_array_lower_bound(translation_unit::language l);
2181 // Build a translation_unit IR node from cu; note that cu must in read_debug_info_into_corpus()
3293 get_die_language(const Dwarf_Die *die, translation_unit::language &lang) const in get_die_language()
3316 translation_unit::language l = translation_unit::LANG_UNKNOWN; in die_is_in_c()
3332 translation_unit::language l = translation_unit::LANG_UNKNOWN; in die_is_in_cplus_plus()
3348 translation_unit::language l = translation_unit in die_is_in_c_or_cplusplus()
[all...]
H A Dabg-ctf-reader.cc413 std::make_shared<translation_unit>(env(), "", 64); in process_ctf_archive()
414 ir_translation_unit->set_language(translation_unit::LANG_C); in process_ctf_archive()
1206 translation_unit::LANG_C)); in build_array_ctf_range()
H A Dabg-writer.cc9 /// de-serialize an instance of @ref abigail::translation_unit to an
2255 const translation_unit& tu, in referenced_type_should_be_emitted()
2279 const translation_unit& tu, in write_referenced_types()
2394 const translation_unit& tu, in write_translation_unit()
2426 if (tu.get_language() != translation_unit::LANG_UNKNOWN) in write_translation_unit()
4581 translation_unit& tu = **i; in write_corpus()
4724 /// Serialize a @ref translation_unit to an output stream.
4726 /// @param t the translation_unit to serialize.
4728 /// @param o the outpout stream to serialize the translation_unit to.
4732 dump(const translation_unit
[all...]
H A Dabg-ir-priv.h141 /// Private type to hold private members of @ref translation_unit
142 struct translation_unit::priv
173 }; // end translation_unit::priv
H A Dabg-reporter-priv.cc858 translation_unit* tu = get_translation_unit(decl); in report_loc_info()
H A Dabg-reader.cc9 /// de-serialize an instance of @ref abigail::translation_unit from an
445 translation_unit*
1271 static bool read_translation_unit(fe_iface&, translation_unit&, xmlNodePtr);
1600 read_translation_unit(fe_iface& iface, translation_unit& tu, xmlNodePtr node) in read_translation_unit()
1661 /// @ref translation_unit out of it, add it to the current corpus and
1690 tu.reset(new translation_unit(rdr.get_environment(), tu_path)); in get_or_read_and_add_translation_unit()
1700 /// Parse the input XML document containing a translation_unit,
2214 /// @return the constructed @ref translation_unit from the content of
/third_party/libabigail/tests/
H A Dtest-abidiff.cc172 using abigail::translation_unit;
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dglslang.y213 %type <interm.intermBlock> translation_unit
253 %start translation_unit
1663 translation_unit
1670 | translation_unit external_declaration {
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dcontext.rs368 translation_unit: clang::TranslationUnit,
536 let translation_unit = {
538 Timer::new("translation_unit").with_output(options.time_phases);
555 let target_info = clang::TargetInfo::new(&translation_unit);
576 translation_unit,
2018 pub fn translation_unit(&self) -> &clang::TranslationUnit { in translation_unit() functions
2019 &self.translation_unit in translation_unit()
/third_party/mesa3d/src/compiler/glsl/
H A Dtest_optpass.cpp208 if (!state->error && !state->translation_unit.is_empty()) in test_optpass()
H A Dglsl_parser_extras.h386 exec_list translation_unit; member
H A Dglsl_parser_extras.cpp71 this->translation_unit.make_empty(); in _mesa_glsl_parse_state()
2266 foreach_list_typed(ast_node, ast, link, &state->translation_unit) {
2274 if (!state->error && !state->translation_unit.is_empty())
H A Dast_to_hir.cpp158 foreach_list_typed (ast_node, ast, link, & state->translation_unit) in _mesa_ast_to_hir()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A Dglslang.y196 %type <interm.intermNode> translation_unit function_definition
225 %start translation_unit
1597 translation_unit
1602 | translation_unit external_declaration {
/third_party/rust/crates/bindgen/bindgen/
H A Dclang.rs228 pub fn translation_unit(&self) -> Cursor { in translation_unit() functions
254 let tu = self.translation_unit(); in is_toplevel()
H A Dlib.rs2887 for d in context.translation_unit().diags().iter() { in parse()
2903 let cursor = context.translation_unit().cursor(); in parse()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
H A Dparser_impl.h383 /// Parses the `translation_unit` grammar element
384 void translation_unit();
H A Dparser_impl.cc326 translation_unit(); in Parse()
330 // translation_unit
332 void ParserImpl::translation_unit() { in translation_unit() function in tint::reader::wgsl::ParserImpl
/third_party/libabigail/tools/
H A Dabidiff.cc36 using abigail::translation_unit;

Completed in 76 milliseconds