HomeSort by relevance Sort by last modified time
    Searched defs:isEof (Results 1 - 25 of 28) sorted by null

1 2

  /system/core/include/utils/
Tokenizer.h 57 inline bool isEof() const { return mCurrent == getEnd(); }
62 inline bool isEol() const { return isEof() || *mCurrent == '\n'; }
84 inline char peekChar() const { return isEof() ? '\0' : *mCurrent; }
95 inline char nextChar() { return isEof() ? '\0' : *(mCurrent++); }
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_aux.c 35 int isEof; /* True if cursor is at EOF */
263 pCsr->isEof = 1;
324 pCsr->isEof = 1;
394 return pCsr->isEof;
407 assert( p->isEof==0 );
fts3Int.h 164 u8 isEof; /* True if at End Of Results */
  /external/chromium_org/third_party/sqlite/src/src/
test_stat.c 113 int isEof; /* After pStmt has returned SQLITE_DONE */
383 pCsr->isEof = 1;
392 pCsr->isEof = 1;
487 return pCsr->isEof;
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c 997 int isEof;
1009 rc = testRtreeEntry(pRtree, pCursor, &isEof);
1011 rc = testRtreeCell(pRtree, pCursor, &isEof);
1013 if( rc!=SQLITE_OK || isEof || iHeight==0 ){
1025 isEof = 1;
1026 for(ii=0; isEof && ii<NCELL(pChild); ii++){
1028 rc = descendToCell(pRtree, pCursor, iHeight-1, &isEof);
1034 if( isEof ){
1043 *pEof = isEof;
1106 int isEof;
    [all...]
  /external/svox/pico/lib/
picoos.c     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
SerializedScriptValue.cpp     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 1057 bool isEof() const {
1058 JNI_TRACE("isEof? %s", mEof ? "yes" : "no");
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpcore-4.1.jar 
httpclient-4.1.1.jar 
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
httpclient-4.1.3.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
httpclient-4.1.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
httpclient-4.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar 
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/
httpclient-4.1.1.jar 

Completed in 1180 milliseconds

1 2