HomeSort by relevance Sort by last modified time
    Searched refs:library_path (Results 1 - 25 of 36) 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_org/chrome/browser/media_galleries/fileapi/
iapps_data_provider.h 28 explicit IAppsDataProvider(const base::FilePath& library_path);
36 const base::FilePath& library_path() const;
44 // Signal to subclass to parse the |library_path|. The |ready_callback|
46 virtual void DoParseLibrary(const base::FilePath& library_path,
iapps_data_provider.cc 28 IAppsDataProvider::IAppsDataProvider(const base::FilePath& library_path)
29 : library_path_(library_path),
66 const base::FilePath& IAppsDataProvider::library_path() const { function in class:iapps::IAppsDataProvider
iphoto_data_provider.h 30 explicit IPhotoDataProvider(const base::FilePath& library_path);
34 virtual void DoParseLibrary(const base::FilePath& library_path,
itunes_data_provider.h 34 explicit ITunesDataProvider(const base::FilePath& library_path);
68 virtual void DoParseLibrary(const base::FilePath& library_path,
itunes_data_provider.cc 109 base::FilePath GetAutoAddPath(const base::FilePath& library_path) {
112 library_path.DirName().AppendASCII(kiTunesMediaDir);
180 ITunesDataProvider::ITunesDataProvider(const base::FilePath& library_path)
181 : iapps::IAppsDataProvider(library_path),
182 auto_add_path_(GetAutoAddPath(library_path)),
188 const base::FilePath& library_path,
192 library_path,
iphoto_data_provider.cc 23 IPhotoDataProvider::IPhotoDataProvider(const base::FilePath& library_path)
24 : iapps::IAppsDataProvider(library_path),
30 const base::FilePath& library_path,
34 library_path,
iphoto_file_util_unittest.cc 91 contents["a.jpg"] = library_path().AppendASCII("a.jpg");
98 return library_path().AppendASCII("a.jpg");
108 contents["a.jpg"] = library_path().AppendASCII("orig.jpg");
115 return library_path().AppendASCII("orig.jpg");
itunes_file_util.cc 105 base::FilePath file_path = GetDataProvider()->library_path();
162 if (!base::GetFileInfo(GetDataProvider()->library_path(), &xml_info))
292 *local_file_path = GetDataProvider()->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/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 51 void AddLibrary(const base::FilePath& 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 127 library_path = os.path.relpath(candidate_libraries[0], SYMBOLS_DIR)
128 return '/' + library_path
  /external/v8/src/
log.h 258 void SharedLibraryEvent(const char* library_path,
261 void SharedLibraryEvent(const wchar_t* library_path,

Completed in 248 milliseconds

1 2