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

1 2

  /external/chromium/base/
native_library_win.cc 17 NativeLibrary LoadNativeLibraryHelper(const FilePath& library_path,
27 FilePath plugin_path = library_path.DirName();
34 HMODULE module = (*load_library_api)(library_path.value().c_str());
42 NativeLibrary LoadNativeLibrary(const FilePath& library_path,
44 return LoadNativeLibraryHelper(library_path, LoadLibraryW);
47 NativeLibrary LoadNativeLibraryDynamically(const FilePath& library_path) {
54 return LoadNativeLibraryHelper(library_path, load_library);
native_library_linux.cc 17 NativeLibrary LoadNativeLibrary(const FilePath& library_path,
26 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY);
native_library.h 58 BASE_API NativeLibrary LoadNativeLibrary(const FilePath& library_path,
68 const FilePath& library_path);
  /external/chromium_org/base/
native_library_win.cc 17 NativeLibrary LoadNativeLibraryHelper(const FilePath& library_path,
27 FilePath plugin_path = library_path.DirName();
34 HMODULE module = (*load_library_api)(library_path.value().c_str());
42 NativeLibrary LoadNativeLibrary(const FilePath& library_path,
44 return LoadNativeLibraryHelper(library_path, LoadLibraryW);
47 NativeLibrary LoadNativeLibraryDynamically(const FilePath& library_path) {
54 return LoadNativeLibraryHelper(library_path, load_library);
native_library_posix.cc 17 NativeLibrary LoadNativeLibrary(const FilePath& library_path,
26 void* dl = dlopen(library_path.value().c_str(), RTLD_LAZY);
scoped_native_library.cc 16 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) {
17 library_ = base::LoadNativeLibrary(library_path, NULL);
scoped_native_library.h 27 explicit ScopedNativeLibrary(const FilePath& library_path);
native_library.h 63 BASE_EXPORT NativeLibrary LoadNativeLibrary(const FilePath& library_path,
73 const FilePath& library_path);
  /external/chromium/base/memory/
scoped_native_library.cc 16 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) {
17 library_ = base::LoadNativeLibrary(library_path, NULL);
scoped_native_library.h 28 explicit ScopedNativeLibrary(const FilePath& library_path);
  /external/chromium_org/build/android/gyp/
strip_library_for_device.py 15 def StripLibrary(android_strip, android_strip_args, library_path, output_path):
16 if build_utils.IsTimeStale(output_path, [library_path]):
19 ['-o', output_path, library_path])
48 library_path = os.path.join(options.libraries_dir, library)
51 StripLibrary(options.android_strip, options.android_strip_arg, library_path,
  /external/chromium_org/base/android/
path_utils.cc 57 FilePath library_path(ConvertJavaStringToUTF8(path));
58 *result = library_path;
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
itunes_data_provider.h 34 explicit ITunesDataProvider(const base::FilePath& library_path);
42 const base::FilePath& library_path() const;
itunes_data_provider.cc 98 const base::FilePath& library_path,
104 library_path, false /*recursive*/,
107 LOG(ERROR) << "Adding watch for " << library_path.value() << " failed";
141 base::FilePath GetAutoAddPath(const base::FilePath& library_path) {
144 library_path.DirName().AppendASCII(kiTunesMediaDir);
212 ITunesDataProvider::ITunesDataProvider(const base::FilePath& library_path)
213 : library_path_(library_path),
214 auto_add_path_(GetAutoAddPath(library_path)),
247 const base::FilePath& ITunesDataProvider::library_path() const { function in class:itunes::ITunesDataProvider
itunes_file_util.cc 106 base::FilePath file_path = GetDataProvider()->library_path();
163 if (!file_util::GetFileInfo(GetDataProvider()->library_path(), &xml_info))
281 *local_file_path = GetDataProvider()->library_path();
  /external/chromium_org/chrome/test/base/
v8_unit_test.h 28 // Add a custom helper JS library for your test. If |library_path| is
30 void AddLibrary(const base::FilePath& library_path);
web_ui_browsertest.h 54 void AddLibrary(const base::FilePath& library_path);
v8_unit_test.cc 56 void V8UnitTest::AddLibrary(const base::FilePath& library_path) {
57 user_libraries_.push_back(library_path);
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 105 LIBRARY_PATH = ::File.expand_path( ::File.dirname( __FILE__ ) ).freeze
106 PROJECT_PATH = ::File.dirname( LIBRARY_PATH ).freeze
116 def self.library_path( *args ) singleton method in class:ANTLR3
117 ::File.expand_path( ::File.join( LIBRARY_PATH, *args ) )
196 $LOAD_PATH.include?( library_path ) or $LOAD_PATH.unshift( library_path )
  /external/chromium_org/third_party/android_platform/development/scripts/
symbol.py 126 library_path = os.path.relpath(candidate_libraries[0], SYMBOLS_DIR)
127 return '/' + library_path
  /external/v8/src/
log.h 258 void SharedLibraryEvent(const char* library_path,
261 void SharedLibraryEvent(const wchar_t* library_path,
  /external/chromium/crypto/
nss_util.cc 470 const char* library_path,
474 name, library_path, params ? params : "");
  /external/chromium_org/v8/src/
log.h 293 void SharedLibraryEvent(const char* library_path,
296 void SharedLibraryEvent(const wchar_t* library_path,
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/main/
main-scripts.rb 8 ENV[ 'RUBYLIB' ] = ANTLR3.library_path
  /external/chromium_org/chrome/utility/
chrome_content_utility_client.cc 548 base::FilePath library_path(
550 Send(new ChromeUtilityHostMsg_GotITunesDirectory(library_path));

Completed in 1737 milliseconds

1 2