/third_party/python/Tools/clinic/ |
H A D | clinic.py | 1515 it may only contain clinic.Module, clinic.Class, and 2192 class Module: class 2202 return "<clinic.Module " + repr(self.name) + " at " + str(id(self)) + ">" 4093 m = Module(name, module)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Instructions.cpp | 33 #include "llvm/IR/Module.h" 568 Module *M = BB->getParent()->getParent(); in createMalloc() 662 Module *M = BB->getParent()->getParent(); in createFree()
|
H A D | ConstantFold.cpp | 29 #include "llvm/IR/Module.h" 1175 if (Module *TheModule = GV->getParent()) { in ConstantFoldBinaryInstruction()
|
/third_party/node/deps/v8/src/ic/ |
H A D | accessor-assembler.cc | 853 TNode<Module> module = in HandleLoadICSmiHandlerLoadNamedCase() 854 LoadObjectField<Module>(CAST(holder), JSModuleNamespace::kModuleOffset); in HandleLoadICSmiHandlerLoadNamedCase() 856 LoadObjectField<ObjectHashTable>(module, Module::kExportsOffset); in HandleLoadICSmiHandlerLoadNamedCase()
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-debugger-agent-impl.cc | 272 return Scope::TypeEnum::Module;
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | mod.rs | 43 use crate::ir::module::Module; 520 ItemKind::Module(ref module) => { in codegen() 536 impl CodeGenerator for Module { 546 debug!("<Module as CodeGenerator>::codegen: item = {:?}", item); in codegen()
|
/third_party/python/Python/ |
H A D | symtable.c | 317 seq = mod->v.Module.body; in _PySymtable_Build()
|
H A D | Python-ast.c | 1109 "mod = Module(stmt* body, type_ignore* type_ignores)\n" in init_types() 1115 state->Module_type = make_type(state, "Module", state->mod_type, in init_types() 1117 "Module(stmt* body, type_ignore* type_ignores)"); in init_types() 1906 p->v.Module.body = body; in _PyAST_Module() 1907 p->v.Module.type_ignores = type_ignores; in _PyAST_Module() 3625 value = ast2obj_list(state, (asdl_seq*)o->v.Module.body, ast2obj_stmt); in ast2obj_mod() 3630 value = ast2obj_list(state, (asdl_seq*)o->v.Module.type_ignores, in ast2obj_mod() 5498 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from Module"); in obj2ast_mod() 5506 PyErr_Format(PyExc_TypeError, "Module field \"body\" must be a list, not a %.200s", _PyType_Name(Py_TYPE(tmp))); in obj2ast_mod() 5516 if (_Py_EnterRecursiveCall(" while traversing 'Module' nod in obj2ast_mod() [all...] |
/third_party/python/Lib/ |
H A D | inspect.py | 286 Module objects provide these attributes: 2190 if not isinstance(module, ast.Module):
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 77 Module *M = I->getModule(); in PrintOps()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | Local.cpp | 65 #include "llvm/IR/Module.h" 1856 Module &M = *From.getModule(); in replaceAllDbgUsesWith()
|
/third_party/spirv-tools/source/opt/ |
H A D | const_folding_rules.cpp | 205 Module::inst_iterator* pos = &iter; in FoldInsertWithConstants()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.cpp | 62 #include "llvm/IR/Module.h" 13104 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in emitLoadLinked() 13143 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in emitAtomicCmpXchgNoStoreLLBalance() 13150 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in emitStoreConditional() 13194 Module *M = IRB.GetInsertBlock()->getParent()->getParent(); in UseTlsOffset() 13218 void AArch64TargetLowering::insertSSPDeclarations(Module &M) const { in insertSSPDeclarations() 13238 Value *AArch64TargetLowering::getSDagStackGuard(const Module &M) const { in getSDagStackGuard() 13245 Function *AArch64TargetLowering::getSSPStackGuardCheck(const Module &M) const { in getSSPStackGuardCheck()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMISelLowering.cpp | 82 #include "llvm/IR/Module.h" 2305 const Module *Mod = MF.getFunction().getParent(); in LowerCall() 3029 auto M = const_cast<Module*>(DAG.getMachineFunction(). in LowerConstantPool() 16693 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in makeDMB() 16825 void ARMTargetLowering::insertSSPDeclarations(Module &M) const { in insertSSPDeclarations() 16841 Value *ARMTargetLowering::getSDagStackGuard(const Module &M) const { in getSDagStackGuard() 16848 Function *ARMTargetLowering::getSSPStackGuardCheck(const Module &M) const { in getSSPStackGuardCheck() 16898 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in emitLoadLinked() 16936 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in emitAtomicCmpXchgNoStoreLLBalance() 16943 Module * in emitStoreConditional() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
H A D | MIParser.cpp | 54 #include "llvm/IR/Module.h" 1850 const Module *M = PFS.MF.getFunction().getParent();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstructionCombining.cpp | 2466 Module *M = II->getModule(); in visitAllocSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 65 #include "llvm/IR/Module.h" 4481 Module *M = F->getParent(); 5546 bool doInitialization(Module &M) override {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCISelDAGToDAG.cpp | 46 #include "llvm/IR/Module.h" 436 const Module *M = MF->getFunction().getParent(); in getGlobalBaseReg() 4552 const Module *Mod = MF->getFunction().getParent(); in Select()
|
H A D | PPCISelLowering.cpp | 71 #include "llvm/IR/Module.h" 2896 const Module *M = DAG.getMachineFunction().getFunction().getParent(); in LowerGlobalTLSAddress() 5138 const Module *Mod = DAG.getMachineFunction().getFunction().getParent(); in transformCallee() 5203 const Module *Mod = DAG.getMachineFunction().getFunction().getParent(); in transformCallee() 10581 Module *M = Builder.GetInsertBlock()->getParent()->getParent(); in callIntrinsic() 15407 void PPCTargetLowering::insertSSPDeclarations(Module &M) const { in insertSSPDeclarations()
|
/third_party/sqlite/src/ |
H A D | sqlite3.c | 3530 #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */ 3531 #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */ 7635 ** ^Module names must be registered before 7673 void(*xDestroy)(void*) /* Module destructor function */ 14773 typedef struct Module Module; typedef 17540 struct Module { struct 17545 void (*xDestroy)(void *); /* Module destructor function */ 17732 Module *pMod; /* Pointer to module implementation */ 20084 SQLITE_PRIVATE Module *sqlite3PragmaVtabRegiste [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-js.cc | 191 GET_FIRST_ARGUMENT_AS(Module) 572 // -> Promise<WebAssembly.Module> 688 // new WebAssembly.Module(bytes) -> WebAssembly.Module 695 ScheduledErrorThrower thrower(i_isolate, "WebAssembly.Module()"); in WebAssemblyModule() 698 thrower.TypeError("WebAssembly.Module must be invoked with 'new'"); in WebAssemblyModule() 735 // constructor function wasn't {WebAssembly.Module} directly, but some in WebAssemblyModule() 736 // subclass: {module_obj} has {WebAssembly.Module}'s prototype at this in WebAssemblyModule() 747 // WebAssembly.Module.imports(module) -> Array<Import> 752 ScheduledErrorThrower thrower(i_isolate, "WebAssembly.Module in WebAssemblyModuleImports() [all...] |
/third_party/node/deps/v8/src/execution/ |
H A D | isolate.cc | 4848 api_context, Utils::ToLocal(Handle<Module>::cast(module)), in ThrowInternal()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | DependenceAnalysis.cpp | 62 #include "llvm/IR/Module.h" 206 const Module *) const { in print()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTXISelLowering.cpp | 43 #include "llvm/IR/Module.h" 2441 static bool isImageOrSamplerVal(const Value *arg, const Module *context) { in isImageOrSamplerVal()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | TargetLowering.cpp | 7041 Module *VariableModule = const_cast<Module*>(GA->getGlobal()->getParent());
|