/external/llvm/test/DebugInfo/Inputs/ |
dwarfdump-pubnames.cc | 21 C global_variable; variable 29 global_variable.member_function();
|
/external/llvm/test/DebugInfo/ |
dwarfdump-pubnames.test | 11 CHECK: 0x0000007c "global_variable"
|
dwarf-public-names.ll | 25 ; C global_variable; 33 ; global_variable.member_function(); 45 ; CHECK-DAG: "global_variable" 55 @global_variable = global %struct.C zeroinitializer, align 1 83 call void @_ZN1C15member_functionEv(%struct.C* @global_variable), !dbg !35 119 !26 = !MDGlobalVariable(name: "global_variable", line: 17, isLocal: false, isDefinition: true, scope: null, file: !4, type: !8, variable: %struct.C* @global_variable)
|
/external/clang/test/CodeGenCXX/ |
debug-info-function-context.cpp | 15 C global_variable; variable 20 void global_namespace_function() { global_variable.member_function(); }
|
/external/lldb/examples/python/ |
globals.py | 43 for global_variable in global_variable_list: 44 print 'name = %s' % global_variable.name # returns the global variable name as a string 45 print 'value = %s' % global_variable.value # Returns the variable value as a string 46 print 'type = %s' % global_variable.type # Returns an lldb.SBType object 47 print 'addr = %s' % global_variable.addr # Returns an lldb.SBAddress (section offset address) for this global 48 print 'file_addr = 0x%x' % global_variable.addr.file_addr # Returns the file virtual address for this global 49 print 'location = %s' % global_variable.location # returns the global variable value as a string 50 print 'size = %s' % global_variable.size # Returns the size in bytes of this global variable
|
/external/clang/test/Index/ |
comment-c-decls.c | 26 int global_variable; variable 27 // CHECK: <Declaration>int global_variable</Declaration>
|
format-comment-cdecls.c | 21 int global_variable; variable 22 // CHECK: <Declaration>int global_variable</Declaration>
|
/external/llvm/test/DebugInfo/X86/ |
dwarf-public-names.ll | 27 ; C global_variable; 35 ; global_variable.member_function(); 51 ; LINUX-DAG: "global_variable" 61 @global_variable = global %struct.C zeroinitializer, align 1 89 call void @_ZN1C15member_functionEv(%struct.C* @global_variable), !dbg !35 125 !26 = !MDGlobalVariable(name: "global_variable", line: 17, isLocal: false, isDefinition: true, scope: null, file: !4, type: !8, variable: %struct.C* @global_variable)
|
gnu-public-names.ll | 23 ; C global_variable; 31 ; global_variable.member_function(); 69 ; ASM-NEXT: .asciz "global_variable" # External Name 101 ; CHECK-NEXT: DW_AT_name {{.*}} "global_variable" 214 ; CHECK-NEXT: [[GLOB_VAR]] EXTERNAL VARIABLE "global_variable" 234 @global_variable = global %struct.C zeroinitializer, align 1 272 call void @_ZN1C15member_functionEv(%struct.C* @global_variable), !dbg !59 336 !33 = !MDGlobalVariable(name: "global_variable", scope: !0, file: !1, line: 17, type: !"_ZTS1C", isLocal: false, isDefinition: true, variable: %struct.C* @global_variable)
|
/external/lldb/source/Expression/ |
IRForTarget.cpp | 1056 GlobalVariable *global_variable = dyn_cast<GlobalVariable>(value); local 1644 GlobalVariable *global_variable = dyn_cast<GlobalVariable>(classlist_reference); local [all...] |
/external/llvm/test/Transforms/SimplifyCFG/ |
dbginfo.ll | 8 %llvm.dbg.global_variable.type = type { i32, { }*, { }*, i8*, i8*, i8*, { }*, i32, { }*, i1, i1, { }* }
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITTest.cpp | 47 TEST_F(MCJITTest, global_variable) {
|
/external/v8/test/cctest/ |
test-javascript-arm64.cc | 96 TEST(global_variable) {
|
/external/lldb/include/lldb/Expression/ |
IRForTarget.h | 435 /// @param[in] global_variable 442 MaterializeInternalVariable (llvm::GlobalVariable *global_variable);
|
/external/lldb/test/ |
lldbutil.py | 245 return "global_variable"
|