Searched refs:temp_store (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | Path.cpp | 127 SmallString<128> temp_store; in TEST() local 128 temp_store = *i; in TEST() 129 ASSERT_NO_ERROR(fs::make_absolute(temp_store)); in TEST() 130 temp_store = *i; in TEST() 131 path::remove_filename(temp_store); in TEST() 133 temp_store = *i; in TEST() 134 path::replace_extension(temp_store, "ext"); in TEST() 135 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext; in TEST() 140 path::native(*i, temp_store); in TEST()
|
/external/llvm/unittests/Support/ |
D | Path.cpp | 140 SmallString<128> temp_store; in TEST() local 141 temp_store = *i; in TEST() 142 ASSERT_NO_ERROR(fs::make_absolute(temp_store)); in TEST() 143 temp_store = *i; in TEST() 144 path::remove_filename(temp_store); in TEST() 146 temp_store = *i; in TEST() 147 path::replace_extension(temp_store, "ext"); in TEST() 148 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext; in TEST() 153 path::native(*i, temp_store); in TEST()
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 14164 u8 temp_store; /* 1: file 2: memory 0: default */ member 113586 if( db->temp_store==ts ) return SQLITE_OK; 113590 db->temp_store = (u8)ts; 114309 returnSingleInt(v, db->temp_store); 114340 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) 114341 || (SQLITE_TEMP_STORE==2 && db->temp_store==1) 142845 return ( db->temp_store==2 ); 142848 return ( db->temp_store!=1 );
|
/external/sqlite/dist/ |
D | sqlite3.c | 14164 u8 temp_store; /* 1: file 2: memory 0: default */ member 113586 if( db->temp_store==ts ) return SQLITE_OK; 113590 db->temp_store = (u8)ts; 114309 returnSingleInt(v, db->temp_store); 114340 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) 114341 || (SQLITE_TEMP_STORE==2 && db->temp_store==1) 142845 return ( db->temp_store==2 ); 142848 return ( db->temp_store!=1 );
|