HomeSort by relevance Sort by last modified time
    Searched full:size (Results 526 - 550 of 15447) sorted by null

<<21222324252627282930>>

  /external/webkit/WebCore/platform/qt/
SharedBufferQt.cpp 44 result->m_buffer.resize(file.size());
45 if (result->m_buffer.size() != file.size())
48 result->m_size = result->m_buffer.size();
50 file.read(result->m_buffer.data(), result->m_buffer.size());
  /external/webkit/WebCore/storage/
SQLResultSetRowList.cpp 38 if (m_result.size() == 0)
41 ASSERT(m_result.size() % m_columns.size() == 0);
43 return m_result.size() / m_columns.size();
  /external/webkit/WebKitTools/QueueStatusServer/stylesheets/
dashboard.css 10 font-size: 14pt;
19 font-size: 9pt;
39 font-size: 9pt;
50 font-size: 8pt;
55 font-size: 9pt;
  /frameworks/base/include/utils/
Flattenable.h 30 // size in bytes of the flattened object
37 // size should be at least of getFlattenedSize()
41 virtual status_t flatten(void* buffer, size_t size,
45 // size should be equal to the value of getFlattenedSize() when the
51 virtual status_t unflatten(void const* buffer, size_t size,
  /frameworks/base/libs/binder/
MemoryBase.cpp 29 ssize_t offset, size_t size)
30 : mSize(size), mOffset(offset), mHeap(heap)
34 sp<IMemoryHeap> MemoryBase::getMemory(ssize_t* offset, size_t* size) const
37 if (size) *size = mSize;
  /frameworks/base/opengl/tools/glgen/specs/jsr239/
glspec-1.1 2 void glBufferData ( GLenum target, GLsizeiptr size, const GLvoid *data, GLenum usage )
3 void glBufferSubData ( GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid *data )
7 void glColorPointer ( GLint size, GLenum type, GLsizei stride, GLint offset )
35 void glTexCoordPointer ( GLint size, GLenum type, GLsizei stride, GLint offset )
42 void glVertexPointer ( GLint size, GLenum type, GLsizei stride, GLint offset )
  /frameworks/base/services/java/com/android/server/status/
NotificationViewList.java 32 final int N = list.size();
43 final int ongoingSize = mOngoing.size();
44 final int latestSize = mLatest.size();
74 int N = mOngoing.size();
80 N = mLatest.size();
101 final int N = list.size();
129 for (int i=list.size()-1; i>=0; i--) {
145 int N = mOngoing.size();
149 N = mLatest.size();
156 return mOngoing.size();
171 int size() { method in class:NotificationViewList
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 66 FT_Long cur_size; /* current cumulative allocated size */
67 FT_Long max_size; /* maximum cumulative allocated size */
68 FT_Long all_size; /* total cumulative allocated size */
70 FT_Long cur_max; /* current maximum allocated size */
87 * FreeType are never released to the system. Instead, their `size'
88 * field is set to -size. This is mainly useful to detect double frees,
94 FT_Long size; /* < 0 if the block was freed */ member in struct:FT_MemNodeRec_
114 FT_ULong size; member in struct:FT_MemTableRec_
227 FT_Long size )
234 block = table->alloc( memory, size );
    [all...]
ftstream.c 37 FT_ULong size )
40 stream->size = size;
68 " invalid i/o; pos = 0x%lx, size = 0x%lx\n",
69 pos, stream->size ));
75 else if ( pos > stream->size )
78 " invalid i/o; pos = 0x%lx, size = 0x%lx\n",
79 pos, stream->size ));
128 if ( pos >= stream->size )
131 " invalid i/o; pos = 0x%lx, size = 0x%lx\n"
    [all...]
  /external/qemu/hw/
goldfish_nand.c 61 uint64_t size; member in struct:__anon4743
156 static int do_read(int fd, void* buf, size_t size)
160 ret = read(fd, buf, size);
166 static int do_write(int fd, const void* buf, size_t size)
170 ret = write(fd, buf, size);
263 uint32_t size; local
268 size = s->transfer_size;
275 if(size > dev->devname_len)
276 size = dev->devname_len;
277 cpu_memory_rw_debug(cpu_single_env, s->data, dev->devname, size, 1)
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
NullReader.java 25 * a reader of a specified size.
46 * public TestReader(int size) {
47 * super(size);
65 private long size; field in class:NullReader
74 * Create a {@link Reader} that emulates a specified size
77 * @param size The size of the reader to emulate.
79 public NullReader(long size) {
80 this(size, true, false);
85 * size with option settings.
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 15 assertEquals(0, prop.getParameterNames().size());
17 assertEquals(1, prop.getParameterNames().size());
19 assertEquals(1, prop.getParameterNames().size());
21 assertEquals(2, prop.getParameterNames().size());
23 assertEquals(2, prop.getParameterNames().size());
25 assertEquals(3, prop.getParameterNames().size());
78 assertEquals(2, component.getPropertyNames().size());
80 assertEquals(2, prop1.getParameterNames().size());
84 assertEquals(2, props.size());
105 assertEquals(1, component.getComponents().size());
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
LinkedHashMapTest.java 63 return size() > 5;
74 public int size() { method in class:LinkedHashMapTest.MockMapNull
93 assertEquals("Created incorrect LinkedHashMap", 0, hm2.size());
108 assertEquals("Created incorrect LinkedHashMap", 0, hm2.size());
134 assertEquals("Created incorrect LinkedHashMap", 0, hm2.size());
283 assertTrue("Returned set of incorrect size", hm.size() == s.size());
304 assertTrue("Returned set of incorrect size()", s.size() == hm.size())
395 int size = hm.size(); local
    [all...]
  /external/astl/tests/
test_uninitialized.cpp 47 const int size = ARRAYSIZE(src); local
49 EXPECT_TRUE(uninitialized_copy(src, src + size, dest) == dest);
53 const int size = ARRAYSIZE(src); local
54 int dest[size] = {0, };
56 EXPECT_TRUE(uninitialized_copy(src, src + size, dest) == dest + size);
58 EXPECT_TRUE(std::equal(src, src + size, dest));
135 const int size = ARRAYSIZE(src); local
136 char dest[size];
138 uninitialized_fill(dest, dest + size, 'a')
147 const int size = ARRAYSIZE(src); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dblist.c 57 static errcode_t make_dblist(ext2_filsys fs, ext2_ino_t size, ext2_ino_t count,
78 if (size)
79 dblist->size = size;
81 retval = ext2fs_get_num_dirs(fs, &dblist->size);
84 dblist->size = (dblist->size * 2) + 12;
86 len = (size_t) sizeof(struct ext2_db_entry) * dblist->size;
88 retval = ext2fs_get_array(dblist->size, sizeof(struct ext2_db_entry),
137 retval = make_dblist(src->fs, src->size, src->count, src->list
    [all...]
  /external/iproute2/man/man8/
tc-red.8 22 Random Early Detection is a classless qdisc which manages its queue size
37 The goal is the have a small queue size, which is good for interactivity
44 The average queue size is used for determining the marking
48 When the average queue size is below
55 until the average queue size hits
59 is normally not set to 100%, the queue size might
64 parameter is provided to set a hard maximum for the size of the queue.
69 Average queue size at which marking becomes a possibility.
72 At this average queue size, the marking probability is maximal. Should be at
84 Hard limit on the real (not average) queue size in bytes. Further packet
    [all...]
  /external/opencore/protocols/sdp/parser/src/
sdp_mediaparser_registry_populator_pvaddon_incl.cpp 119 memFrag.len = (uint32)rfc3640.size();
123 memFrag.len = (uint32)pcmu.size();
127 memFrag.len = (uint32)pcma.size();
131 memFrag.len = (uint32)rmV.size();
135 memFrag.len = (uint32)rmA.size();
139 memFrag.len = (uint32)h264.size();
143 memFrag.len = (uint32)still.size();
147 memFrag.len = (uint32)author_m4v.size();
151 memFrag.len = (uint32)m4v.size();
155 memFrag.len = (uint32)h263.size();
    [all...]
  /external/webkit/WebCore/platform/network/
FormData.cpp 48 size_t n = m_elements.size();
70 PassRefPtr<FormData> FormData::create(const void* data, size_t size)
73 result->appendData(data, size);
87 result->appendData(vector.data(), vector.size());
102 size_t n = m_elements.size();
118 void FormData::appendData(const void* data, size_t size)
123 size_t oldSize = e.m_data.size();
124 e.m_data.grow(oldSize + size);
125 memcpy(e.m_data.data() + oldSize, data, size);
137 size_t n = m_elements.size();
    [all...]
  /external/webkit/WebCore/platform/wx/
ScrollbarThemeWx.cpp 56 int ScrollbarThemeWx::scrollbarThickness(ScrollbarControlSize size)
112 IntSize size = buttonSize(scrollbar);
118 x += scrollbar->width() - (size.width() * 2) + cMacButtonOverlap;
120 y += scrollbar->height() - (size.height() * 2) + cMacButtonOverlap;
123 return IntRect(x, y, size.width(), size.height());
133 IntSize size = buttonSize(scrollbar);
137 size.setWidth(size.width() + cMacButtonOverlap);
139 x = scrollbar->x() + scrollbar->width() - size.width()
    [all...]
  /frameworks/base/core/jni/android/graphics/
CreateJavaOutputStreamAdaptor.cpp 37 size_t doRead(void* buffer, size_t size) {
42 size_t requested = size;
70 size -= n;
72 } while (size != 0);
77 size_t doSkip(size_t size) {
80 gInputStream_skipMethodID, (jlong)size);
106 virtual size_t read(void* buffer, size_t size) {
109 if (0 == size) {
118 size_t amount = this->doSkip(size);
128 } while (amountSkipped < size);
    [all...]
  /frameworks/base/opengl/libs/GLES_CM/
gl.cpp 42 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
46 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
48 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
52 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
54 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
58 void glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
60 glColorPointer(size, type, stride, ptr);
66 void glTexCoordPointerBounds(GLint size, GLenum type,
68 glTexCoordPointer(size, type, stride, pointer);
70 void glVertexPointerBounds(GLint size, GLenum type
    [all...]
  /frameworks/opt/emoji/
EmojiFactory.cpp 107 size_t size = g_factories->size(); local
108 for (size_t i = 0; i < size; ++i) {
125 size_t size = g_factories->size(); local
126 for (size_t i = 0; i < size; ++i) {
133 size_t size = g_handles->size(); local
134 for (size_t i = 0; i < size; ++i) {
153 size_t size = g_factories->size() local
166 size_t size = g_factories->size(); local
    [all...]
  /hardware/msm7k/libgralloc/
mapper.cpp 59 size_t size = hnd->size; local
61 size += hnd->offset;
63 void* mappedAddress = mmap(0, size,
72 //LOGD("gralloc_map() succeeded fd=%d, off=%d, size=%d, vaddr=%p",
73 // hnd->fd, hnd->offset, hnd->size, mappedAddress);
85 size_t size = hnd->size; local
88 size += hnd->offset;
90 //LOGD("unmapping from %p, size=%d, flags=%08x", base, size, hnd->flags)
214 size_t size = va_arg(args, size_t); local
    [all...]
  /external/opencore/fileformats/mp4/parser/src/
userdataatom.cpp 64 UserDataAtom::UserDataAtom(MP4_FF_FILE *fp, uint32 size, uint32 type)
65 : Atom(fp, size, type)
450 for (uint32 i = 0; i < _pCopyRightAtomArray->size(); i++)
459 for (uint32 i = 0; i < _pAssetInfoTitleAtomArray->size(); i++)
468 for (uint32 i = 0; i < _pAssetInfoDescAtomArray->size(); i++)
477 for (uint32 i = 0; i < _pAssetInfoPerformerAtomArray->size(); i++)
486 for (uint32 i = 0; i < _pAssetInfoAuthorAtomArray->size(); i++)
495 for (uint32 i = 0; i < _pAssetInfoGenreAtomArray->size(); i++)
504 for (uint32 i = 0; i < _pAssetInfoRatingAtomArray->size(); i++)
513 for (uint32 i = 0; i < _pAssetInfoClassificationAtomArray->size(); i++
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/5/changes/
alldiffs_index_additions.html 47 <div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:.5em;">
53 <a href="#A"><font size="-2">A</font></a>
54 <a href="#B"><font size="-2">B</font></a>
55 <a href="#C"><font size="-2">C</font></a>
56 <a href="#D"><font size="-2">D</font></a>
57 <a href="#E"><font size="-2">E</font></a>
58 <a href="#F"><font size="-2">F</font></a>
59 <a href="#G"><font size="-2">G</font></a>
60 <a href="#H"><font size="-2">H</font></a>
61 <a href="#I"><font size="-2">I</font></a>
    [all...]

Completed in 277 milliseconds

<<21222324252627282930>>