Home
last modified time | relevance | path

Searched refs:CompilerContextKind (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp386 context.push_back({CompilerContextKind::Module, ConstString(GetName())}); in GetDeclContext()
389 context.push_back({CompilerContextKind::Namespace, ConstString(GetName())}); in GetDeclContext()
392 context.push_back({CompilerContextKind::Struct, ConstString(GetName())}); in GetDeclContext()
395 context.push_back({CompilerContextKind::Union, ConstString(GetName())}); in GetDeclContext()
398 context.push_back({CompilerContextKind::Class, ConstString(GetName())}); in GetDeclContext()
401 context.push_back({CompilerContextKind::Enum, ConstString(GetName())}); in GetDeclContext()
405 {CompilerContextKind::Function, ConstString(GetPubname())}); in GetDeclContext()
409 {CompilerContextKind::Variable, ConstString(GetPubname())}); in GetDeclContext()
412 context.push_back({CompilerContextKind::Typedef, ConstString(GetName())}); in GetDeclContext()
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DType.cpp48 if (pat.kind == CompilerContextKind::AnyModule) { in contextMatches()
51 return ctx.kind != CompilerContextKind::Module; in contextMatches()
59 if (pat.kind != CompilerContextKind::AnyModule && ctx->name != pat.name) in contextMatches()
72 case CompilerContextKind::TranslationUnit: in Dump()
75 case CompilerContextKind::Module: in Dump()
78 case CompilerContextKind::Namespace: in Dump()
81 case CompilerContextKind::Class: in Dump()
84 case CompilerContextKind::Struct: in Dump()
87 case CompilerContextKind::Union: in Dump()
90 case CompilerContextKind::Function: in Dump()
[all …]
/openbsd-src/gnu/llvm/lldb/tools/lldb-test/
H A Dlldb-test.cpp305 StringSwitch<CompilerContextKind>(key) in parseCompilerContext()
306 .Case("TranslationUnit", CompilerContextKind::TranslationUnit) in parseCompilerContext()
307 .Case("Module", CompilerContextKind::Module) in parseCompilerContext()
308 .Case("Namespace", CompilerContextKind::Namespace) in parseCompilerContext()
309 .Case("Class", CompilerContextKind::Class) in parseCompilerContext()
310 .Case("Struct", CompilerContextKind::Struct) in parseCompilerContext()
311 .Case("Union", CompilerContextKind::Union) in parseCompilerContext()
312 .Case("Function", CompilerContextKind::Function) in parseCompilerContext()
313 .Case("Variable", CompilerContextKind::Variable) in parseCompilerContext()
314 .Case("Enum", CompilerContextKind::Enum) in parseCompilerContext()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-private-enumerations.h189 enum class CompilerContextKind : uint16_t { enum
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DType.h30 CompilerContext(CompilerContextKind t, ConstString n) : kind(t), name(n) {} in CompilerContext()
39 CompilerContextKind kind;