File: SBSymbolContextList.cpp

package info (click to toggle)
llvm-toolchain-3.7 1%3A3.7.1-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 345,556 kB
  • ctags: 362,199
  • sloc: cpp: 2,156,381; ansic: 458,339; objc: 91,547; python: 89,988; asm: 86,305; sh: 21,479; makefile: 6,853; perl: 5,601; ml: 5,458; pascal: 3,933; lisp: 2,429; xml: 686; cs: 239; php: 202; csh: 117
file content (117 lines) | stat: -rw-r--r-- 2,380 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//===-- SBSymbolContextList.cpp ---------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#include "lldb/API/SBSymbolContextList.h"
#include "lldb/API/SBStream.h"
#include "lldb/Symbol/SymbolContext.h"

using namespace lldb;
using namespace lldb_private;

SBSymbolContextList::SBSymbolContextList () :
    m_opaque_ap (new SymbolContextList())
{
}

SBSymbolContextList::SBSymbolContextList (const SBSymbolContextList& rhs) :
    m_opaque_ap (new SymbolContextList(*rhs.m_opaque_ap))
{
}

SBSymbolContextList::~SBSymbolContextList ()
{
}

const SBSymbolContextList &
SBSymbolContextList::operator = (const SBSymbolContextList &rhs)
{
    if (this != &rhs)
    {
        *m_opaque_ap = *rhs.m_opaque_ap;
    }
    return *this;
}

uint32_t
SBSymbolContextList::GetSize() const
{
    if (m_opaque_ap.get())
        return m_opaque_ap->GetSize();
    return 0;
}

SBSymbolContext
SBSymbolContextList::GetContextAtIndex (uint32_t idx)
{
    SBSymbolContext sb_sc;
    if (m_opaque_ap.get())
    {
        SymbolContext sc;
        if (m_opaque_ap->GetContextAtIndex (idx, sc))
        {
            sb_sc.SetSymbolContext(&sc);
        }
    }
    return sb_sc;
}

void
SBSymbolContextList::Clear()
{
    if (m_opaque_ap.get())
        m_opaque_ap->Clear();
}

void
SBSymbolContextList::Append(SBSymbolContext &sc)
{
    if (sc.IsValid() && m_opaque_ap.get())
        m_opaque_ap->Append(*sc);
}

void
SBSymbolContextList::Append(SBSymbolContextList &sc_list)
{
    if (sc_list.IsValid() && m_opaque_ap.get())
        m_opaque_ap->Append(*sc_list);
}


bool
SBSymbolContextList::IsValid () const
{
    return m_opaque_ap.get() != NULL;
}



lldb_private::SymbolContextList*
SBSymbolContextList::operator->() const
{
    return m_opaque_ap.get();
}


lldb_private::SymbolContextList&
SBSymbolContextList::operator*() const
{
    assert (m_opaque_ap.get());
    return *m_opaque_ap.get();
}

bool
SBSymbolContextList::GetDescription (lldb::SBStream &description)
{
    Stream &strm = description.ref();    
    if (m_opaque_ap.get())
        m_opaque_ap->GetDescription (&strm, lldb::eDescriptionLevelFull, NULL);
    return true;
}