HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 451 - 475 of 2823) sorted by null

<<11121314151617181920>>

  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableSet_CustomFieldSerializer.java 30 EmptyImmutableSet instance) {
35 return EmptyImmutableSet.INSTANCE;
39 EmptyImmutableSet instance) {
NaturalOrdering_CustomFieldSerializer.java 30 NaturalOrdering instance) {
35 return NaturalOrdering.INSTANCE;
39 NaturalOrdering instance) {
ReverseNaturalOrdering_CustomFieldSerializer.java 31 ReverseNaturalOrdering instance) {
36 return ReverseNaturalOrdering.INSTANCE;
40 ReverseNaturalOrdering instance) {
UsingToStringOrdering_CustomFieldSerializer.java 30 UsingToStringOrdering instance) {
35 return UsingToStringOrdering.INSTANCE;
39 UsingToStringOrdering instance) {
  /external/llvm/include/llvm/MC/
MCLabel.h 27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance;
32 MCLabel(unsigned instance)
33 : Instance(instance) {}
38 /// getInstance - Get the current instance of this Directional Local Label.
39 unsigned getInstance() const { return Instance; }
41 /// incInstance - Increment the current instance of this Directional Local
43 unsigned incInstance() { return ++Instance; }
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
Base64FileUrlEncoder.java 30 private static Base64FileUrlEncoder instance = new Base64FileUrlEncoder(); field in class:Base64FileUrlEncoder
37 return instance;
  /external/webrtc/src/system_wrappers/interface/
static_instance.h 40 static T* volatile instance = NULL; local
70 instance = T::CreateInstance();
72 T* old_instance = instance;
73 instance = NULL;
96 // The instance has been destroyed by some other thread. Rollback.
102 if (instance == NULL) {
113 // updated just yet (that's done when the instance is created).
126 // Create instance and let whichever thread finishes first assign its
127 // local copy to the global instance. All other threads reclaim their
131 InterlockedExchangePointer(reinterpret_cast<void* volatile*>(&instance),
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedProvider.java 35 public void onFusedLocationHardwareChange(IFusedLocationHardware instance) {
36 setFusedLocationHardware(new FusedLocationHardware(instance));
45 * @return The IBinder instance associated with the provider.
52 * Sets the FusedLocationHardware instance in the provider..
53 * @param value The instance to set. This can be null in cases where the service connection
  /external/chromium_org/content/renderer/pepper/
pepper_browser_connection.cc 41 PP_Instance instance,
46 instance,
52 void PepperBrowserConnection::DidDeleteInProcessInstance(PP_Instance instance) {
53 Send(new ViewHostMsg_DidDeleteInProcessInstance(instance));
58 PP_Instance instance,
65 routing_id(), child_process_id, params, instance, nested_msgs));
pepper_plugin_instance_impl.h 138 // Returns the PP_Instance uniquely identifying this instance. Guaranteed
159 // Does some pre-destructor cleanup on the instance. This is necessary
160 // because some cleanup depends on the plugin instance still existing (like
188 // Called when the out-of-process plugin implementing this instance crashed.
389 virtual PP_Bool BindGraphics(PP_Instance instance,
391 virtual PP_Bool IsFullFrame(PP_Instance instance) OVERRIDE;
392 virtual const ppapi::ViewData* GetViewData(PP_Instance instance) OVERRIDE;
393 virtual PP_Bool FlashIsFullscreen(PP_Instance instance) OVERRIDE;
394 virtual PP_Var GetWindowObject(PP_Instance instance) OVERRIDE;
395 virtual PP_Var GetOwnerElementObject(PP_Instance instance) OVERRIDE
    [all...]
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_pdf.idl 76 [in] PP_Instance instance,
81 [in] PP_Instance instance,
90 [in] PP_Instance instance,
107 [in] PP_Instance instance,
119 [in] PP_Instance instance);
121 [in] PP_Instance instance);
127 [in] PP_Instance instance,
140 [in] PP_Instance instance);
147 [in] PP_Instance instance,
152 [in] PP_Instance instance);
    [all...]
  /external/chromium_org/ppapi/proxy/
net_address_resource.cc 18 PP_Instance instance,
20 : PluginResource(connection, instance) {
27 PP_Instance instance,
29 : PluginResource(connection, instance) {
36 PP_Instance instance,
38 : PluginResource(connection, instance) {
ppp_pdf_proxy.cc 17 PP_Var GetLinkAtPosition(PP_Instance instance, PP_Point point) {
22 void Transform(PP_Instance instance, PP_PrivatePageTransformType type) {
24 HostDispatcher::GetForInstance(instance)->Send(
25 new PpapiMsg_PPPPdf_Rotate(API_ID_PPP_PDF, instance, clockwise));
68 void PPP_Pdf_Proxy::OnPluginMsgRotate(PP_Instance instance, bool clockwise) {
73 CallWhileUnlocked(ppp_pdf_->Transform, instance, type);
  /external/chromium_org/ppapi/tests/
test_console.cc 15 TestConsole::TestConsole(TestingInstance* instance)
16 : TestCase(instance),
33 PP_Instance instance,
37 console_interface_->Log(instance, PP_LOGLEVEL_ERROR,
39 console_interface_->LogWithSource(instance, PP_LOGLEVEL_LOG,
51 PP_Instance pp_instance = instance()->pp_instance();
test_message_handler.cc 20 #include "ppapi/cpp/instance.h"
47 explicit EchoingMessageHandler(TestingInstance* instance,
49 : testing_instance_(instance),
52 test_finished_event_(instance->pp_instance()),
53 destroy_event_(instance->pp_instance()) {
110 virtual void HandleMessage(pp::InstanceHandle instance, const pp::Var& var) {
113 if (instance.pp_instance() != testing_instance_->pp_instance())
114 AddError("HandleMessage was passed the wrong instance!");
121 virtual pp::Var HandleBlockingMessage(pp::InstanceHandle instance,
125 if (instance.pp_instance() != testing_instance_->pp_instance()
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_audio_thunk.cc 19 PP_Resource Create_1_0(PP_Instance instance,
24 EnterResourceCreation enter(instance);
27 return enter.functions()->CreateAudio1_0(instance,
33 PP_Resource Create(PP_Instance instance,
38 EnterResourceCreation enter(instance);
41 return enter.functions()->CreateAudio(instance,
ppb_broker_thunk.cc 18 PP_Resource CreateTrusted(PP_Instance instance) {
19 EnterResourceCreation enter(instance);
22 return enter.functions()->CreateBroker(instance);
47 PP_Instance instance = 0; local
52 instance = enter_resource.resource()->pp_instance();
54 EnterInstanceAPI<PPB_Broker_Instance_API> enter_instance(instance);
  /external/chromium_org/chrome/installer/util/
language_selector_unittest.cc 36 installer::LanguageSelector instance; local
37 EXPECT_FALSE(instance.matched_candidate().empty());
46 installer::LanguageSelector instance(
50 EXPECT_EQ(L"fr", instance.matched_candidate());
56 installer::LanguageSelector instance(
60 EXPECT_EQ(L"en-us", instance.matched_candidate());
66 installer::LanguageSelector instance(
70 EXPECT_EQ(L"zh-SG", instance.matched_candidate());
80 installer::LanguageSelector instance(
82 EXPECT_EQ(GetParam(), instance.matched_candidate())
168 installer::LanguageSelector instance; local
    [all...]
  /external/chromium_org/mojo/examples/pepper_container_app/
mojo_ppapi_globals.cc 87 PP_Instance MojoPpapiGlobals::AddInstance(PluginInstance* instance) {
89 plugin_instance_ = instance;
94 void MojoPpapiGlobals::InstanceDeleted(PP_Instance instance) {
95 DCHECK_EQ(instance, kInstanceId);
97 resource_tracker_.DidDeleteInstance(instance);
101 PluginInstance* MojoPpapiGlobals::GetInstance(PP_Instance instance) {
102 if (instance == kInstanceId)
121 PP_Instance instance) {
122 if (instance == kInstanceId && plugin_instance_)
127 void MojoPpapiGlobals::LogWithSource(PP_Instance instance,
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_file.cc 38 PP_FileHandle FileModuleLocal::OpenFile(const InstanceHandle& instance,
45 OpenFile(instance.pp_instance(), path.c_str(), mode, &file_handle);
51 bool FileModuleLocal::RenameFile(const InstanceHandle& instance,
57 RenameFile(instance.pp_instance(), path_from.c_str(), path_to.c_str());
63 bool FileModuleLocal::DeleteFileOrDir(const InstanceHandle& instance,
69 DeleteFileOrDir(instance.pp_instance(), path.c_str(),
76 bool FileModuleLocal::CreateDir(const InstanceHandle& instance,
81 CreateDir(instance.pp_instance(), path.c_str());
87 bool FileModuleLocal::QueryFile(const InstanceHandle& instance,
93 QueryFile(instance.pp_instance(), path.c_str(), info)
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
gtk2_signal_registrar.cc 32 glong Gtk2SignalRegistrar::Connect(gpointer instance,
36 return ConnectInternal(instance, detailed_signal, signal_handler, data,
40 glong Gtk2SignalRegistrar::ConnectAfter(gpointer instance,
44 return ConnectInternal(instance, detailed_signal, signal_handler, data, true);
47 glong Gtk2SignalRegistrar::ConnectInternal(gpointer instance,
52 GObject* object = G_OBJECT(instance);
63 g_signal_connect_after(instance, detailed_signal, signal_handler, data) :
64 g_signal_connect(instance, detailed_signal, signal_handler, data);
81 void Gtk2SignalRegistrar::DisconnectAll(gpointer instance) {
82 GObject* object = G_OBJECT(instance);
    [all...]
  /external/chromium_org/ppapi/api/dev/
ppb_url_util_dev.idl 93 * URL of the document containing the given plugin instance.
101 [in] PP_Instance instance,
112 * Checks whether the document hosting the given plugin instance can access
114 * PP_FALSE if the instance or the URL is invalid.
116 PP_Bool DocumentCanRequest([in] PP_Instance instance, [in] PP_Var url);
119 * Checks whether the document containing the |active| plugin instance can
120 * access the document containing the |target| plugin instance according to
135 PP_Var GetDocumentURL([in] PP_Instance instance,
148 PP_Var GetPluginInstanceURL([in] PP_Instance instance,
160 PP_Var GetPluginReferrerURL([in] PP_Instance instance,
    [all...]
  /external/valgrind/main/drd/tests/
thread_name.stderr.exp 3 thread_func instance 1
5 Thread 2 (thread_func instance 1):
12 thread_func instance 2
14 Thread 3 (thread_func instance 2):
21 thread_func instance 3
23 Thread 4 (thread_func instance 3):
30 thread_func instance 4
32 Thread 5 (thread_func instance 4):
39 thread_func instance 5
41 Thread 6 (thread_func instance 5)
    [all...]
  /external/chromium_org/third_party/npapi/bindings/
npfunctions.h 51 typedef NPError (* NP_LOADDS NPP_NewProcPtr)(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char* argn[], char* argv[], NPSavedData* saved);
52 typedef NPError (* NP_LOADDS NPP_DestroyProcPtr)(NPP instance, NPSavedData** save);
53 typedef NPError (* NP_LOADDS NPP_SetWindowProcPtr)(NPP instance, NPWindow* window);
54 typedef NPError (* NP_LOADDS NPP_NewStreamProcPtr)(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);
55 typedef NPError (* NP_LOADDS NPP_DestroyStreamProcPtr)(NPP instance, NPStream* stream, NPReason reason);
56 typedef int32_t (* NP_LOADDS NPP_WriteReadyProcPtr)(NPP instance, NPStream* stream);
57 typedef int32_t (* NP_LOADDS NPP_WriteProcPtr)(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer);
58 typedef void (* NP_LOADDS NPP_StreamAsFileProcPtr)(NPP instance, NPStream* stream, const char* fname);
59 typedef void (* NP_LOADDS NPP_PrintProcPtr)(NPP instance, NPPrint* platformPrint);
60 typedef int16_t (* NP_LOADDS NPP_HandleEventProcPtr)(NPP instance, void* event)
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
url_util_dev.cc 78 const InstanceHandle& instance,
84 instance.pp_instance(),
91 instance.pp_instance(),
115 bool URLUtil_Dev::DocumentCanRequest(const InstanceHandle& instance,
120 instance.pp_instance(),
126 instance.pp_instance(),
150 Var URLUtil_Dev::GetDocumentURL(const InstanceHandle& instance,
155 instance.pp_instance(),
161 instance.pp_instance(),
167 Var URLUtil_Dev::GetPluginInstanceURL(const InstanceHandle& instance,
    [all...]

Completed in 403 milliseconds

<<11121314151617181920>>