/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_posix_libcdep.cc | 101 virtual char *SendCommand(bool is_data, const char *module_name, in SendCommand() argument 123 char *SendCommand(bool is_data, const char *module_name, uptr module_offset) { in SendCommand() argument 126 if (char *res = SendCommandImpl(is_data, module_name, module_offset)) in SendCommand() 146 char *SendCommandImpl(bool is_data, const char *module_name, in SendCommandImpl() argument 150 CHECK(module_name); in SendCommandImpl() 151 if (!RenderInputCommand(buffer_, kBufferSize, is_data, module_name, in SendCommandImpl() 284 const char *module_name, in RenderInputCommand() argument 327 const char *module_name, uptr module_offset) const { in RenderInputCommand() argument 329 is_data ? "DATA " : "", module_name, module_offset); in RenderInputCommand() 355 Addr2LineProcess(const char *path, const char *module_name) in Addr2LineProcess() argument [all …]
|
D | sanitizer_symbolizer_libbacktrace.cc | 90 const char *module_name; member 102 info->FillAddressAndModuleInfo(addr, cdata->module_name, in SymbolizeCodePCInfoCallback() 120 info->FillAddressAndModuleInfo(addr, cdata->module_name, in SymbolizeCodeCallback() 153 const char *module_name, in SymbolizeCode() argument 159 data.module_name = module_name; in SymbolizeCode() 184 const char *module_name,
|
/external/chromium_org/tools/generate_stubs/ |
D | generate_stubs.py | 428 def WriteWindowsDefFile(module_name, signatures, outfile): argument 441 outfile.write('LIBRARY %s\n' % module_name) 459 def CreateWindowsLib(module_name, signatures, intermediate_dir, outdir_path, argument 480 module_name + '.def') 482 module_name + '.lib') 485 WriteWindowsDefFile(module_name, signatures, outfile) 523 def __init__(self, module_name, export_macro, signatures): argument 534 self.module_name = module_name 554 def EnumName(cls, module_name): argument 567 return 'kModule%s' % PosixStubWriter.CStyleIdentifier(module_name) [all …]
|
D | generate_stubs_unittest.py | 132 module_name = 'my_module-1' 135 gs.WriteWindowsDefFile(module_name, signatures, outfile) 141 """ % module_name)) 165 self.module_name = 'my_module-1' 168 self.writer = gs.PosixStubWriter(self.module_name, '', self.signatures) 172 gs.PosixStubWriter.EnumName(self.module_name)) 176 gs.PosixStubWriter.IsInitializedName(self.module_name)) 181 gs.PosixStubWriter.InitializeModuleName(self.module_name)) 186 gs.PosixStubWriter.UninitializeModuleName(self.module_name)) 236 decl = gs.PosixStubWriter.InitializeModuleName(self.module_name) [all …]
|
/external/pdfium/core/src/fpdfapi/ |
D | fpdf_basic_module.cpp | 53 void CPDF_ModuleMgr::SetDownloadCallback(FX_BOOL (*callback)(FX_LPCSTR module_name)) in SetDownloadCallback() argument 57 FX_BOOL CPDF_ModuleMgr::DownloadModule(FX_LPCSTR module_name) in DownloadModule() argument 62 return m_pDownloadCallback(module_name); in DownloadModule() 81 void CPDF_ModuleMgr::SetModulePath(FX_LPCSTR module_name, FX_LPCSTR path) in SetModulePath() argument 83 if (module_name == NULL || module_name[0] == 0) { in SetModulePath() 86 m_ModulePathList.SetAt(module_name, FX_NEW CFX_ByteString(path, -1)); in SetModulePath() 89 CFX_ByteString CPDF_ModuleMgr::GetModuleFilePath(FX_LPCSTR module_name, FX_LPCSTR name) in GetModuleFilePath() argument 92 if (m_ModulePathList.Lookup(module_name, (FX_LPVOID&)pPath)) { in GetModuleFilePath() 115 void CPDF_ModuleMgr::NotifyModuleAvailable(FX_LPCSTR module_name) in NotifyModuleAvailable() argument 117 if (FXSYS_strcmp(module_name, ADDIN_NAME_CJK) == 0) { in NotifyModuleAvailable() [all …]
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | modular_build.py | 106 def sorted_dependencies_closure(self, module_name): argument 120 return sorted_deps_for_module(module_name) 133 for (module_name, module) in application_descriptor.items(): 134 if module_descriptors.get(module_name): 135 …bail_error('Duplicate definition of module "%s" in %s' % (module_name, application_descriptor_file… 136 module_json_filename = path.join(self.application_dir, module_name, 'module.json') 137 …module_descriptors[module_name] = self._read_module_descriptor(module_name, application_descriptor… 146 def _read_module_descriptor(self, module_name, application_descriptor_filename): argument 147 json_filename = path.join(self.application_dir, module_name, 'module.json') 151 module_json['name'] = module_name
|
D | compile_frontend.py | 161 for module_name in descriptors.application: 162 module = descriptors.modules[module_name] 163 if descriptors.application[module_name].get('type', None) == 'worker': 164 worker_modules_by_name[module_name] = module 170 list.append(module_name) 197 for module_name in worker_modules_by_name: 198 check_module(worker_modules_by_name[module_name], {}, {}) 204 def module_arg(module_name): argument 205 return ' --module ' + jsmodule_name_prefix + module_name 325 def skip_dependents(module_name): argument [all …]
|
D | concatenate_application_code.py | 77 def concatenate_worker(module_name, descriptors, application_dir, output_dir, minify): argument 78 descriptor = descriptors.modules[module_name] 82 worker_dir = path.join(application_dir, module_name) 83 output_file_path = path.join(output_dir, module_name + '_module.js') 86 output.write('/* Worker %s */\n' % module_name) 89 dependencies = descriptors.sorted_dependencies_closure(module_name)
|
/external/chromium_org/third_party/WebKit/Source/devtools/ |
D | BUILD.gn | 278 # module_name: (String) The JS module name to process. 281 assert(defined(invoker.module_name), target_name) 286 module_name = invoker.module_name 288 input = "front_end/" + module_name + "/module.json" 291 output = "$root_out_dir/resources/inspector/" + module_name + "_module.js" 302 module_name = "audits" 307 module_name = "console" 312 module_name = "devices" 317 module_name = "documentation" 322 module_name = "elements" [all …]
|
/external/chromium_org/extensions/renderer/ |
D | module_system.cc | 191 v8::Handle<v8::Value> ModuleSystem::Require(const std::string& module_name) { in Require() argument 194 v8::String::NewFromUtf8(GetIsolate(), module_name.c_str()))); in Require() 199 v8::Handle<v8::String> module_name = args[0]->ToString(); in RequireForJs() local 200 args.GetReturnValue().Set(RequireForJsInner(module_name)); in RequireForJs() 204 v8::Handle<v8::String> module_name) { in RequireForJsInner() argument 221 v8::Local<v8::Value> exports(modules->Get(module_name)); in RequireForJsInner() 225 exports = LoadModule(*v8::String::Utf8Value(module_name)); in RequireForJsInner() 226 modules->Set(module_name, exports); in RequireForJsInner() 231 const std::string& module_name, in CallModuleMethod() argument 236 CallModuleMethod(module_name, method_name, 0, &no_args)); in CallModuleMethod() [all …]
|
D | module_system.h | 79 v8::Handle<v8::Value> Require(const std::string& module_name); 89 v8::Local<v8::Value> CallModuleMethod(const std::string& module_name, 92 const std::string& module_name, 95 v8::Local<v8::Value> CallModuleMethod(const std::string& module_name, 122 const std::string& module_name, 127 const std::string& module_name, 136 const std::string& module_name, 164 v8::Local<v8::Value> RequireForJsInner(v8::Handle<v8::String> module_name); 177 v8::Handle<v8::Value> GetSource(const std::string& module_name); 196 v8::Handle<v8::Value> LoadModule(const std::string& module_name);
|
/external/chromium_org/sandbox/win/src/ |
D | target_interceptions.cc | 47 UNICODE_STRING* module_name = in TargetNtMapViewOfSection() local 51 if ((!module_name) && (image_flags & MODULE_HAS_CODE)) { in TargetNtMapViewOfSection() 54 module_name = ExtractModuleName(file_name); in TargetNtMapViewOfSection() 60 if (!agent->OnDllLoad(file_name, module_name, *base)) { in TargetNtMapViewOfSection() 67 if (module_name) in TargetNtMapViewOfSection() 68 operator delete(module_name, NT_ALLOC); in TargetNtMapViewOfSection()
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | Main.py | 90 def process_pxd(self, source_desc, scope, module_name): argument 93 source = CompilationSource(source_desc, module_name, os.getcwd()) 98 pipeline = Pipeline.create_pxd_pipeline(self, scope, module_name) 105 def find_module(self, module_name, argument 117 module_name, relative_to, pos, need_pxd)) 121 if check_module_name and not module_name_pattern.match(module_name): 123 pos = (module_name, 0, 0) 125 "'%s' is not a valid module name" % module_name) 126 if "." not in module_name and relative_to: 129 scope = relative_to.lookup_submodule(module_name) [all …]
|
D | CythonScope.py | 43 def find_module(self, module_name, pos): argument 44 error("cython.%s is not available" % module_name, pos) 46 def find_submodule(self, module_name): argument 47 entry = self.entries.get(module_name, None) 50 entry = self.entries.get(module_name, None) 60 "cython.%s is not available" % module_name)
|
D | TreeFragment.py | 26 self.module_name = name 28 def find_module(self, module_name, relative_to = None, pos = None, need_pxd = 1): argument 29 if module_name not in (self.module_name, 'cython'): 31 return ModuleScope(module_name, parent_module = None, context = self) 57 module_name = name 62 scope = context.find_module(module_name, pos = initial_pos, need_pxd = 0) 71 tree = Parsing.p_module(scanner, 0, module_name, ctx=ctx)
|
D | UtilityCode.py | 31 def find_module(self, module_name, relative_to = None, pos = None, argument 34 if module_name != self.module_name: 35 if module_name not in self.modules: 38 return self.modules[module_name] 42 module_name,
|
/external/chromium_org/content/browser/accessibility/ |
D | browser_accessibility_state_impl_win.cc | 60 base::string16 module_name(base::FilePath(filename).BaseName().value()); in UpdatePlatformSpecificHistograms() local 61 if (LowerCaseEqualsASCII(module_name, "fsdomsrv.dll")) in UpdatePlatformSpecificHistograms() 63 if (LowerCaseEqualsASCII(module_name, "vbufbackend_gecko_ia2.dll")) in UpdatePlatformSpecificHistograms() 65 if (LowerCaseEqualsASCII(module_name, "stsaw32.dll")) in UpdatePlatformSpecificHistograms() 67 if (LowerCaseEqualsASCII(module_name, "zslhook.dll")) in UpdatePlatformSpecificHistograms()
|
/external/lldb/test/ |
D | lldbutil.py | 301 … line_number, extra_options = None, num_expected_locations = 1, loc_exact=False, module_name=None): argument 315 if module_name: 316 command += " --shlib '%s'" % (module_name) 324 …=num_expected_locations, file_name = file_name, line_number = line_number, module_name=module_name) 330 …t, symbol, extra_options = None, num_expected_locations = -1, sym_exact = False, module_name=None): argument 336 if module_name: 337 command += " --shlib '%s'" % (module_name) 345 …eak_results, num_locations = num_expected_locations, symbol_name = symbol, module_name=module_name) 351 …_by_selector (test, selector, extra_options = None, num_expected_locations = -1, module_name=None): argument 356 if module_name: [all …]
|
/external/pdfium/core/include/fpdfapi/ |
D | fpdf_module.h | 52 void SetModulePath(FX_LPCSTR module_name, FX_LPCSTR path); 54 CFX_ByteString GetModuleFilePath(FX_LPCSTR module_name, FX_LPCSTR name); 56 void SetDownloadCallback(FX_BOOL (*callback)(FX_LPCSTR module_name)); 58 FX_BOOL DownloadModule(FX_LPCSTR module_name); 60 void NotifyModuleAvailable(FX_LPCSTR module_name); 119 FX_BOOL (*m_pDownloadCallback)(FX_LPCSTR module_name);
|
/external/chromium_org/tools/telemetry/telemetry/unittest/ |
D | system_stub.py | 37 for module_name in module_list: 38 self._overrides[module_name] = getattr(base_module, module_name, None) 39 setattr(self, module_name, stubs[module_name]()) 40 setattr(base_module, module_name, getattr(self, module_name)) 49 for module_name, original_module in self._overrides.iteritems(): 50 setattr(self._base_module, module_name, original_module)
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/ |
D | ftmodapi.h | 190 const FT_String* module_name; member 251 const char* module_name ); 341 const FT_String* module_name, 405 const FT_String* module_name,
|
/external/pdfium/core/include/thirdparties/freetype/freetype/ |
D | ftmodapi.h | 190 const FT_String* module_name; member 251 const char* module_name ); 341 const FT_String* module_name, 405 const FT_String* module_name,
|
/external/freetype/include/ |
D | ftmodapi.h | 190 const FT_String* module_name; member 251 const char* module_name ); 341 const FT_String* module_name, 405 const FT_String* module_name,
|
/external/chromium_org/third_party/freetype/include/freetype/ |
D | ftmodapi.h | 190 const FT_String* module_name; member 251 const char* module_name ); 341 const FT_String* module_name, 405 const FT_String* module_name,
|
/external/chromium_org/tools/grit/grit/extern/ |
D | FP.py | 49 def UseUnsignedFingerPrintFromModule(module_name): argument 57 hash_module = __import__(module_name, fromlist=[module_name])
|