Home
last modified time | relevance | path

Searched refs:spaceLeft (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/java/src/main/java/com/google/protobuf/micro/
DCodedOutputStreamMicro.java785 public int spaceLeft() { in spaceLeft() method in CodedOutputStreamMicro
803 if (spaceLeft() != 0) { in checkNoSpaceLeft()
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
DCodedOutputByteBufferNano.java891 public int spaceLeft() { in spaceLeft() method in CodedOutputByteBufferNano
903 if (spaceLeft() != 0) { in checkNoSpaceLeft()
/external/protobuf/java/src/main/java/com/google/protobuf/
DCodedOutputStream.java983 public int spaceLeft() { in spaceLeft() method in CodedOutputStream
1001 if (spaceLeft() != 0) { in checkNoSpaceLeft()
/external/google-tv-pairing-protocol/java/jar/
Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/sqlite/dist/
Dsqlite3.c58885 int spaceLeft;
58931 spaceLeft = nPayload;
58939 spaceLeft = n;
58964 assert( spaceLeft == info.nLocal );
58971 if( spaceLeft==0 ){
59022 spaceLeft = pBt->usableSize - 4;
59025 if( n>spaceLeft ) n = spaceLeft;
59047 spaceLeft -= n;
/external/sqlite/dist/orig/
Dsqlite3.c58867 int spaceLeft;
58913 spaceLeft = nPayload;
58921 spaceLeft = n;
58946 assert( spaceLeft == info.nLocal );
58953 if( spaceLeft==0 ){
59004 spaceLeft = pBt->usableSize - 4;
59007 if( n>spaceLeft ) n = spaceLeft;
59029 spaceLeft -= n;