/external/webkit/WebCore/platform/text/qt/ |
TextCodecQt.cpp | 52 for (int i = 0; i < mibs.size(); ++i) { 58 for (int i = 0; i < aliases.size(); ++i) { 76 for (int i = 0; i < mibs.size(); ++i) { 110 int size = end - buf; local 111 size = qMin(size, MaxInputChunkSize); 112 QString decoded = m_codec->toUnicode(buf, size, &m_state); 114 buf += size;
|
/external/webkit/WebKit/gtk/resources/ |
error.html | 24 font-size: 120%; 29 font-size: 80%;
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
wpabuf.h | 24 size_t size; /* total size of the allocated buffer */ member in struct:wpabuf 45 * wpabuf_size - Get the currently allocated size of a wpabuf buffer 47 * Returns: Currently allocated size of the buffer 51 return buf->size; 65 * wpabuf_tailroom - Get size of available tail room in the end of the buffer 71 return buf->size - buf->used; 148 buf->size = buf->used = len;
|
/frameworks/base/core/java/android/database/ |
CharArrayBuffer.java | 23 public CharArrayBuffer(int size) { 24 data = new char[size];
|
/frameworks/base/media/libstagefright/ |
MediaBuffer.cpp | 38 MediaBuffer::MediaBuffer(void *data, size_t size) 43 mSize(size), 45 mRangeLength(size), 51 MediaBuffer::MediaBuffer(size_t size) 55 mData(malloc(size)), 56 mSize(size), 58 mRangeLength(size), 98 size_t MediaBuffer::size() const { function in class:android::MediaBuffer
|
/frameworks/base/opengl/libagl/ |
BufferObjectManager.cpp | 45 GLsizei n = mBuffers.size(); 63 bo->size = 0; 70 GLsizeiptr size, GLenum usage) 73 if (size != bo->size) { 74 uint8_t* data = (uint8_t*)malloc(size); 79 bo->size = size;
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/ |
Menu.java | 62 int size = in.readInt(); local 63 for (int i=0; i<size; i++) { 83 int size = items.size(); local 84 dest.writeInt(size); 85 for (int i=0; i<size; i++) { 101 public Menu[] newArray(int size) { 102 return new Menu[size];
|
/frameworks/base/tests/CoreTests/android/core/ |
TreeMapTest.java | 64 if (SPEW) System.out.println("tm.size() = " + tm.size()); 65 if (SPEW) System.out.println("hm.size() = " + hm.size()); 66 assertEquals(tm.size(), hm.size()); 93 assertEquals(tm.size(), hm.size());
|
/frameworks/base/tests/framework-tests/src/android/text/ |
PackedIntVectorTest.java | 43 at = p.size() - i; 56 assertEquals(p.size(), i + 1); 129 while (p.size() > 0) { 130 int osize = p.size(); 140 assertEquals(p.size(), osize - del); 148 for (int i = at; i < p.size(); i++) { 150 assertEquals(p.getValue(i, j), (i + height - p.size()) * j); 155 assertEquals(0, p.size());
|
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/ |
xattr.h | 38 size_t size); 40 size_t size, int flags);
|
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/ |
xattr.h | 38 size_t size); 40 size_t size, int flags);
|
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
xattr.h | 38 size_t size); 40 size_t size, int flags);
|
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
xattr.h | 38 size_t size); 40 size_t size, int flags);
|
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
xattr.h | 38 size_t size); 40 size_t size, int flags);
|
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
xattr.h | 38 size_t size); 40 size_t size, int flags);
|
/sdk/eclipse/features/com.android.ide.eclipse.tests/ |
feature.xml | 25 download-size="0" 26 install-size="0"
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/ |
ScreenSizeQualifier.java | 26 * Resource Qualifier for Screen Size. Size can be "small", "normal", and "large" 30 public static final String NAME = "Screen Size"; 117 return "Size"; 122 return IconFactory.getInstance().getIcon("size"); //$NON-NLS-1$ 132 ScreenSize size = ScreenSize.getEnum(value); local 133 if (size != null) { 134 ScreenSizeQualifier qualifier = new ScreenSizeQualifier(size);
|
/external/webkit/JavaScriptCore/bytecompiler/ |
BytecodeGenerator.cpp | 147 m_codeBlock->setInstructionCount(m_codeBlock->instructions().size()); 168 int index = m_calleeRegisters.size(); 201 if ((m_firstConstantIndex = m_calleeRegisters.size()) != 0) 241 m_globalVarStorageOffset = -RegisterFile::CallFrameHeaderSize - m_codeBlock->m_numParameters - registerFile->size(); 244 m_globals.grow(symbolTable->size()); 253 bool canOptimizeNewGlobals = symbolTable->size() + functionStack.size() + varStack.size() < registerFile->maxGlobals(); 256 m_nextGlobalIndex -= symbolTable->size(); 258 for (size_t i = 0; i < functionStack.size(); ++i) 583 size_t size = instructions().size(); local 592 size_t size = instructions().size(); local [all...] |
/dalvik/libcore/logging/src/main/java/java/util/logging/ |
MemoryHandler.java | 53 * <li>java.util.logging.MemoryHandler.size specifies the buffer size in number 68 // buffer size 69 private int size = DEFAULT_SIZE; field in class:MemoryHandler 114 // init size 115 String sizeString = manager.getProperty(className + ".size"); //$NON-NLS-1$ 118 size = Integer.parseInt(sizeString); 119 if (size <= 0) { 120 size = DEFAULT_SIZE; 123 printInvalidPropMessage(className + ".size", sizeString, e); //$NON-NLS-1 [all...] |
/external/webkit/WebCore/platform/graphics/ |
GraphicsLayer.cpp | 40 for (size_t i = 0; i < m_values.size(); ++i) { 105 size_t listSize = newChildren.size(); 140 for (unsigned i = 0; i < m_children.size(); i++) { 160 for (unsigned i = 0; i < m_children.size(); i++) { 178 for (unsigned i = 0; i < m_children.size(); i++) { 197 while (m_children.size()) { 208 for (i = 0; i < m_parent->m_children.size(); i++) { 294 size_t numChildren = children().size(); 317 if (valueList.size() < 2) 322 for ( ; firstIndex < valueList.size(); ++firstIndex) [all...] |
/external/webkit/WebCore/platform/mac/ |
WebFontCache.mm | 153 NSFont *font = [NSFont fontWithName:availableFont size:10]; 181 + (NSFont *)internalFontWithFamily:(NSString *)desiredFamily traits:(NSFontTraitMask)desiredTraits weight:(int)desiredWeight size:(float)size 203 nameMatchedFont = [NSFont fontWithName:availableFont size:size]; 259 NSFont *font = [NSFont fontWithName:chosenFullName size:size]; 272 // There are some malformed fonts that will be correctly returned by -fontWithFamily:traits:weight:size: as a match for a particular trait, 286 NSFont *fontWithoutSyntheticTraits = [fontManager fontWithFamily:availableFamily traits:nonSyntheticTraits weight:chosenWeight size:size]; [all...] |
/frameworks/base/awt/java/awt/image/ |
DataBuffer.java | 92 protected int size; field in class:DataBuffer 123 * @param size 131 protected DataBuffer(int dataType, int size, int numBanks, int[] offsets) { 133 this.size = size; 145 * @param size 152 protected DataBuffer(int dataType, int size, int numBanks, int offset) { 154 this.size = size; 170 * @param size [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
mmu.h | 20 int size; member in struct:__anon139
|
/bionic/libc/kernel/common/linux/ |
jbd.h | 27 #define jbd_kmalloc(size, flags) __jbd_kmalloc(__FUNCTION__, (size), (flags), journal_oom_retry) 28 #define jbd_rep_kmalloc(size, flags) __jbd_kmalloc(__FUNCTION__, (size), (flags), 1)
|
/cts/tests/tests/database/src/android/database/cts/ |
CursorIndexOutOfBoundsExceptionTest.java | 45 int SIZE = 99; 47 String expected2 = "Index " + INDEX + " requested, with a size of " + SIZE; 63 throw new CursorIndexOutOfBoundsException(INDEX, SIZE);
|