HomeSort by relevance Sort by last modified time
    Searched refs:module_path (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/tools/gyp/test/module/src/
program.c 27 char module_path[MAX_PATH + 1]; local
40 if (_makepath_s(module_path, MAX_PATH, drive, dir, module, MODULE_SUFFIX)) {
45 dl = LoadLibrary(module_path);
47 fprintf(stderr, "Failed to open module: %s\n", module_path);
63 int path_size = snprintf(module_path, MAX_PATH, "%s/%s%s", bin_dir, module,
70 module_path[path_size] = 0;
72 dl = dlopen(module_path, RTLD_LAZY);
74 fprintf(stderr, "Failed to open module: %s\n", module_path);
  /external/chromium_org/ui/gl/
gl_implementation_osmesa.cc 34 base::FilePath module_path; local
35 if (!PathService::Get(base::DIR_MODULE, &module_path)) {
40 base::FilePath library_path = module_path.Append("libosmesa.so");
gl_implementation_win.cc 50 bool LoadD3DXLibrary(const base::FilePath& module_path,
55 library = base::LoadNativeLibrary(module_path.Append(name), NULL);
125 base::FilePath module_path; local
126 if (!PathService::Get(base::DIR_MODULE, &module_path)) {
132 module_path.Append(L"osmesa.dll"), NULL);
157 base::FilePath module_path; local
158 if (!PathService::Get(base::DIR_MODULE, &module_path))
166 !LoadD3DXLibrary(module_path, kPostVistaD3DCompiler)) {
167 LoadD3DXLibrary(module_path, kPreVistaD3DCompiler);
182 gles_path = module_path;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
webkit_finder.py 54 module_path = self._filesystem.abspath(self._filesystem.path_to_module(self.__module__))
55 tools_index = module_path.rfind('Tools')
56 assert tools_index != -1, "could not find location of this checkout from %s" % module_path
57 self._webkit_base = self._filesystem.normpath(module_path[0:tools_index - 1])
multiprocessing_bootstrap.py 53 module_path = os.path.join(script_dir, *parts)
54 cmd = [sys.executable, module_path] + sys.argv[1:]
  /external/chromium_org/tools/telemetry/telemetry/util/
find_dependencies.py 43 def FindPythonDependencies(module_path):
44 logging.info('Finding Python dependencies of %s' % module_path)
48 os.path.splitext(os.path.basename(module_path))[0], module_path)
52 finder.run_script(module_path)
57 module_path = module.__path__[0] if module.__path__ else module.__file__
58 if not module_path:
61 module_path = os.path.realpath(module_path)
62 if not _InDirectory(module_path, util.GetChromiumSrcDir())
    [all...]
  /external/chromium_org/chrome_elf/blacklist/
blacklist_interceptions.cc 112 base::string16 ExtractLoadedModuleName(const base::string16& module_path) {
113 if (module_path.empty() || module_path[module_path.size() - 1] == L'\\')
116 size_t sep = module_path.find_last_of(L'\\');
118 return module_path;
120 return module_path.substr(sep+1);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
main_unittest.py 110 module_path = filesystem.path_to_module(self.__module__)
111 script_dir = module_path[0:module_path.find('webkitpy') - 1]
  /external/chromium_org/chrome_elf/
elf_imports_unittest.cc 36 void GetImports(const base::FilePath& module_path,
42 ASSERT_TRUE(module_mmap.Initialize(module_path));
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
blink_idl_lexer.py 61 module_path, module_name = os.path.split(__file__)
62 third_party = os.path.join(module_path, os.pardir, os.pardir, os.pardir, os.pardir)
generate_event_interfaces.py 55 module_path = os.path.dirname(os.path.realpath(__file__)) variable
56 source_dir = os.path.normpath(os.path.join(module_path, os.pardir, os.pardir))
idl_validator.py 38 module_path = os.path.dirname(__file__) variable
39 source_path = os.path.join(module_path, os.pardir, os.pardir)
compute_interfaces_info_individual.py 52 module_path = os.path.dirname(__file__) variable
53 source_path = os.path.normpath(os.path.join(module_path, os.pardir, os.pardir))
blink_idl_parser.py 61 module_path, module_name = os.path.split(__file__)
62 third_party = os.path.join(module_path, os.pardir, os.pardir, os.pardir, os.pardir)
68 tools_dir = os.path.join(module_path, os.pardir, os.pardir, os.pardir, os.pardir, os.pardir, 'tools')
code_generator_v8.py 59 module_path, module_filename = os.path.split(os.path.realpath(__file__))
61 module_path, os.pardir, os.pardir, os.pardir, os.pardir))
63 module_path, os.pardir, 'templates'))
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 321 char module_path[2048]; local
349 get_next_token(wrk, module_path, sizeof(module_path));
353 module_name = strrchr(module_path,'/');
355 module_name = module_path;
361 module_name = module_path;
  /external/chromium_org/content/test/
test_webkit_platform_support.cc 71 base::FilePath module_path; local
72 if (PathService::Get(base::DIR_MODULE, &module_path)) {
75 module_path = module_path.DirName().DirName().DirName();
77 if (media::InitializeMediaLibrary(module_path))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 27 self.module_path = os.path.join(self.package_dir, 'foo'+os.extsep+'py')
40 compiled_path = self.module_path + extension
43 f = open(self.module_path, 'w')