Searched refs:temp_store (Results 1 - 7 of 7) sorted by relevance

/external/llvm/unittests/Support/
H A DPath.cpp127 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/
H A Dpragma.c133 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
[all...]
H A Dmain.c1481 ** The value returned depends on the value of db->temp_store (runtime
1486 ** SQLITE_TEMP_STORE db->temp_store Location of temporary database
1499 return ( db->temp_store==2 );
1502 return ( db->temp_store!=1 );
H A DsqliteInt.h809 u8 temp_store; /* 1: file 2: memory 0: default */ member in struct:sqlite3
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9169 u8 temp_store; /* 1: file 2: memory 0: default */ member in struct:sqlite3
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c9726 u8 temp_store; /* 1: file 2: memory 0: default */ member in struct:sqlite3
[all...]
/external/sqlite/dist/
H A Dsqlite3.c9726 u8 temp_store; /* 1: file 2: memory 0: default */ member in struct:sqlite3
[all...]

Completed in 564 milliseconds