HomeSort by relevance Sort by last modified time
    Searched refs:bufferPos (Results 1 - 11 of 11) sorted by null

  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 201 if (size <= (bufferSize - bufferPos) && size > 0) {
204 final String result = new String(buffer, bufferPos, size, "UTF-8");
205 bufferPos += size;
266 if (size <= (bufferSize - bufferPos) && size > 0) {
269 final ByteString result = ByteString.copyFrom(buffer, bufferPos, size);
270 bufferPos += size;
482 private int bufferPos;
489 * {@code totalBytesRetired + bufferPos}. This value may be negative if
512 bufferPos = off;
520 bufferPos = 0
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 198 if (size <= (bufferSize - bufferPos) && size > 0) {
201 final String result = new String(buffer, bufferPos, size, "UTF-8");
202 bufferPos += size;
240 if (size <= (bufferSize - bufferPos) && size > 0) {
243 final ByteStringMicro result = ByteStringMicro.copyFrom(buffer, bufferPos, size);
244 bufferPos += size;
438 private int bufferPos;
445 * {@code totalBytesRetired + bufferPos}.
466 bufferPos = off;
473 bufferPos = 0
    [all...]
  /external/icu4c/common/
normlzr.cpp 35 buffer(), bufferPos(0)
44 buffer(), bufferPos(0)
53 buffer(), bufferPos(0)
62 buffer(copy.buffer), bufferPos(copy.bufferPos)
101 return text->hashCode() + fUMode + fOptions + buffer.hashCode() + bufferPos + currentIndex + nextIndex;
112 bufferPos==that.bufferPos &&
250 if(bufferPos<buffer.length() || nextNormalize()) {
251 return buffer.char32At(bufferPos);
    [all...]
unames.c 236 #define WRITE_CHAR(buffer, bufferLength, bufferPos, c) { \
241 ++(bufferPos); \
263 uint16_t token, tokenCount=*tokens++, bufferPos=0;
300 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
315 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
320 if(!bufferPos && nameChoice == U_EXTENDED_CHAR_NAME) {
332 WRITE_CHAR(buffer, bufferLength, bufferPos, c);
343 return bufferPos;
788 uint16_t i, factor, bufferPos=0;
829 WRITE_CHAR(buffer, bufferLength, bufferPos, c)
    [all...]
  /frameworks/native/libs/utils/
BufferedTextOutput.cpp 40 , bufferPos(0)
51 if ((len+bufferPos) > bufferSize) {
52 void* b = realloc(buffer, ((len+bufferPos)*3)/2);
56 memcpy(buffer+bufferPos, txt, len);
57 bufferPos += len;
62 bufferPos = 0;
75 size_t bufferPos;
209 //printf("Buffer is now %d bytes\n", b->bufferPos);
213 vec.iov_len = b->bufferPos;
251 if (b->bufferPos > 0 && b->atFront)
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginDatabase.cpp 556 char* bufferPos = fileContents.data() + 1;
563 while (bufferPos < end) {
569 if (!(readUTF8String(path, bufferPos, end)
570 && readTime(lastModified, bufferPos, end)
571 && readUTF8String(name, bufferPos, end)
572 && readUTF8String(desc, bufferPos, end)
573 && readUTF8String(mimeDesc, bufferPos, end))) {
  /external/webkit/Source/WebCore/platform/
KURL.cpp 475 char* bufferPos = parseBuffer.data();
486 *bufferPos++ = *baseStringStart++;
487 char* bufferPathStart = bufferPos;
499 *bufferPos++ = '/';
501 bufferPos += copyPathRemovingDots(bufferPos, baseStringStart, 0, baseStringEnd - baseStringStart);
508 if (relStringPos[0] == '.' && bufferPos[-1] == '/') {
523 if (bufferPos > bufferPathStart + 1)
524 bufferPos--;
525 while (bufferPos > bufferPathStart + 1 && bufferPos[-1] != '/'
    [all...]
  /external/icu4c/common/unicode/
normlzr.h 757 int32_t bufferPos;
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
GeometryBatchFactory.java 249 int bufferPos[] = new int[lodLevels];
261 lodData[i][bufferPos[i] + j] = buffer.get() + numOfVertices * curGeom;
262 //bufferPos[i]++;
264 bufferPos[i] += buffer.capacity();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.lucene_1.9.1.v20100518-1140.jar 
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 697 milliseconds