HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 101 - 125 of 435) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 49 // The current module for this page (if this page is an api module);
50 var module; variable
52 // Mapping from typeId to module.
58 // If this page is an apiModule, the name of the api module
213 module = mod;
214 apiModuleName = API_MODULE_PREFIX + module.namespace;
215 pageData.apiDefinition = module;
335 return schema.filter(function(module) {
336 return !module.nodoc && module.namespace.indexOf("experimental") < 0
    [all...]
  /external/chromium/net/base/
cert_database_nss.cc 113 CryptoModule* module = local
115 // The module is already referenced when returned from
117 PK11_FreeSlot(module->os_module_handle());
119 return module;
123 CryptoModule* module = local
125 // The module is already referenced when returned from
127 PK11_FreeSlot(module->os_module_handle());
129 return module;
157 CryptoModule* module,
160 int result = psm::nsPKCS12Blob_Import(module->os_module_handle()
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_dispatch.py 33 """Tests for dispatch module."""
39 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
53 """A unittest for dispatch module."""
test_handshake.py 33 """Tests for handshake module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
49 """A unittest for handshake module."""
test_handshake_draft75.py 33 """Tests for handshake module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
396 """A unittest for draft75 module."""
test_handshake_hybi00.py 33 """Tests for handshake.hybi00 module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
test_handshake_hybi08.py 33 """Tests for handshake module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
  /external/chromium_org/base/debug/
profiler.cc 153 // find the module this import was resolved to by the loader.
157 // Retrieve the module by a function in the module.
160 HMODULE module = NULL; local
161 if (!::GetModuleHandleEx(kFlags, function_in_module, &module)) {
166 // See whether this module exports the function we're looking for.
167 FARPROC exported_func = ::GetProcAddress(module, context->name);
  /external/chromium_org/chrome/browser/
enumerate_modules_model_unittest_win.cc 28 ModuleEnumerator::Module test_case;
29 ModuleEnumerator::Module expected;
62 ModuleEnumerator::Module test = kNormalizationTestCases[i].test_case;
65 ModuleEnumerator::Module expected = kNormalizationTestCases[i].expected;
81 const ModuleEnumerator::Module kStandardModule =
84 const ModuleEnumerator::Module kStandardModuleNoDescription =
87 const ModuleEnumerator::Module kStandardModuleNoSignature =
106 ModuleEnumerator::Module test_case;
201 ModuleEnumerator::Module test = kMatchineEntryList[i].test_case;
233 ModuleEnumerator::Module module local
    [all...]
  /external/chromium_org/chrome/browser/speech/
tts_linux.cc 26 std::string module; member in struct:__anon8159::SPDChromeVoice
80 // Map a string composed of a voicename and module to the voicename. Used to
173 libspeechd_loader_.spd_set_output_module(conn_, it->second.module.c_str());
227 char* module = modules[i]; local
228 libspeechd_loader_.spd_set_output_module(conn_, module);
232 free(module);
239 native_data.module = module;
243 key.append(native_data.module);
  /external/chromium_org/chrome/common/extensions/
extension_l10n_util.cc 150 base::DictionaryValue* module = NULL; local
151 if (!input_components->GetDictionary(i, &module)) {
155 if (!LocalizeManifestValue(keys::kName, messages, module, error))
157 if (!LocalizeManifestValue(keys::kDescription, messages, module, error))
  /external/chromium_org/chrome/tools/build/win/
resedit.py 113 module = property(_GetModule) variable in class:_ResourceEditor
141 for res_type in win32api.EnumResourceTypes(self.module):
145 for res_name in win32api.EnumResourceNames(self.module, res_type):
149 for res_lang in win32api.EnumResourceLanguages(self.module,
176 data = win32api.LoadResource(self.module, res_type, res_name, res_lang)
  /external/chromium_org/chrome_frame/crash_reporting/
nt_loader_unittest.cc 136 MODULEENTRY32 module = { sizeof(module) }; local
137 ASSERT_TRUE(::Module32First(snap.Get(), &module));
142 nt_loader::GetLoaderEntry(module.hModule);
144 EXPECT_EQ(module.hModule, reinterpret_cast<HMODULE>(entry->DllBase));
145 EXPECT_STREQ(module.szModule,
147 EXPECT_STREQ(module.szExePath,
158 // Dlls have the LDRP_IMAGE_DLL flag set, any module that doesn't
160 EXPECT_TRUE(module.hModule == ::GetModuleHandle(NULL));
177 } while (::Module32Next(snap.Get(), &module));
275 HMODULE module = ::LoadLibrary(kCrashDllName); local
311 HMODULE module = ::LoadLibrary(kCrashDllName); local
    [all...]
  /external/chromium_org/chrome_frame/test/perf/
silverlight.cc 139 SimpleModule module; local
152 SimpleModule module; local
  /external/chromium_org/content/renderer/pepper/
host_globals.cc 40 // Adds all WebPluginContainers associated with the given module to the set.
41 void GetAllContainersForModule(PluginModule* module,
44 module->GetAllInstances();
111 return found->second->module()->GetCallbackTracker().get();
132 return inst->module()->pp_module();
171 PluginModule* module = GetModule(pp_module); local
172 if (module) {
173 GetAllContainersForModule(module, &containers);
175 // Unknown module, get containers for all modules.
196 PP_Module HostGlobals::AddModule(PluginModule* module) {
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/gamepad/
gamepad.cc 78 pp::Module* module = pp::Module::Get(); local
79 assert(module);
81 module->GetBrowserInterface(PPB_GAMEPAD_INTERFACE));
201 class GamepadModule : public pp::Module {
203 GamepadModule() : pp::Module() {}
212 Module* CreateModule() { return new GamepadModule(); }
  /external/chromium_org/sandbox/win/src/
target_process.cc 46 // Returns the address of the main exe module in memory taking in account
214 HMODULE module = ::LoadLibrary(exe_name_.get()); local
215 if (NULL == module)
218 child_var = ::GetProcAddress(module, name);
219 ::FreeLibrary(module);
225 reinterpret_cast<char*>(module);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCanvasAgent.cpp 120 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId); local
121 if (!module.hasNoValue())
122 module.dropTraceLog(errorString, traceLogId);
143 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, mainWorldScriptState(frame));
144 if (!module.hasNoValue())
145 module.captureFrame(errorString, traceLogId);
153 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, mainWorldScriptState(frame));
154 if (!module.hasNoValue())
155 module.startCapturing(errorString, traceLogId);
160 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId) local
167 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId); local
174 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId); local
181 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId); local
188 InjectedScriptCanvasModule module = injectedScriptCanvasModule(errorString, traceLogId); local
196 InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, context); local
205 InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, glContext); local
345 InjectedScriptCanvasModule module = injectedScriptCanvasModule(&error, mainWorldScriptState(it->key)); local
    [all...]
  /external/chromium_org/third_party/freetype/src/cff/
cffobjs.h 170 cff_driver_init( FT_Module module ); variable
173 cff_driver_done( FT_Module module ); variable
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_intr.c 56 lp_declare_intrinsic(LLVMModuleRef module,
65 assert(!LLVMGetNamedFunction(module, name));
68 function = LLVMAddFunction(module, name, function_type);
86 LLVMModuleRef module = LLVMGetGlobalParent(LLVMGetBasicBlockParent(LLVMGetInsertBlock(builder))); local
89 function = LLVMGetNamedFunction(module, name);
101 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_format.c 84 LLVMModuleRef module = gallivm->module; local
103 func = LLVMAddFunction(module, name,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
kernel.cpp 31 const std::vector<clover::module::argument> &args) :
34 if (arg.type == module::argument::scalar)
36 else if (arg.type == module::argument::global)
38 else if (arg.type == module::argument::local)
40 else if (arg.type == module::argument::constant)
42 else if (arg.type == module::argument::image2d_rd ||
43 arg.type == module::argument::image3d_rd)
45 else if (arg.type == module::argument::image2d_wr ||
46 arg.type == module::argument::image3d_wr)
48 else if (arg.type == module::argument::sampler
128 _cl_kernel::module(const clover::command_queue &q) const { function in class:_cl_kernel
    [all...]
module.hpp 29 struct module { struct in namespace:clover
91 static module deserialize(compat::istream &is);
93 /// Look up a symbol by name. Throws module::noent_error if not
97 /// Look up a section by type. Throws module::noent_error if not
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.h 178 // Patches a named function imported from the named module using
186 // @param module_name The name of the module from which the function
187 // is being imported. Note that the patch will fail if this module
209 "You must specify a module name and function name.");
212 HMODULE module = ::GetModuleHandle(module_name); local
213 SIDESTEP_ASSERT(module != NULL);
214 if (!module) {
215 SIDESTEP_ASSERT(false && "Invalid module name.");
218 FARPROC existing_function = ::GetProcAddress(module, function_name);
221 false && "Did not find any function with that name in the module.")
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.h 178 // Patches a named function imported from the named module using
186 // @param module_name The name of the module from which the function
187 // is being imported. Note that the patch will fail if this module
209 "You must specify a module name and function name.");
212 HMODULE module = ::GetModuleHandle(module_name); local
213 SIDESTEP_ASSERT(module != NULL);
214 if (!module) {
215 SIDESTEP_ASSERT(false && "Invalid module name.");
218 FARPROC existing_function = ::GetProcAddress(module, function_name);
221 false && "Did not find any function with that name in the module.")
    [all...]

Completed in 1668 milliseconds

1 2 3 45 6 7 8 91011>>