/external/chromium_org/third_party/sqlite/src/test/ |
in3.test | 54 # All of these queries should avoid using a temp-table: 71 # require a temp table. 86 # This should not use a temp-table. Even though the sub-select does 93 # These do use the temp-table. Adding the LIMIT clause means the 104 # Has to use a temp-table because of the compound sub-select. 116 # The first of these queries has to use the temp-table, because the 119 # require a temp-table, because the collation sequences match. 128 # Neither of these queries require a temp-table. The collation sequence 259 # A temp table must be used because t3_i.b is not guaranteed to be unique.
|
laststmtchanges.test | 216 create temp table t0(x); 217 create temp table t1 (k integer primary key); 218 create temp table t2 (k integer primary key); 219 create temp view v1 as select * from t1; 220 create temp view v2 as select * from t2; 221 create temp table n1 (k integer primary key, n); 222 create temp table n2 (k integer primary key, n); 231 create temp trigger r1 instead of insert on v1 for each row begin 241 create temp trigger r2 instead of insert on v2 for each row begin
|
alter.test | 44 # Create some tables to rename. Be sure to include some TEMP tables 49 set ::temp TEMP 51 set ::temp {} 61 CREATE $::temp TABLE "temp table"(e,f,g UNIQUE); 62 CREATE INDEX i2 ON [temp table](f); 63 INSERT INTO [temp table] VALUES(5,6,7); 68 SELECT * FROM [temp table]; 73 CREATE $::temp TABLE objlist(type, name, tbl_name) [all...] |
pagesize.test | 198 PRAGMA temp.page_size=$PGSZ; 199 CREATE TEMP TABLE t2(y); 201 PRAGMA temp.page_size; 212 CREATE TEMP TABLE t2(y); 214 PRAGMA temp.page_size;
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Curve.java | 52 private Vector3f temp = new Vector3f(); field in class:Curve 112 spline.interpolate((float) j / nbSubSegments, cptCP, temp); 113 array[i] = temp.getX(); 115 array[i] = temp.getY(); 117 array[i] = temp.getZ(); 165 spline.interpolate((float) j / nbSubSegments, currentControlPoint, temp); 166 array[lineIndex++] = temp.getX(); 167 array[lineIndex++] = temp.getY(); 168 array[lineIndex++] = temp.getZ();
|
/external/mesa3d/src/glsl/ |
opt_algebraic.cpp | 108 ir_rvalue *temp = ir2->operands[op2]; local 110 ir1->operands[op1] = temp; 191 ir_expression *temp; local 264 temp = new(mem_ctx) ir_expression(ir_unop_neg, 268 return swizzle_if_required(ir, temp); 306 temp = new(mem_ctx) ir_expression(ir_unop_rcp, 310 return swizzle_if_required(ir, temp); 409 temp = new(mem_ctx) ir_expression(ir_unop_rsq, 413 return swizzle_if_required(ir, temp);
|
lower_vector.cpp | 136 ir_variable *const temp = local 139 this->base_ir->insert_before(temp); 188 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp); 201 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp); 211 *rvalue = new(mem_ctx) ir_dereference_variable(temp);
|
/external/chromium_org/base/win/ |
event_trace_controller_unittest.cc | 166 FilePath temp; local 167 ASSERT_TRUE(base::CreateTemporaryFileInDir(temp_dir.path(), &temp)); 171 temp.value().c_str()); 174 base::DeleteFile(temp, false); 184 base::DeleteFile(temp, false);
|
shortcut.cc | 200 WCHAR temp[MAX_PATH]; 207 result = i_shell_link->GetPath(temp, MAX_PATH, NULL, SLGP_UNCPRIORITY); 211 *target_path = FilePath(temp); 215 result = i_shell_link->GetArguments(temp, MAX_PATH); 219 *args = string16(temp);
|
/external/chromium_org/chrome/test/automation/ |
browser_proxy.cc | 320 double temp; local 321 if (!tab_dict->GetDouble("load_start_ms", &temp)) 323 start_ms = static_cast<float>(temp); 325 if (!tab_dict->GetDouble("load_stop_ms", &temp)) 327 stop_ms = static_cast<float>(temp);
|
/external/chromium_org/content/browser/ |
host_zoom_map_impl.cc | 194 TemporaryZoomLevel temp; local 195 temp.render_process_id = render_process_id; 196 temp.render_view_id = render_view_id; 197 temp.zoom_level = level; 198 temporary_zoom_levels_.push_back(temp);
|
/external/chromium_org/crypto/third_party/nss/ |
rsawrapr.c | 25 unsigned char *tempHash, *temp; local 52 temp = (unsigned char *)PORT_Alloc(hash->length); 53 (*hash->end)(hashContext, temp, &digestLen, hash->length); 54 PORT_Memcpy(tempHash, temp, maskLen - counter * hash->length); 55 PORT_Free(temp);
|
/external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/ |
matrix.cc | 22 float temp, temp2, temp3, temp4; local 23 temp = 2.0f * znear; 27 mat[0] = temp / temp2; 32 mat[5] = temp / temp3; 41 mat[14] = (-temp * zfar) / temp4;
|
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/ |
matrix.cc | 22 float temp, temp2, temp3, temp4; local 23 temp = 2.0f * znear; 27 mat[0] = temp / temp2; 32 mat[5] = temp / temp3; 41 mat[14] = (-temp * zfar) / temp4;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
TempFile.js | 90 WebInspector.log("Failed to truncate temp file " + e.code + " : " + e.message, 106 WebInspector.log("Failed to create temp file " + e.code + " : " + e.message, 123 WebInspector.log("Failed to write into a temp file: " + e.message, 152 WebInspector.log("Failed to read from temp file: " + error.message, 160 WebInspector.log("Failed to load temp file: " + error.message,
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
CheckedArithmetic.h | 249 ResultType temp = lhs - std::numeric_limits<ResultType>::min(); variable 250 if (rhs < -temp) 306 ResultType temp = lhs + rhs; variable 307 if (temp < lhs) 309 result = temp; 315 ResultType temp = lhs - rhs; variable 316 if (temp > lhs) 318 result = temp; 341 int64_t temp = lhs + rhs; local 342 if (temp < std::numeric_limits<ResultType>::min() 352 int64_t temp = lhs - rhs; local 363 int64_t temp = lhs * rhs; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
pptest.cpp | 193 UnicodeString temp; local 196 temp.remove(); 197 //temp = new StringBuffer(); // Get new buffer 208 temp += UnicodeString("="/*'='*/); // initialize 209 logln("FP " + temp + res);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/ |
pp_run.c | 38 * Runs all requested filters in order and handles shuffling the temp 50 pp_debug("Resizing the temp pp buffers\n"); 74 case 1: /* No temp buf */ 77 case 2: /* One temp buf */ 83 default: /* Two temp bufs */
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_query.c | 143 uint32_t temp, *map; local 162 temp = 0; 165 temp += util_le32_to_cpu(*map); 172 vresult->b = temp != 0; 174 vresult->u64 = temp;
|
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/ |
shader-leak.c | 129 "DCL TEMP[0..1]\n" 130 " 0: MUL TEMP[0], IN[0], IN[0]\n" 131 " 1: ADD TEMP[1], IN[0], IN[0]\n" 132 " 2: SUB OUT[0], TEMP[0], TEMP[1]\n"
|
/external/chromium_org/third_party/mesa/src/src/glsl/ |
lower_vector.cpp | 136 ir_variable *const temp = local 139 this->base_ir->insert_before(temp); 188 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp); 201 ir_dereference *const lhs = new(mem_ctx) ir_dereference_variable(temp); 211 *rvalue = new(mem_ctx) ir_dereference_variable(temp);
|
/external/icu4c/test/intltest/ |
pptest.cpp | 193 UnicodeString temp; local 196 temp.remove(); 197 //temp = new StringBuffer(); // Get new buffer 208 temp += UnicodeString("="/*'='*/); // initialize 209 logln("FP " + temp + res);
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_run.c | 38 * Runs all requested filters in order and handles shuffling the temp 50 pp_debug("Resizing the temp pp buffers\n"); 74 case 1: /* No temp buf */ 77 case 2: /* One temp buf */ 83 default: /* Two temp bufs */
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_query.c | 143 uint32_t temp, *map; local 162 temp = 0; 165 temp += util_le32_to_cpu(*map); 172 vresult->b = temp != 0; 174 vresult->u64 = temp;
|
/external/mesa3d/src/gallium/tests/graw/ |
shader-leak.c | 129 "DCL TEMP[0..1]\n" 130 " 0: MUL TEMP[0], IN[0], IN[0]\n" 131 " 1: ADD TEMP[1], IN[0], IN[0]\n" 132 " 2: SUB OUT[0], TEMP[0], TEMP[1]\n"
|