Searched refs:temp_store (Results 1 – 5 of 5) 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/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | Path.cpp | 173 SmallString<128> temp_store; in TEST() local 174 temp_store = *i; in TEST() 175 ASSERT_NO_ERROR(fs::make_absolute(temp_store)); in TEST() 176 temp_store = *i; in TEST() 177 path::remove_filename(temp_store); in TEST() 179 temp_store = *i; in TEST() 180 path::replace_extension(temp_store, "ext"); in TEST() 181 StringRef filename(temp_store.begin(), temp_store.size()), stem, ext; in TEST() 186 path::native(*i, temp_store); in TEST()
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 15230 u8 temp_store; /* 1: file 2: memory 0: default */ member 115449 if( db->temp_store==ts ) return SQLITE_OK; 115453 db->temp_store = (u8)ts; 116176 returnSingleInt(v, db->temp_store); 116207 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) 116208 || (SQLITE_TEMP_STORE==2 && db->temp_store==1) 145594 return ( db->temp_store==2 ); 145597 return ( db->temp_store!=1 );
|
/external/sqlite/dist/ |
D | sqlite3.c | 15230 u8 temp_store; /* 1: file 2: memory 0: default */ member 115465 if( db->temp_store==ts ) return SQLITE_OK; 115469 db->temp_store = (u8)ts; 116192 returnSingleInt(v, db->temp_store); 116223 || (SQLITE_TEMP_STORE==1 && db->temp_store<=1) 116224 || (SQLITE_TEMP_STORE==2 && db->temp_store==1) 145610 return ( db->temp_store==2 ); 145613 return ( db->temp_store!=1 );
|