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

  /external/llvm/unittests/Support/
Path.cpp 127 SmallString<128> temp_store; local
128 temp_store = *i;
129 ASSERT_NO_ERROR(fs::make_absolute(temp_store));
130 temp_store = *i;
131 path::remove_filename(temp_store);
133 temp_store = *i;
134 path::replace_extension(temp_store, "ext");
135 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext;
140 path::native(*i, temp_store);
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
pragma.c 133 if( db->temp_store==ts ) return SQLITE_OK;
137 db->temp_store = (u8)ts;
705 ** PRAGMA temp_store
706 ** PRAGMA temp_store = "default"|"memory"|"file"
708 ** Return or set the local value of the temp_store flag. Changing
715 if( sqlite3StrICmp(zLeft, "temp_store")==0 ){
717 returnSingleInt(pParse, "temp_store", db->temp_store);
754 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1)
755 || (SQLITE_TEMP_STORE==2 && db->temp_store==1
    [all...]
main.c     [all...]
sqliteInt.h 809 u8 temp_store; /* 1: file 2: memory 0: default */ member in struct:sqlite3
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 9169 u8 temp_store; \/* 1: file 2: memory 0: default *\/ member in struct:sqlite3
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 9726 u8 temp_store; \/* 1: file 2: memory 0: default *\/ member in struct:sqlite3
    [all...]
  /external/sqlite/dist/
sqlite3.c 9726 u8 temp_store; \/* 1: file 2: memory 0: default *\/ member in struct:sqlite3
    [all...]

Completed in 5386 milliseconds