Home
last modified time | relevance | path

Searched refs:is_artificial (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/cross_object/
DTestCrossObjectTailCalls.py57 for idx, (name, is_artificial) in enumerate(expected_frames):
60 self.assertEqual(frame.IsArtificial(), is_artificial)
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/cross_dso/
DTestCrossDSOTailCalls.py62 for idx, (name, is_artificial) in enumerate(expected_frames):
65 self.assertEqual(frame.IsArtificial(), is_artificial)
/external/llvm-project/lldb/test/API/functionalities/tail_call_frames/sbapi_support/
DTestTailCallFrameSBAPI.py57 for idx, (name, is_artificial) in enumerate(zip(names, artificiality)):
65 self.assertEqual(frame.IsArtificial(), is_artificial)
/external/llvm-project/lldb/include/lldb/Symbol/
DSymbol.h28 bool external, bool is_debug, bool is_trampoline, bool is_artificial,
34 bool external, bool is_debug, bool is_trampoline, bool is_artificial,
/external/llvm-project/lldb/source/Symbol/
DSymbol.cpp35 bool is_debug, bool is_trampoline, bool is_artificial, in Symbol() argument
40 m_type_data_resolved(false), m_is_synthetic(is_artificial), in Symbol()
51 bool is_artificial, const AddressRange &range, in Symbol() argument
55 m_type_data_resolved(false), m_is_synthetic(is_artificial), in Symbol()
/external/llvm-project/lldb/unittests/Symbol/
DTestTypeSystemClang.cpp638 bool is_artificial = false; in TEST_F() local
642 is_explicit, is_attr_used, is_artificial); in TEST_F()
670 bool is_artificial = false; in TEST_F() local
680 is_explicit, is_attr_used, is_artificial); in TEST_F()
691 is_explicit, is_attr_used, is_artificial); in TEST_F()
/external/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DUdtRecordCompleter.cpp83 bool is_artificial = (options & MethodOptions::CompilerGenerated) == in AddMethod() local
88 attrs.isStatic(), false, false, false, is_artificial); in AddMethod()
/external/libabigail/src/
Dabg-reader.cc2501 read_is_artificial(xmlNodePtr node, bool& is_artificial) in read_is_artificial() argument
2506 is_artificial = is_artificial_str == "yes"; in read_is_artificial()
3007 bool is_artificial = false; in build_function_parameter() local
3008 read_is_artificial(node, is_artificial); in build_function_parameter()
3034 is_variadic, is_artificial)); in build_function_parameter()
4171 bool is_artificial = false; in build_enum_type_decl() local
4172 read_is_artificial(node, is_artificial); in build_enum_type_decl()
4227 t->set_is_artificial(is_artificial); in build_enum_type_decl()
4395 bool is_artificial = false; in build_class_decl() local
4396 read_is_artificial(node, is_artificial); in build_class_decl()
[all …]
Dabg-dwarf-reader.cc6764 bool is_artificial; in die_is_artificial() local
6765 return die_flag_attribute(die, DW_AT_artificial, is_artificial); in die_is_artificial()
11634 bool is_artificial = die_is_artificial(die); in build_enum_type() local
11670 result->set_is_artificial(is_artificial); in build_enum_type()
11729 bool is_artificial = first_parm && first_parm->get_is_artificial(); in finish_member_function_reading() local
11732 if (is_artificial) in finish_member_function_reading()
12177 bool is_artificial = die_is_artificial(die); in add_or_update_class_type() local
12224 result->set_is_artificial(is_artificial); in add_or_update_class_type()
12545 bool is_artificial = die_is_artificial(die); in add_or_update_union_type() local
12569 result->set_is_artificial(is_artificial); in add_or_update_union_type()
[all …]
Dabg-ir.cc18419 bool is_artificial) in parameter() argument
18426 set_is_artificial(is_artificial); in parameter()
18433 bool is_artificial) in parameter() argument
18440 set_is_artificial(is_artificial); in parameter()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp320 is_artificial = form_value.Boolean(); in ParsedDWARFTypeAttributes()
994 attrs.accessibility, attrs.is_artificial, is_variadic, in ParseSubroutine()
1145 is_attr_used, attrs.is_artificial); in ParseSubroutine()
1150 type_handled |= attrs.is_artificial; in ParseSubroutine()
2370 bool is_artificial = false; in ParseSingleMember() local
2382 for (i = 0; i < num_attributes && !is_artificial; ++i) { in ParseSingleMember()
2442 is_artificial = form_value.Boolean(); in ParseSingleMember()
2542 if (!is_artificial) { in ParseSingleMember()
2939 bool is_artificial = false; in ParseChildParameters() local
2956 is_artificial = form_value.Boolean(); in ParseChildParameters()
[all …]
DDWARFASTParserClang.h229 bool is_artificial = false; member
DSymbolFileDWARF.cpp3119 bool is_artificial = false; in ParseVariableDIE() local
3166 is_artificial = form_value.Boolean(); in ParseVariableDIE()
3422 scope_ranges, &decl, location, is_external, is_artificial, in ParseVariableDIE()
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DSymbolFilePDB.cpp923 bool is_artificial = false; in ParseVariableForPDBData() local
961 is_artificial = true; in ParseVariableForPDBData()
969 if (!is_artificial && !pdb_data.isCompilerGenerated()) { in ParseVariableForPDBData()
1021 ranges, &decl, location, is_external, is_artificial, is_constant, in ParseVariableForPDBData()
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.h883 bool is_explicit, bool is_attr_used, bool is_artificial);
915 bool is_artificial, bool is_variadic, bool is_objc_direct_call);
DTypeSystemClang.cpp7385 bool is_explicit, bool is_attr_used, bool is_artificial) { in AddMethodToCXXRecordType() argument
7420 if (is_artificial) in AddMethodToCXXRecordType()
7435 cxx_dtor_decl->setImplicit(is_artificial); in AddMethodToCXXRecordType()
7447 cxx_ctor_decl->setImplicit(is_artificial); in AddMethodToCXXRecordType()
7544 if (is_artificial) { in AddMethodToCXXRecordType()
7856 bool is_artificial, bool is_variadic, bool is_objc_direct_call) { in AddMethodToObjCObjectType() argument
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
DClangExpressionDeclMap.cpp1920 const bool is_artificial = false; in AddContextClassType() local
1925 is_explicit, is_attr_used, is_artificial); in AddContextClassType()
/external/libabigail/include/
Dabg-ir.h3047 bool is_artificial);
3053 bool is_artificial = false);
/external/libabigail/
DChangeLog1732 of local variable is_artificial to location corresponding to
4519 does not take an "is_artificial" flag anymore.
4521 the is_artificial flag from the arguments of the constructor of