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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/ui/base/ime/linux/
linux_input_method_context_factory.cc 18 LinuxInputMethodContextFactory::instance() { function in class:ui::LinuxInputMethodContextFactory
24 const LinuxInputMethodContextFactory* instance) {
25 g_linux_input_method_context_factory = instance;
  /external/chromium_org/ui/gfx/
linux_font_delegate.cc 15 void LinuxFontDelegate::SetInstance(LinuxFontDelegate* instance) {
16 g_linux_font_delegate = instance;
19 const LinuxFontDelegate* LinuxFontDelegate::instance() { function in class:gfx::LinuxFontDelegate
  /external/chromium_org/ui/shell_dialogs/
linux_shell_dialog.cc 15 void LinuxShellDialog::SetInstance(LinuxShellDialog* instance) {
16 g_linux_shell_dialog = instance;
19 const LinuxShellDialog* LinuxShellDialog::instance() { function in class:ui::LinuxShellDialog
  /external/chromium_org/ui/views/controls/menu/
menu_config_mac.cc 18 const MenuConfig& MenuConfig::instance(const ui::NativeTheme* theme) { function in class:views::MenuConfig
20 MenuConfig, mac_instance, (theme ? theme : ui::NativeTheme::instance()));
  /external/chromium_org/ui/views/linux_ui/
linux_ui.cc 19 void LinuxUI::SetInstance(LinuxUI* instance) {
21 g_linux_ui = instance;
22 LinuxInputMethodContextFactory::SetInstance(instance);
23 LinuxFontDelegate::SetInstance(instance);
24 LinuxShellDialog::SetInstance(instance);
25 ui::SetTextEditKeyBindingsDelegate(instance);
28 LinuxUI* LinuxUI::instance() { function in class:views::LinuxUI
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpSocket.java 30 private final Socket instance; field in class:Support_HttpSocket
35 instance = socket;
40 return instance.getInputStream();
45 return instance.getOutputStream();
49 if (!streamOpen && instance != null) {
50 instance.close();
Support_HttpServerSocket.java 30 private ServerSocket instance = null; field in class:Support_HttpServerSocket
45 if (instance == null) {
48 instance.setSoTimeout(timeout);
49 Socket s = instance.accept();
69 instance = new ServerSocket(port);
76 if (instance != null) {
77 instance.close();
Support_URLConnector.java 32 private URLConnection instance; field in class:Support_URLConnector
40 instance = new URL(address).openConnection();
45 ((HttpURLConnection) instance).disconnect();
53 if (instance == null) {
57 return instance.getInputStream();
61 if (instance == null) {
64 instance.setDoOutput(true);
65 ((HttpURLConnection) instance).setRequestMethod("POST");
67 return instance.getOutputStream();
75 instance.setRequestProperty(key, value)
    [all...]
  /art/test/034-call-null/src/
Main.java 25 Main instance = null; local
26 instance.doStuff(0, null, null, null);
  /external/chromium_org/athena/activity/
activity_factory.cc 13 ActivityFactory* instance = NULL; member in namespace:athena::__anon6732
19 DCHECK(!instance);
20 instance = factory;
25 DCHECK(instance);
26 return instance;
31 DCHECK(instance);
32 delete instance;
33 instance = NULL;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimations.h 46 static CompositorAnimations* instance() { return instance(0); } function in class:blink::CompositorAnimations
47 static void setInstanceForTesting(CompositorAnimations* newInstance) { instance(newInstance); }
61 static CompositorAnimations* instance(CompositorAnimations* newInstance) function in class:blink::CompositorAnimations
63 static CompositorAnimations* instance = new CompositorAnimations(); local
65 instance = newInstance;
67 return instance;
  /external/chromium_org/ui/aura/client/
window_stacking_client.cc 12 WindowStackingClient* instance = NULL; member in namespace:aura::client::__anon21193
17 instance = client;
21 return instance;
  /external/chromium_org/ui/wm/public/
transient_window_client.cc 12 TransientWindowClient* instance = NULL; member in namespace:aura::client::__anon21821
17 instance = client;
21 return instance;
  /external/chromium_org/athena/extensions/
extensions_delegate.cc 12 ExtensionsDelegate* instance = NULL; member in namespace:athena::__anon6748
17 DCHECK(!instance);
18 instance = this;
22 DCHECK(instance);
23 instance = NULL;
28 DCHECK(instance);
29 DCHECK_EQ(context, instance->GetBrowserContext());
30 return instance;
35 DCHECK(instance);
36 delete instance;
    [all...]
  /external/chromium_org/content/common/gpu/client/
gpu_memory_buffer_factory_host.cc 11 GpuMemoryBufferFactoryHost* instance = NULL; member in namespace:content::__anon12207
16 return instance;
20 DCHECK(instance == NULL);
21 instance = this;
25 instance = NULL;
  /external/chromium_org/extensions/shell/browser/
desktop_controller.cc 18 DesktopController* DesktopController::instance() { function in class:extensions::DesktopController
  /external/chromium_org/gin/
shell_runner_unittest.cc 25 gin::IsolateHolder instance; local
28 Isolate* isolate = instance.isolate();
  /external/chromium_org/third_party/WebKit/Source/core/page/
InjectedStyleSheets.cpp 33 InjectedStyleSheets& InjectedStyleSheets::instance() function in class:blink::InjectedStyleSheets
35 DEFINE_STATIC_LOCAL(InjectedStyleSheets, instance, ());
36 return instance;
  /external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
ScreenOrientationDispatcher.cpp 12 ScreenOrientationDispatcher& ScreenOrientationDispatcher::instance() function in class:blink::ScreenOrientationDispatcher
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
QuotaTracker.cpp 40 QuotaTracker& QuotaTracker::instance() function in class:blink::QuotaTracker
  /external/chromium_org/ui/native_theme/
native_theme_android.cc 14 NativeTheme* NativeTheme::instance() { function in class:ui::NativeTheme
15 return NativeThemeAndroid::instance();
20 NativeThemeAndroid* NativeThemeAndroid::instance() { function in class:ui::NativeThemeAndroid
  /external/guava/guava-gwt/src/com/google/common/collect/
ImmutableEntry_CustomFieldSerializer.java 32 ImmutableEntry<?, ?> instance) {
43 ImmutableEntry<?, ?> instance) throws SerializationException {
44 writer.writeObject(instance.getKey());
45 writer.writeObject(instance.getValue());
TreeBasedTable_CustomFieldSerializer.java 35 TreeBasedTable<?, ?, ?> instance) {
57 TreeBasedTable<?, ?, ?> instance)
65 writer.writeObject(instance.rowComparator());
66 writer.writeObject(instance.columnComparator());
67 writer.writeObject(instance.backingMap);
  /external/okhttp/android/test/java/com.squareup.okhttp/
ConfigAwareConnectionPoolTest.java 41 ConfigAwareConnectionPool instance = new ConfigAwareConnectionPool(networkEventDispatcher) {}; local
42 assertSame(instance.get(), instance.get());
44 ConnectionPool beforeEventInstance = instance.get();
47 assertNotSame(beforeEventInstance, instance.get());
  /external/chromium_org/ash/test/
test_shelf_delegate.h 32 static TestShelfDelegate* instance() { return instance_; } function in class:ash::test::TestShelfDelegate

Completed in 1117 milliseconds

1 2 3 4 5 6 7 8 91011>>