OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:g_points
(Results
1 - 2
of
2
) sorted by null
/external/lldb/test/lang/cpp/class_static/
main.cpp
13
// "
g_points
" array where the following things are wrong:
15
// - the DW_TAG_variable for "
g_points
" won't have a valid byte size, so even
30
static PointType
g_points
[];
member in class:A
33
PointType A::
g_points
[] =
member in class:A
39
static PointType
g_points
[] =
variable
49
printf ("A::
g_points
[1].x = %i\n", A::
g_points
[1].x); // Set break point at this line.
50
printf ("::
g_points
[1].x = %i\n",
g_points
[1].x);
TestStaticVariables.py
68
self.expect('target variable A::
g_points
', VARIABLES_DISPLAYED_CORRECTLY,
69
substrs = ['(PointType [2]) A::
g_points
'])
70
self.expect('target variable
g_points
', VARIABLES_DISPLAYED_CORRECTLY,
71
substrs = ['(PointType [2])
g_points
'])
73
# On Mac OS X, gcc 4.2 emits the wrong debug info for A::
g_points
.
74
# A::
g_points
is an array of two elements.
76
self.expect("target variable A::
g_points
[1].x", VARIABLES_DISPLAYED_CORRECTLY,
77
startstr = "(int) A::
g_points
[1].x = 11")
100
# Get the SBValue of 'A::
g_points
' and '
g_points
'
[
all
...]
Completed in 821 milliseconds