/external/chromium_org/cc/output/ |
gl_frame_data.h | 12 #include "gpu/command_buffer/common/mailbox.h" 23 gpu::Mailbox mailbox; member in class:cc::GLFrameData
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
MailboxList.java | 25 * An immutable, random-access list of Mailbox objects.
34 * @param mailboxes An ArrayList that contains only Mailbox objects.
54 public Mailbox get(int index) {
57 return (Mailbox)mailboxes.get(index);
61 * Dumps a representation of this mailbox list to
66 Mailbox mailbox = get(i);
local 67 System.out.println(mailbox.toString());
|
/external/chromium_org/content/browser/aura/ |
owned_mailbox.h | 7 #include "gpu/command_buffer/common/mailbox.h" 13 // This class holds a texture id and gpu::Mailbox, and deletes the texture 23 const gpu::Mailbox& mailbox() const { return mailbox_; } function in class:content::OwnedMailbox 36 gpu::Mailbox mailbox_;
|
/external/smack/src/org/xbill/DNS/ |
RPRecord.java | 19 private Name mailbox; field in class:RPRecord 31 * @param mailbox The responsible person 35 RPRecord(Name name, int dclass, long ttl, Name mailbox, Name textDomain) { 38 this.mailbox = checkName("mailbox", mailbox); 44 mailbox = new Name(in); 50 mailbox = st.getName(origin); 58 sb.append(mailbox); 64 /** Gets the mailbox address of the RP Record * [all...] |
/external/chromium_org/cc/resources/ |
transferable_resource.h | 13 #include "gpu/command_buffer/common/mailbox.h" 37 gpu::Mailbox mailbox; member in struct:cc::TransferableResource
|
video_resource_updater.cc | 181 gpu::Mailbox mailbox; local 188 mailbox = recycled_resources_[i].mailbox; 203 DCHECK(mailbox.IsZero()); 210 GLC(gl, gl->GenMailboxCHROMIUM(mailbox.name)); 211 if (mailbox.IsZero()) { 218 GLC(gl, gl->ProduceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name)); 232 DCHECK(software_compositor || !mailbox.IsZero()); 236 mailbox)); [all...] |
video_resource_updater.h | 80 gpu::Mailbox mailbox; member in struct:cc::VideoResourceUpdater::PlaneResource 85 gpu::Mailbox mailbox) 89 mailbox(mailbox) {} 103 gpu::Mailbox mailbox; member in struct:cc::VideoResourceUpdater::RecycleResourceData
|
/external/chromium_org/content/renderer/gpu/ |
mailbox_output_surface.h | 22 // are sent to the browser through the mailbox extension. 53 const gpu::Mailbox& mailbox, 55 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {} 58 gpu::Mailbox mailbox; member in struct:content::MailboxOutputSurface::TransferableFrame
|
/external/chromium_org/gpu/command_buffer/service/ |
mailbox_manager.h | 14 #include "gpu/command_buffer/common/mailbox.h" 36 // Generate a unique unguessable mailbox name. 37 void GenerateMailbox(Mailbox* mailbox); 39 // Look up the texture definition from the named mailbox. 40 Texture* ConsumeTexture(unsigned target, const Mailbox& mailbox); 42 // Put the texture into the named mailbox. 44 const Mailbox& mailbox, 67 Mailbox mailbox; member in struct:gpu::gles2::MailboxManager::TargetName [all...] |
mailbox_synchronizer.h | 8 #include "gpu/command_buffer/common/mailbox.h" 34 // Create a texture from a globally visible mailbox. 35 Texture* CreateTextureFromMailbox(unsigned target, const Mailbox& mailbox); 46 TargetName(unsigned target, const Mailbox& mailbox); 57 Mailbox mailbox; member in struct:gpu::gles2::MailboxSynchronizer::TargetName
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/ |
MailboxField.java | 27 import org.apache.james.mime4j.field.address.Mailbox;
32 private final Mailbox mailbox;
field in class:MailboxField 35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) {
37 this.mailbox = mailbox;
41 public Mailbox getMailbox() {
42 return mailbox;
53 Mailbox mailbox = null; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_old_mailbox.py | 2 # in mailbox.py (the ones without write support). 4 import mailbox namespace 28 # create a new maildir mailbox to work with: 65 """Test an empty maildir mailbox""" 67 self.mbox = mailbox.Maildir(test_support.TESTFN) 74 self.mbox = mailbox.Maildir(test_support.TESTFN) 84 self.mbox = mailbox.Maildir(test_support.TESTFN) 95 self.mbox = mailbox.Maildir(test_support.TESTFN) 112 for msg in mailbox.PortableUnixMailbox(f, 121 # create a new maildir mailbox to work with [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_old_mailbox.py | 2 # in mailbox.py (the ones without write support). 4 import mailbox namespace 28 # create a new maildir mailbox to work with: 65 """Test an empty maildir mailbox""" 67 self.mbox = mailbox.Maildir(test_support.TESTFN) 74 self.mbox = mailbox.Maildir(test_support.TESTFN) 84 self.mbox = mailbox.Maildir(test_support.TESTFN) 95 self.mbox = mailbox.Maildir(test_support.TESTFN) 112 for msg in mailbox.PortableUnixMailbox(f, 121 # create a new maildir mailbox to work with [all...] |
/external/chromium_org/content/browser/renderer_host/ |
software_frame_manager_unittest.cc | 225 cc::TextureMailbox mailbox; local 228 &mailbox, &callback);
|
/external/chromium_org/gpu/command_buffer/tests/ |
gl_texture_mailbox_unittests.cc | 10 #include "gpu/command_buffer/common/mailbox.h" 160 GLbyte mailbox[GL_MAILBOX_SIZE_CHROMIUM]; local 161 glGenMailboxCHROMIUM(mailbox); 163 glProduceTextureCHROMIUM(GL_TEXTURE_2D, mailbox); 172 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox); 222 // The mailbox should still exist too. 226 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox); 234 // Mailbox should be gone now. 237 glConsumeTextureCHROMIUM(GL_TEXTURE_2D, mailbox); 245 Mailbox mailbox local 296 Mailbox mailbox[2]; local [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
DrawingBufferTest.cpp | 80 virtual void genMailboxCHROMIUM(WGC3Dbyte* mailbox) 84 memset(mailbox, m_currentMailboxByte, sizeof(temp.name)); 87 virtual void produceTextureCHROMIUM(WGC3Denum target, const WGC3Dbyte* mailbox) 136 blink::WebExternalTextureMailbox mailbox; local 137 EXPECT_FALSE(m_drawingBuffer->prepareMailbox(&mailbox, 0)); 142 blink::WebExternalTextureMailbox mailbox; local 147 // Produce one mailbox at size 100x100. 149 EXPECT_TRUE(m_drawingBuffer->prepareMailbox(&mailbox, 0)); 154 m_drawingBuffer->mailboxReleased(mailbox); 156 // Produce a mailbox at this size [all...] |
/packages/apps/Exchange/tests/src/com/android/exchange/adapter/ |
SyncAdapterTestCase.java | 25 import com.android.emailcommon.provider.Mailbox; 40 public Mailbox mMailbox; 80 Mailbox mailbox = new Mailbox(); local 81 mailbox.mId = -1; 82 return getTestService(mAccount, mailbox); 85 EasSyncService getTestService(Account account, Mailbox mailbox) { 88 service.mMailbox = mailbox; [all...] |
/external/chromium_org/cc/layers/ |
texture_layer.h | 38 const TextureMailbox& mailbox() const { return mailbox_; } function in class:cc::TextureLayer::MailboxHolder 50 const TextureMailbox& mailbox, 57 explicit MailboxHolder(const TextureMailbox& mailbox, 88 // Used when mailbox names are specified instead of texture IDs. 128 // Code path for plugins which supply their own mailbox. 130 void SetTextureMailbox(const TextureMailbox& mailbox, 150 const TextureMailbox& mailbox,
|
texture_layer.cc | 135 const TextureMailbox& mailbox, 139 DCHECK(!mailbox.IsValid() || !holder_ref_ || 140 !mailbox.Equals(holder_ref_->holder()->mailbox())); 141 DCHECK_EQ(mailbox.IsValid(), !!release_callback); 143 // If we never commited the mailbox, we need to release it here. 144 if (mailbox.IsValid()) 145 holder_ref_ = MailboxHolder::Create(mailbox, release_callback.Pass()); 155 // The active frame needs to be replaced and the mailbox returned before the 161 const TextureMailbox& mailbox, 221 TextureMailbox mailbox; local [all...] |
/external/chromium_org/media/base/ |
video_frame_unittest.cc | 227 gpu::Mailbox(), 244 // destroyed with the new sync point, when the mailbox is accessed by a caller. 248 gpu::Mailbox mailbox; local 249 mailbox.name[0] = 50; 256 mailbox, 269 EXPECT_EQ(mailbox.name[0], mailbox_holder->mailbox().name[0]);
|
video_frame.h | 11 #include "gpu/command_buffer/common/mailbox.h" 60 // mailbox with sync_point(), and should call Resync() with a new sync point 61 // to ensure the mailbox remains valid for the issued commands. 68 MailboxHolder(const gpu::Mailbox& mailbox, 73 const gpu::Mailbox& mailbox() const { return mailbox_; } function in class:media::VideoFrame::MailboxHolder 80 gpu::Mailbox mailbox_; 227 // Returns the mailbox of the native texture wrapped by this frame. Only 229 // mailbox, the caller must wait for the included sync point [all...] |
/packages/apps/Email/tests/src/com/android/emailcommon/utility/ |
UtilityMediumTests.java | 31 import com.android.emailcommon.provider.Mailbox; 101 Mailbox mailbox = local 102 ProviderTestUtils.setupMailbox("mailbox", account.mId, true, mMockContext); 103 Message message = ProviderTestUtils.setupMessage("foo", account.mId, mailbox.mId, false,
|
/external/chromium_org/cc/test/ |
layer_tree_pixel_test.cc | 378 gpu::Mailbox mailbox; local 379 context3d->genMailboxCHROMIUM(mailbox.name); 380 context3d->produceTextureCHROMIUM(GL_TEXTURE_2D, mailbox.name); 384 *texture_mailbox = TextureMailbox(mailbox, sync_point);
|
/external/chromium_org/cc/trees/ |
layer_tree_host_unittest_copyrequest.cc | 760 TextureMailbox mailbox; local 762 result->TakeTexture(&mailbox, &release); 792 TextureMailbox mailbox; local 794 result->TakeTexture(&mailbox, &release); 806 gpu::Mailbox mailbox; variable 807 external_context_provider_->Context3d()->genMailboxCHROMIUM(mailbox.name); 809 request->SetTextureMailbox(TextureMailbox(mailbox, sync_point_));
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/ |
DrawingBuffer.h | 69 blink::WebExternalTextureMailbox mailbox; member in struct:WebCore::DrawingBuffer::MailboxInfo
|