HomeSort by relevance Sort by last modified time
    Searched defs:library (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/chromium_org/chrome/utility/media_galleries/
itunes_library_parser.h 20 // Returns the contents of the given iTunes library XML |file|.
27 const parser::Library& library() { return library_; } function in class:itunes::ITunesLibraryParser
30 parser::Library library_;
  /external/chromium_org/ui/gl/
gl_implementation_linux.cc 18 // Load a library, printing an error message on failure.
21 base::NativeLibrary library = base::LoadNativeLibrary(filename, &error); local
22 if (!library) {
26 return library;
40 base::NativeLibrary library = LoadLibrary(module_path.Append("libosmesa.so")); local
41 if (!library)
46 base::GetFunctionPointerFromNativeLibrary(library,
50 base::UnloadNativeLibrary(library);
55 AddGLNativeLibrary(library);
gl_implementation_android.cc 32 base::NativeLibrary library = base::LoadNativeLibrary(filename, &error); local
33 if (!library) {
37 return library;
gl_implementation_mac.cc 20 "/System/Library/Frameworks/OpenGL.framework/Versions/Current/OpenGL";
60 base::NativeLibrary library = base::LoadNativeLibrary(osmesa_path, NULL); local
61 if (!library) {
69 library, "OSMesaGetProcAddress"));
72 base::UnloadNativeLibrary(library);
77 AddGLNativeLibrary(library);
86 base::NativeLibrary library = base::LoadNativeLibrary( local
88 if (!library) {
93 AddGLNativeLibrary(library);
gl_implementation_x11.cc 58 base::NativeLibrary library = NULL; local
62 library = LoadLibrary(command_line->GetSwitchValueASCII(
65 if (!library) {
67 library = LoadLibrary("libGL.so");
69 library = LoadLibrary("libGL.so.1");
73 if (!library)
79 library, "glXGetProcAddress"));
82 base::UnloadNativeLibrary(library);
87 AddGLNativeLibrary(library);
gl_implementation_win.cc 49 base::NativeLibrary library = local
51 if (!library) {
52 library = base::LoadNativeLibrary(module_path.Append(name), NULL);
53 if (!library) {
90 base::NativeLibrary library = base::LoadNativeLibrary( local
92 if (!library) {
100 library, "OSMesaGetProcAddress"));
103 base::UnloadNativeLibrary(library);
108 AddGLNativeLibrary(library);
138 // Preload library
198 base::NativeLibrary library = base::LoadNativeLibrary( local
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
keyboard_switch_menu.cc 60 InputMethodLibrary* library = CrosLibrary::Get()->GetInputMethodLibrary(); local
62 library->current_input_method().id));
  /external/chromium_org/third_party/freetype/src/base/
ftsynth.c 86 FT_Library library = slot->library; local
135 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
ftglyph.c 26 /* handy for many other simple uses of the library. */
63 FT_Library library = FT_GLYPH( glyph )->library; local
84 error = FT_Bitmap_Copy( library, &slot->bitmap, &glyph->bitmap );
96 FT_Library library = bitmap_source->library; local
104 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap );
112 FT_Library library = FT_GLYPH( glyph )->library; local
115 FT_Bitmap_Done( library, &glyph->bitmap )
161 FT_Library library = FT_GLYPH( glyph )->library; local
203 FT_Library library = FT_GLYPH( source )->library; local
356 FT_Library library; local
519 FT_Library library = FT_GLYPH( glyph )->library; local
    [all...]
  /external/freetype/src/base/
ftsynth.c 87 FT_Library library = slot->library; local
131 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
  /external/harfbuzz/src/
harfbuzz-dump-main.c 4 * This is part of HarfBuzz, an OpenType Layout engine library.
47 FT_Library library; local
58 if ((error = FT_Init_FreeType (&library)))
61 if ((error = FT_New_Face (library, argv[1], 0, &font)))
92 if ((error = FT_Done_FreeType (library)))
  /external/chromium/chrome/browser/chromeos/
sms_observer.cc 28 NetworkLibrary* library = chromeos::CrosLibrary::Get()->GetNetworkLibrary(); local
29 library->RemoveNetworkManagerObserver(this);
33 void SmsObserver::UpdateObservers(NetworkLibrary* library) {
37 const CellularNetworkVector& networks = library->cellular_networks();
86 void SmsObserver::OnNetworkManagerChanged(NetworkLibrary* library) {
87 UpdateObservers(library);
  /external/chromium_org/chrome/browser/chromeos/
sms_observer.cc 24 NetworkLibrary* library = chromeos::NetworkLibrary::Get(); local
25 library->RemoveNetworkManagerObserver(this);
29 void SmsObserver::UpdateObservers(NetworkLibrary* library) {
30 const CellularNetworkVector& networks = library->cellular_networks();
83 void SmsObserver::OnNetworkManagerChanged(NetworkLibrary* library) {
84 UpdateObservers(library);
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftpic.h 51 ft_pic_container_init( FT_Library library ); variable
56 ft_pic_container_destroy( FT_Library library ); variable
  /external/chromium_org/third_party/freetype/src/raster/
ftrend1.c 33 FT_Library library = FT_MODULE_LIBRARY( render ); local
37 library->raster_pool,
38 library->raster_pool_size );
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/
rdfext.asm 11 library alib.rdl label
  /external/freetype/include/freetype/internal/
ftpic.h 55 ft_pic_container_init( FT_Library library ); variable
60 ft_pic_container_destroy( FT_Library library ); variable
  /external/freetype/src/raster/
ftrend1.c 34 FT_Library library = FT_MODULE_LIBRARY( render ); local
38 library->raster_pool,
39 library->raster_pool_size );
  /external/webrtc/src/system_wrappers/source/
rw_lock_win.cc 22 static HMODULE library = NULL; member in namespace:webrtc
50 if(!library)
53 library = LoadLibrary(TEXT("Kernel32.dll"));
54 if(library)
61 library,
66 library,
70 library,
74 library,
78 library,
  /external/chromium/chrome/browser/ui/webui/chromeos/
keyboard_overlay_ui.cc 283 chromeos::InputMethodLibrary* library = local
286 library->current_input_method();
288 library->GetKeyboardOverlayId(descriptor.id);
  /external/chromium_org/third_party/ots/test/
validator-checker.cc 49 FT_Library library; local
50 FT_Error error = FT_Init_FreeType(&library);
57 error = FT_New_Memory_Face(library, trans_font, trans_len, 0, &trans_face);
  /external/freetype/src/autofit/
afmodule.c 185 /* AF_SERVICES_GET derefers `library' in PIC mode */
187 FT_Library library; local
192 library = module->library;
193 if ( !library )
  /device/generic/goldfish/opengl/
common.mk 18 # $(call emugl-begin-static-library,<name>)
23 emugl-begin-static-library = $(call emugl-begin-module,$1,STATIC_LIBRARY)
24 emugl-begin-shared-library = $(call emugl-begin-module,$1,SHARED_LIBRARY)
34 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
57 # $(call emugl-begin-static-library,foo)
63 # $(call emugl-begin-shared-library,bar)
68 # Here, we define a static library named 'foo' which exports an include
69 # path and a shared library requirement, and a shared library 'bar' which
198 # The following function can be called to generate GL library wrappe
    [all...]
  /sdk/emulator/opengl/
common.mk 18 # $(call emugl-begin-static-library,<name>)
23 emugl-begin-host-static-library = $(call emugl-begin-module,$1,HOST_STATIC_LIBRARY,HOST)
24 emugl-begin-host-shared-library = $(call emugl-begin-module,$1,HOST_SHARED_LIBRARY,HOST)
36 $(eval LOCAL_MODULE_CLASS := $(patsubst HOST_%,%,$(patsubst %EXECUTABLE,%EXECUTABLES,$(patsubst %LIBRARY,%LIBRARIES,$2)))) \
59 # $(call emugl-begin-static-library,foo)
65 # $(call emugl-begin-shared-library,bar)
70 # Here, we define a static library named 'foo' which exports an include
71 # path and a shared library requirement, and a shared library 'bar' which
231 # Call this function when your shared library must be placed in a non-standar
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_lib.cc 173 base::NativeLibrary library = 0; local
185 library = base::LoadNativeLibraryDynamically(web_plugin_info_.path);
187 library = base::LoadNativeLibrary(web_plugin_info_.path, &error);
190 library = base::LoadNativeLibrary(web_plugin_info_.path, &error);
193 if (!library) {
203 if (library->bundle_resource_ref != -1)
204 UseResFile(library->bundle_resource_ref);
210 (NP_InitializeFunc)base::GetFunctionPointerFromNativeLibrary(library,
218 library, "NP_GetEntryPoints");
224 (NP_ShutdownFunc)base::GetFunctionPointerFromNativeLibrary(library,
    [all...]

Completed in 600 milliseconds

1 2 3 4 5