Home
last modified time | relevance | path

Searched refs:modname (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/examples/customization/import-python/
H A Dimportcmd.py16 def do_import(debugger, modname): argument
17 if len(modname) > 4 and modname[-4:] == ".pyc":
18 modname = modname[:-4]
19 if len(modname) > 3 and modname[-3:] == ".py":
20 modname = modname[:-3]
21 debugger.HandleCommand("script import " + modname)
30 modname = args
34 modname = args[endofdir + 1 :]
37 do_import(debugger, modname)
/llvm-project/clang/test/Index/Core/
H A Dexternal-source-symbol-attr.m62 #pragma clang attribute PUSH_GEN_DECL("modname")
92 // CHECK: [[@LINE-1]]:12 | class/Swift | I3 | c:@M@modname@objc(cs)I3 |
93 // CHECK: [[@LINE-2]]:23 | protocol/Swift | ExtProt2 | c:@M@modname@objc(pl)ExtProt2 |
94 // CHECK: [[@LINE-3]]:40 | enum/Swift | SomeEnum | c:@M@modname@E@SomeEnum |
96 // CHECK: [[@LINE-1]]:7 | instance-method/Swift | meth | c:@M@modname@objc(cs)I3(im)meth |
98 // CHECK: [[@LINE-1]]:7 | instance-method/Swift | meth2 | c:@CM@modname@objc(cs)I3(im)meth2 |
100 …// CHECK: [[@LINE-1]]:10 | instance-method(protocol)/Swift | meth | c:@M@modname@objc(pl)ExtProt2(…
102 …// CHECK: [[@LINE-1]]:10 | enumerator/Swift | SomeEnumFirst | c:@M@modname@E@SomeEnum@SomeEnumFirs…
113 …1]]:7 | instance-method/Swift | meth_other_mod | c:@CM@other_mod_for_cat@modname@objc(cs)I3(im)met…
/llvm-project/compiler-rt/lib/interception/
H A Dinterception_win.cpp1402 RVAPtr<const char> modname(module, imports->Name);
1403 if (_stricmp(&*modname, imported_module) == 0)
1106 RVAPtr<const char> modname(module, imports->Name); OverrideImportedFunction() local
/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win.cpp622 static uptr GetPreferredBase(const char *modname, char *buf, size_t buf_size) { in GetPreferredBase()
623 fd_t fd = OpenFile(modname, RdOnly, nullptr); in GetPreferredBase()
605 GetPreferredBase(const char * modname,char * buf,size_t buf_size) GetPreferredBase() argument