Searched refs:global_variable (Results 1 - 9 of 9) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Ddebug-info-function-context.cpp15 C global_variable; variable
20 void global_namespace_function() { global_variable.member_function(); }
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-pubnames.cc21 C global_variable; variable
29 global_variable.member_function();
/external/lldb/examples/python/
H A Dglobals.py43 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/
H A Dcomment-c-decls.c26 int global_variable; variable
27 // CHECK: <Declaration>int global_variable</Declaration>
H A Dformat-comment-cdecls.c21 int global_variable; variable
22 // CHECK: <Declaration>int global_variable</Declaration>
/external/lldb/source/Expression/
H A DIRForTarget.cpp1056 GlobalVariable *global_variable = dyn_cast<GlobalVariable>(value); local
1058 if (!global_variable || !global_variable->hasName() || !global_variable->getName().startswith("\01L_OBJC_SELECTOR_REFERENCES_"))
1428 IRForTarget::MaterializeInternalVariable (GlobalVariable *global_variable) argument
1430 if (GlobalVariable::isExternalLinkage(global_variable->getLinkage()))
1433 if (global_variable == m_reloc_placeholder)
1438 llvm::Type *variable_type = global_variable->getType();
1440 Constant *initializer = global_variable->getInitializer();
1462 global_variable
1644 GlobalVariable *global_variable = dyn_cast<GlobalVariable>(classlist_reference); local
[all...]
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTest.cpp47 TEST_F(MCJITTest, global_variable) {
/external/chromium_org/v8/test/cctest/
H A Dtest-javascript-arm64.cc96 TEST(global_variable) {
/external/lldb/include/lldb/Expression/
H A DIRForTarget.h435 /// @param[in] global_variable
442 MaterializeInternalVariable (llvm::GlobalVariable *global_variable);

Completed in 220 milliseconds