Searched defs:size (Results 1 - 25 of 246) sorted by relevance

12345678910

/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/sml/xlt/src/
H A Dxltenccom.c64 * size, the content length
71 Ret_t xltAddToBuffer(const MemPtr_t pContent, MemSize_t size, BufferMgmtPtr_t pBufMgr) argument
76 if ((size + pBufMgr->smlXltWrittenBytes) > pBufMgr->smlXltBufferLen) {
80 "xltAddToBuffer: buffer too small, pContent='%0.30s', size=%ld, pBufMgr->smlXltWrittenBytes=%ld, pBufMgr->smlXltBufferLen=%ld",
82 size,
90 if (!(smlLibMemcpy((void*) pBufMgr->smlXltBufferP, (void*) pContent, (MemSize_t) size))) {
94 "xltAddToBuffer: memCpy failed, pBufMgr->smlXltBufferP=%lX, size=%ld",
96 size
101 pBufMgr->smlXltBufferP += size;
103 pBufMgr->smlXltWrittenBytes += size;
[all...]
/packages/apps/OMA-DM/engine/dmlib/dmengine/oma_toolkit/src/
H A Dxltenccom.c64 * size, the content length
71 Ret_t xltAddToBuffer(const MemPtr_t pContent, MemSize_t size, BufferMgmtPtr_t pBufMgr) argument
76 if ((size + pBufMgr->smlXltWrittenBytes) > pBufMgr->smlXltBufferLen) {
80 "xltAddToBuffer: buffer too small, pContent='%0.30s', size=%ld, pBufMgr->smlXltWrittenBytes=%ld, pBufMgr->smlXltBufferLen=%ld",
82 size,
90 if (!(smlLibMemcpy((void*) pBufMgr->smlXltBufferP, (void*) pContent, (MemSize_t) size))) {
94 "xltAddToBuffer: memCpy failed, pBufMgr->smlXltBufferP=%lX, size=%ld",
96 size
101 pBufMgr->smlXltBufferP += size;
103 pBufMgr->smlXltWrittenBytes += size;
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DIntArray.java34 public int size() { method in class:IntArray
H A DPreferenceGroup.java48 public int size() { method in class:PreferenceGroup
49 return list.size();
/packages/apps/Camera/src/com/android/camera/ui/
H A DPreviewSurfaceView.java42 private void setLayoutSize(int size) { argument
44 if (p.width != size || p.height != size) {
45 p.width = size;
46 p.height = size;
/packages/apps/Camera2/src/com/android/camera/
H A DIntArray.java34 public int size() { method in class:IntArray
/packages/apps/Camera2/src/com/android/camera/util/
H A DSize.java25 * Simple size class until we are 'L' only and can use android.util.Size.
40 ArrayList<Size> converted = new ArrayList<>(sizes.size());
41 for (com.android.ex.camera2.portability.Size size : sizes) {
42 converted.add(new Size(size.width(), size.height()));
52 public Size(android.util.Size size) { argument
53 this.width = size.getWidth();
54 this.height = size.getHeight();
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetSource.java25 public int size(); method in interface:WidgetSource
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DIntArray.java39 public int size() { method in class:IntArray
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/util/
H A DIntArray.java39 public int size() { method in class:IntArray
/packages/apps/LegacyCamera/src/com/android/camera/
H A DIntArray.java34 public int size() { method in class:IntArray
H A DPreferenceGroup.java48 public int size() { method in class:PreferenceGroup
49 return list.size();
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_persist/src/
H A DdmBufferReader.cc19 DMBufferReader::DMBufferReader(UINT8 * pBuffer, UINT32 size) argument
22 m_nSize = size;
H A DdmBufferWriter.cc34 DMBufferWriter::Allocate(UINT32 size) argument
36 m_pBuffer = (UINT8*)DmAllocMem(size);
40 memset(m_pBuffer,0,size);
41 m_nSize = size;
/packages/apps/OMA-DM/engine/dmlib/dmengine/dm_util/hdr/
H A Ddmbuffer.h46 UINT8 * assign(const UINT8 * pBuffer, INT32 size);
47 void append(const UINT8 * pBuffer, INT32 size);
49 inline UINT8 * assign(CPCHAR szStr, INT32 size) { return assign((UINT8*)szStr,size); } argument
55 void setSize(UINT32 size);
59 void copyTo(INT32 offset,INT32 size, DMBuffer& pBuffer) const;
/packages/apps/OMA-DM/engine/dmlib/dmtapi/native/src/
H A DdmtAttributes.cc16 INT32 size,
20 Set(name,format,title,type,version,size,timestamp,acl);
42 INT32 size,
47 m_nSize = size;
137 // DESCRIPTION : Set size of the Node
143 void DmtAttributes::SetSize( INT32 size) argument
145 m_nSize = size;
11 DmtAttributes( CPCHAR name, CPCHAR format, CPCHAR title, CPCHAR type, INT32 version, INT32 size, const JemDate& timestamp, const DmtAcl& acl) argument
37 Set( CPCHAR name, CPCHAR format, CPCHAR title, CPCHAR type, INT32 version, INT32 size, const JemDate& timestamp, const DmtAcl& acl) argument
/packages/apps/OMA-DM/engine/dmlib/linux_java/samples/portlib/src/
H A Dxpl_dm_Notifications.cc15 UINT32 size)
19 dm_stat = DmtTreeFactory::ParseUpdateEvent(pData,size,aEventMap);
11 XPL_DM_NotifyTreeUpdate(CPCHAR szTopic, CPCHAR szPath, SYNCML_DM_EVENT_TYPE_T nType, UINT8 * pData, UINT32 size) argument
/packages/apps/OMA-DM/engine/dmlib/tool-src/db_wizard_tool/com/mot/dm/dbtool/
H A DBlockTable.java9 public BlockTable(int size) { argument
10 data = new byte[size];
11 for(int i=0; i< size; i++){
14 this.length = size;
/packages/apps/OMA-DM/engine/xpl/src/
H A Dxpl_dm_Notifications.cc15 UINT32 size)
19 dm_stat = DmtTreeFactory::ParseUpdateEvent(pData,size,aEventMap);
11 XPL_DM_NotifyTreeUpdate(CPCHAR szTopic, CPCHAR szPath, SYNCML_DM_EVENT_TYPE_T nType, UINT8 * pData, UINT32 size) argument
/packages/apps/Settings/src/com/android/settings/search/
H A DSearchIndexableResources.java270 public static int size() { method in class:SearchIndexableResources
271 return sResMap.size();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
H A DSizeFileFilter.java23 * Filters files based on size, can filter either smaller files or
27 * current directory whose size is greater than 1 MB:
43 /** The size threshold. */
44 private final long size; field in class:SizeFileFilter
49 * Constructs a new size file filter for files equal to or
50 * larger than a certain size.
52 * @param size the threshold size of the files
53 * @throws IllegalArgumentException if the size is negative
55 public SizeFileFilter(long size) { argument
68 SizeFileFilter(long size, boolean acceptLarger) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DDomainList.java47 public int size() { method in class:DomainList
48 return domains.size();
54 * @throws IndexOutOfBoundsException If index is &lt; 0 or &gt;= size().
57 if (0 > index || size() <= index)
68 for (int i = 0; i < domains.size(); i++) {
71 if (i + 1 < domains.size())
H A DMailboxList.java47 public int size() { method in class:MailboxList
48 return mailboxes.size();
55 if (0 > index || size() <= index)
65 for (int i = 0; i < size(); i++) {
/packages/experimental/Bummer/src/com/android/dreams/bummer/
H A DBummer.java32 public float size = 20.0f; field in class:Bummer
48 mApology.setTextSize(size);
/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dbyte_array_view.h34 ReadOnlyByteArrayView(const uint8_t *const ptr, const size_t size) argument
35 : mPtr(ptr), mSize(size) {}
37 AK_FORCE_INLINE size_t size() const { function in class:latinime::ReadOnlyByteArrayView
59 ReadWriteByteArrayView(uint8_t *const ptr, const size_t size) argument
60 : mPtr(ptr), mSize(size) {}
62 AK_FORCE_INLINE size_t size() const { function in class:latinime::ReadWriteByteArrayView

Completed in 7618 milliseconds

12345678910