/external/lldb/test/functionalities/data-formatter/data-formatter-script/ |
main.cpp | 14 struct i_am_cool struct 19 i_am_cool(int I, float F, char C) : function in struct:i_am_cool 21 i_am_cool() : integer(1), floating(2), character('3') {} function in struct:i_am_cool 27 i_am_cool first_cool; 28 i_am_cool second_cool; 39 i_am_cool one(1,3.14,'E'); 40 i_am_cool two(4,2.71,'G'); 42 i_am_cool* twoptr = &two; 44 i_am_cool array[5];
|
/external/lldb/test/functionalities/data-formatter/data-formatter-cpp/ |
main.cpp | 42 struct i_am_cool struct 47 i_am_cool(int I, ShowMyGuts F, char C) : function in struct:i_am_cool 49 i_am_cool() : integer(1), floating(2), character('3') {} function in struct:i_am_cool 55 i_am_cool first_cool; 56 i_am_cool second_cool; 99 i_am_cool *cool_pointer = (i_am_cool*)malloc(sizeof(i_am_cool)*3); 100 cool_pointer[0] = i_am_cool(3,-3.141592,'E'); 101 cool_pointer[1] = i_am_cool(0,-3.141592,'E') [all...] |
/external/lldb/test/functionalities/data-formatter/data-formatter-advanced/ |
main.cpp | 14 struct i_am_cool struct 19 i_am_cool(int I, float F, char C) : function in struct:i_am_cool 21 i_am_cool() : integer(1), floating(2), character('3') {} function in struct:i_am_cool 27 i_am_cool first_cool; 28 i_am_cool second_cool; 141 i_am_cool cool_boy(1,0.5,3); 144 i_am_cool *cool_pointer = new i_am_cool(3,-3.141592,'E'); 146 i_am_cool cool_array[5];
|