/external/webkit/WebCore/platform/graphics/opentype/ |
OpenTypeSanitizer.h | 43 explicit OpenTypeSanitizer(SharedBuffer* buffer) 44 : m_buffer(buffer)
|
/external/webkit/WebCore/platform/graphics/wince/ |
GlyphPageTreeNodeWince.cpp | 36 bool GlyphPage::fill(unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) 47 DWORD actualCodePages = getCharCodePages(buffer[i], lastPos); 49 setGlyphDataForIndex(offset + i, buffer[i], fontData); 51 setGlyphDataForIndex(offset + i, buffer[i], 0); 61 langFontLink->GetCharCodePages(buffer[i], &actualCodePages); 63 setGlyphDataForIndex(offset + i, buffer[i], fontData); 65 setGlyphDataForIndex(offset + i, buffer[i], 0); 73 setGlyphDataForIndex(offset + i, buffer[i], fontData);
|
/frameworks/base/core/java/android/net/http/ |
CharArrayBuffers.java | 32 * Returns true if the buffer contains the given string. Ignores leading 35 * @param buffer to search 39 static boolean containsIgnoreCaseTrimmed(CharArrayBuffer buffer, 41 int len = buffer.length(); 42 char[] chars = buffer.buffer(); 64 static int setLowercaseIndexOf(CharArrayBuffer buffer, final int ch) { 67 int endIndex = buffer.length(); 68 char[] chars = buffer.buffer(); [all...] |
/frameworks/base/services/audioflinger/ |
AudioBufferProvider.h | 31 struct Buffer { 42 virtual status_t getNextBuffer(Buffer* buffer) = 0; 43 virtual void releaseBuffer(Buffer* buffer) = 0;
|
/libcore/luni/src/main/java/java/io/ |
ObjectInput.java | 58 * Reads bytes from this stream into the byte array {@code buffer}. Blocks 61 * @param buffer 68 public int read(byte[] buffer) throws IOException; 72 * byte array {@code buffer} starting at offset {@code count}. Blocks while 75 * @param buffer 78 * the initial position in {@code buffer} to store the bytes read 81 * the maximum number of bytes to store in {@code buffer}. 87 public int read(byte[] buffer, int offset, int count) throws IOException;
|
ObjectOutput.java | 46 * Writes the entire contents of the byte array {@code buffer} to the output 49 * @param buffer 50 * the buffer to write. 54 public void write(byte[] buffer) throws IOException; 57 * Writes {@code count} bytes from the byte array {@code buffer} starting at 61 * @param buffer 62 * the buffer to write. 64 * the index of the first byte in {@code buffer} to write. 66 * the number of bytes from {@code buffer} to write to the target 71 public void write(byte[] buffer, int offset, int count) throws IOException [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
SSLEngineAppData.java | 30 * Buffer containing received application data. 32 byte[] buffer; field in class:SSLEngineAppData 41 * just the array reference is remembered into the buffer field. 44 if (buffer != null) { 49 buffer = src; 53 * Places the data from the buffer into the array of destination 57 if (buffer == null) { 61 int len = buffer.length; 68 // can fully write remaining data into buffer 69 dsts[i].put(buffer, pos, len - pos) [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
libgen.h | 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned 43 * otherwise, place result in 'buffer' 49 * ERANGE: buffer is too short 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
libgen.h | 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned 43 * otherwise, place result in 'buffer' 49 * ERANGE: buffer is too short 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
libgen.h | 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned 43 * otherwise, place result in 'buffer' 49 * ERANGE: buffer is too short 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
libgen.h | 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned 43 * otherwise, place result in 'buffer' 49 * ERANGE: buffer is too short 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/ |
libgen.h | 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned 43 * otherwise, place result in 'buffer' 49 * ERANGE: buffer is too short 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
libgen.h | 42 * if 'buffer' is NULL, 'bufflen' is ignored and the length of the result is returned 43 * otherwise, place result in 'buffer' 49 * ERANGE: buffer is too short 52 extern int dirname_r(const char* path, char* buffer, size_t bufflen); 53 extern int basename_r(const char* path, char* buffer, size_t bufflen);
|
/system/core/toolbox/ |
log.c | 94 char buffer[4096]; local 130 buffer[0] = '\0'; 133 strncat(buffer, argv[i], sizeof(buffer)-1); 134 strncat(buffer, " ", sizeof(buffer)-1); 137 if(buffer[0] == 0) { 141 __android_log_print(priority, tag, "%s", buffer);
|
/external/nist-sip/java/gov/nist/core/ |
StringTokenizer.java | 43 protected String buffer; field in class:StringTokenizer 51 public StringTokenizer(String buffer) { 52 this.buffer = buffer; 53 bufferLen = buffer.length(); 61 char c = buffer.charAt(ptr); 68 return buffer.substring(startIdx, ptr); 114 while (ptr < bufferLen && buffer.charAt(ptr) != '\n') { 117 if (ptr < bufferLen && buffer.charAt(ptr) == '\n') { 120 return buffer.substring(startIdx, ptr) [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
strutil.cc | 46 // char buffer[32]; 47 // snprintf(buffer, 32, "%.*g\n", FLT_DIG, 1.23e10f); 69 // string manipulation is all in relation to the protocol buffer and C++ 387 // a dest buffer. This should be used for non performance critical 569 // Offset into buffer where FastInt64ToBuffer places the end of string 573 char *FastInt64ToBuffer(int64 i, char* buffer) { 577 char* p = buffer + kFastInt64ToBufferOffset; 611 // Offset into buffer where FastInt32ToBuffer places the end of string 618 char *FastInt32ToBuffer(int32 i, char* buffer) { 622 char* p = buffer + kFastInt32ToBufferOffset 883 char buffer[kFastToBufferSize]; local 890 char buffer[kFastToBufferSize]; local 897 char buffer[kFastToBufferSize]; local 904 char buffer[kFastToBufferSize]; local 911 char buffer[kFastToBufferSize]; local 918 char buffer[kFastToBufferSize]; local 966 char buffer[kDoubleToBufferSize]; local 971 char buffer[kFloatToBufferSize]; local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
InputStreamHelper.java | 35 * Provides access to a protected underlying buffer of 41 * Provides access to a protected position in the underlying buffer of 67 * underlying buffer. 88 final byte[] buffer = new byte[available]; 89 System.arraycopy(buf, pos, buffer, 0, available); 91 return buffer; 97 * underlying buffer directly. 99 * @return an underlying buffer, if a current position is at the buffer 100 * beginning, and an end position is at the buffer end, or a copy o [all...] |
/dalvik/dx/src/junit/framework/ |
TestFailure.java | 40 StringBuffer buffer= new StringBuffer(); local 41 buffer.append(fFailedTest+": "+fThrownException.getMessage()); 42 return buffer.toString(); 48 StringBuffer buffer= stringWriter.getBuffer(); local 49 return buffer.toString();
|
/external/apache-http/src/org/apache/http/auth/ |
BasicUserPrincipal.java | 82 StringBuilder buffer = new StringBuilder(); local 83 buffer.append("[principal: "); 84 buffer.append(this.username); 85 buffer.append("]"); 86 return buffer.toString();
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicClientCookie.java | 324 StringBuilder buffer = new StringBuilder(); local 325 buffer.append("[version: "); 326 buffer.append(Integer.toString(this.cookieVersion)); 327 buffer.append("]"); 328 buffer.append("[name: "); 329 buffer.append(this.name); 330 buffer.append("]"); 331 buffer.append("[value: "); 332 buffer.append(this.value); 333 buffer.append("]") [all...] |
/external/apache-http/src/org/apache/http/message/ |
LineParser.java | 67 * @param buffer a buffer holding the protocol version to parse 69 * the bounds within the buffer for the parsing operation 76 CharArrayBuffer buffer, 89 * @param buffer a buffer holding the line to inspect 100 CharArrayBuffer buffer, 107 * @param buffer a buffer holding the line to parse 109 * the bounds within the buffer for the parsing operatio [all...] |
/external/easymock/src/org/easymock/internal/matchers/ |
And.java | 43 public void appendTo(StringBuffer buffer) {
44 buffer.append("and(");
46 it.next().appendTo(buffer);
48 buffer.append(", ");
51 buffer.append(")");
|
Or.java | 43 public void appendTo(StringBuffer buffer) {
44 buffer.append("or(");
46 it.next().appendTo(buffer);
48 buffer.append(", ");
51 buffer.append(")");
|
/external/junit/src/junit/framework/ |
TestFailure.java | 40 StringBuffer buffer= new StringBuffer(); local 41 buffer.append(fFailedTest+": "+fThrownException.getMessage()); 42 return buffer.toString(); 48 StringBuffer buffer= stringWriter.getBuffer(); local 49 return buffer.toString();
|
/external/skia/src/core/ |
SkPathEffect.cpp | 42 void SkPairPathEffect::flatten(SkFlattenableWriteBuffer& buffer) 44 buffer.writeFlattenable(fPE0); 45 buffer.writeFlattenable(fPE1); 48 SkPairPathEffect::SkPairPathEffect(SkFlattenableReadBuffer& buffer) 50 fPE0 = (SkPathEffect*)buffer.readFlattenable(); 51 fPE1 = (SkPathEffect*)buffer.readFlattenable(); 119 SkFlattenable* SkStrokePathEffect::CreateProc(SkFlattenableReadBuffer& buffer) 121 return SkNEW_ARGS(SkStrokePathEffect, (buffer)); 124 void SkStrokePathEffect::flatten(SkFlattenableWriteBuffer& buffer) 126 buffer.writeScalar(fWidth) [all...] |