/external/chromium_org/cc/resources/ |
texture_mailbox.cc | 18 TextureMailbox::TextureMailbox(const std::string& mailbox_name) 22 if (!mailbox_name.empty()) { 23 CHECK(mailbox_name.size() == sizeof(name_.name)); 24 name_.SetName(reinterpret_cast<const int8*>(mailbox_name.data())); 28 TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox_name) 32 name_.SetName(mailbox_name.name); 35 TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox_name, 40 name_.SetName(mailbox_name.name); 43 TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox_name, 49 name_.SetName(mailbox_name.name) [all...] |
texture_mailbox.h | 23 explicit TextureMailbox(const std::string& mailbox_name); 24 explicit TextureMailbox(const gpu::Mailbox& mailbox_name); 25 TextureMailbox(const gpu::Mailbox& mailbox_name, 27 TextureMailbox(const gpu::Mailbox& mailbox_name,
|
resource_provider_unittest.cc | 113 void ProduceTexture(const GLbyte* mailbox_name, 117 memcpy(&mailbox, mailbox_name, sizeof(mailbox)); 124 scoped_refptr<TestTexture> ConsumeTexture(const GLbyte* mailbox_name, 127 memcpy(&mailbox, mailbox_name, sizeof(mailbox)); [all...] |
/external/chromium_org/content/browser/renderer_host/ |
image_transport_factory_android.h | 40 uint32 texture_id, const signed char* mailbox_name) = 0;
|
image_transport_factory_android.cc | 45 uint32 texture_id, const signed char* mailbox_name) OVERRIDE; 135 uint32 texture_id, const signed char* mailbox_name) { 141 context_->consumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox_name);
|
render_widget_host_view_aura.cc | 336 std::string mailbox_name = texture_to_produce->Produce(); local 337 std::copy(mailbox_name.data(), 338 mailbox_name.data() + mailbox_name.length(), 364 ack.mailbox_name = texture_to_produce->Produce(); 368 ack.mailbox_name = received_mailbox; [all...] |
render_widget_host_view_aura.h | 525 const std::string& mailbox_name, 532 const std::string& mailbox_name, [all...] |
render_widget_host_view_guest.cc | 189 guest_params.mailbox_name = params.mailbox_name;
|
render_widget_host_view_aura_unittest.cc | 796 params.mailbox_name = std::string(64, '1'); 815 post_params.mailbox_name = std::string(64, '1'); [all...] |
/external/chromium_org/content/common/gpu/ |
texture_image_transport_surface.cc | 220 params.mailbox_name.assign( 260 params.mailbox_name.assign( 297 BufferPresentedImpl(params.mailbox_name); 303 params.mailbox_name)); 308 const std::string& mailbox_name) { 324 if (!mailbox_name.empty()) { 325 DCHECK(mailbox_name.length() == GL_MAILBOX_SIZE_CHROMIUM); 326 if (!memcmp(mailbox_name.data(), 328 mailbox_name.length())) {
|
texture_image_transport_surface.h | 77 void BufferPresentedImpl(const std::string& mailbox_name);
|
gpu_messages.h | 55 IPC_STRUCT_MEMBER(std::string, mailbox_name) 69 IPC_STRUCT_MEMBER(std::string, mailbox_name) 82 IPC_STRUCT_MEMBER(std::string, mailbox_name) [all...] |
/external/chromium_org/content/browser/gpu/ |
gpu_process_host_ui_shim.cc | 288 ack_params.mailbox_name = params.mailbox_name; 295 if (!params.mailbox_name.empty() && 296 params.mailbox_name.length() != GL_MAILBOX_SIZE_CHROMIUM) 325 ack_params.mailbox_name = params.mailbox_name; 332 if (!params.mailbox_name.empty() && 333 params.mailbox_name.length() != GL_MAILBOX_SIZE_CHROMIUM)
|
/external/chromium_org/content/browser/aura/ |
no_transport_image_transport_factory.cc | 26 virtual void Consume(const std::string& mailbox_name,
|
gpu_process_transport_factory.cc | 120 virtual void Consume(const std::string& mailbox_name, 122 DCHECK(mailbox_name.size() == GL_MAILBOX_SIZE_CHROMIUM); 123 mailbox_name_ = mailbox_name; 124 if (mailbox_name.empty()) 131 GL_TEXTURE_2D, reinterpret_cast<const GLbyte*>(mailbox_name.c_str()));
|
/external/chromium_org/content/browser/browser_plugin/ |
browser_plugin_guest_manager.h | 121 const std::string& mailbox_name,
|
browser_plugin_guest_manager.cc | 221 const std::string& mailbox_name, 225 mailbox_name,
|
browser_plugin_guest.h | 279 const std::string& mailbox_name, 462 const std::string& mailbox_name,
|
browser_plugin_guest.cc | [all...] |
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin_compositing_helper.cc | 174 std::string mailbox_name(reinterpret_cast<const char*>(mailbox.name.name), 182 mailbox_name, 305 const std::string& mailbox_name, 310 swap_info.name.SetName(reinterpret_cast<const int8*>(mailbox_name.data()));
|
browser_plugin_compositing_helper.h | 62 const std::string& mailbox_name,
|
browser_plugin.cc | 441 params.mailbox_name, [all...] |
/external/chromium_org/content/common/browser_plugin/ |
browser_plugin_messages.h | 91 IPC_STRUCT_MEMBER(std::string, mailbox_name) 238 std::string /* mailbox_name */,
|
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
MailboxSelectionActivity.java | 68 private final int[] VIEW_IDS = { R.id.mailbox_name }; 261 TextView accountView = (TextView) v.findViewById(R.id.mailbox_name);
|
/external/chromium_org/ui/compositor/ |
compositor.h | 118 virtual void Consume(const std::string& mailbox_name,
|