/frameworks/base/tests/RenderScriptTests/MiscSamples/res/raw/ |
multitexf.glsl | 7 lowp vec4 col2 = texture2D(UNI_Tex2, t0).rgba; 9 col0.xyz = mix(col0.xyz, col2.xyz, col2.w);
|
/frameworks/base/tests/RenderScriptTests/PerfTest/res/raw/ |
multitexf.glsl | 7 lowp vec4 col2 = texture2D(UNI_Tex2, t0).rgba; 9 col0.xyz = mix(col0.xyz, col2.xyz, col2.w);
|
/external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/ |
Terrain.frag | 34 vec4 col2 = texture2D( m_Tex1, coords.xz * m_Tex1Scale );
37 vec4 tex1 = col1 * blending.x + col2 * blending.y + col3 * blending.z;
40 col2 = texture2D( m_Tex2, coords.xz * m_Tex2Scale );
43 vec4 tex2 = col1 * blending.x + col2 * blending.y + col3 * blending.z;
46 col2 = texture2D( m_Tex3, coords.xz * m_Tex3Scale );
49 vec4 tex3 = col1 * blending.x + col2 * blending.y + col3 * blending.z;
|
/external/chromium_org/third_party/sqlite/src/test/ |
capi2.test | 691 CREATE TABLE tab1(col1, col2); 695 check_origins {SELECT col2, col1 FROM tab1} 696 } [list {main tab1 col2} {main tab1 col1}] 698 check_origins {SELECT col2 AS hello, col1 AS world FROM tab1} 699 } [list {main tab1 col2} {main tab1 col1}] 703 check_origins {SELECT b, a FROM (SELECT col1 AS a, col2 AS b FROM tab1)} 704 } [list {main tab1 col2} {main tab1 col1}] 706 check_origins {SELECT (SELECT col2 FROM tab1), (SELECT col1 FROM tab1)} 707 } [list {main tab1 col2} {main tab1 col1}] 709 check_origins {SELECT (SELECT col2), (SELECT col1) FROM tab1 [all...] |
tkt3522.test | 26 col2 INTEGER, 32 JOIN tab4 AS cor1 USING ( col4, col3, col2, col1, col0 );
|
vtab5.test | 140 ALTER TABLE echo_strings ADD COLUMN col2;
|
/external/chromium/chrome/browser/resources/options/chromeos/ |
cellular_plan_element.js | 118 var col2 = this.ownerDocument.createElement('td'); 119 col2.className = col2Class; 121 col2.id = col2Id; 122 col2.textContent = col2Value; 123 row.appendChild(col2);
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/css/ |
options.css | 63 .col2 { 66 body.rtl .col1, body.rtl .col2 { 72 body.rtl .col2 {
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/css/ |
options.css | 63 .col2 { 66 body.rtl .col1, body.rtl .col2 { 72 body.rtl .col2 {
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestGridLayoutCodeLtr.java | 66 Spec col2 = spec(1, START); local 92 layout.addView(c, new GridLayout.LayoutParams(row3, col2)); 103 layout.addView(c, new GridLayout.LayoutParams(row4, col2));
|
BiDiTestGridLayoutCodeRtl.java | 66 Spec col2 = spec(1, START); local 92 layout.addView(c, new GridLayout.LayoutParams(row3, col2)); 103 layout.addView(c, new GridLayout.LayoutParams(row4, col2));
|
/cts/suite/pts/deviceTests/browserbench/assets/octane/ |
box2d.js | 58 function(b,e,f,m,r){if(f===undefined)f=0;parseInt(b.m_vertexCount);var s=b.m_vertices;b=b.m_normals;var v=parseInt(m.m_vertexCount),t=m.m_vertices,x,C;x=e.R;C=b[f];b=x.col1.x*C.x+x.col2.x*C.y;m=x.col1.y*C.x+x.col2.y*C.y;x=r.R;var J=x.col1.x*b+x.col1.y*m;x=x.col2.x*b+x.col2.y*m;for(var T=0,P=Number.MAX_VALUE,X=0;X<v;++X){C=t[X];C=C.x*J+C.y*x;if(C<P){P=C;T=X}}C=s[f];x=e.R;f=e.position.x+(x.col1.x*C.x+x.col2.x*C.y);e=e.position.y+(x.col1.y*C.x+x.col2.y*C.y);C=t[T];x=r.R;s=r.position.x+(x.col1.x*C.x+ 59 x.col2.x*C.y);r=r.position.y+(x.col1.y*C.x+x.col2.y*C.y);s-=f;r-=e;return s*b+r*m};M.FindMaxSeparation=function(b,e,f,m,r){var s=parseInt(e.m_vertexCount),v=e.m_normals,t,x;x=r.R;t=m.m_centroid;var C=r.position.x+(x.col1.x*t.x+x.col2.x*t.y),J=r.position.y+(x.col1.y*t.x+x.col2.y*t.y);x=f.R;t=e.m_centroid;C-=f.position.x+(x.col1.x*t.x+x.col2.x*t.y);J-=f.position.y+(x.col1.y* (…) [all...] |
/external/ceres-solver/internal/ceres/ |
trust_region_minimizer_test.cc | 58 template <bool col1, bool col2, bool col3, bool col4> 64 (col2 ? 1 : 0) + 69 << col2 << " " 78 CHECK(col1 || col2 || col3 || col4); 140 if (col2) { 172 if (col2) { 195 state_plus_delta[1] = (col2 ? state[1] + delta[delta_index++] : state[1]); 211 template<bool col1, bool col2, bool col3, bool col4> 222 parameters[1] = (col2 ? parameters[1] : 0.0); 226 PowellEvaluator2<col1, col2, col3, col4> powell_evaluator [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_dbtables.py | 95 col2 = 'Species' 100 {col0: pickle.dumps(8, 1), col1: 'no', col2: 'Penguin'}, 101 {col0: pickle.dumps(-1, 1), col1: 'no', col2: 'Turkey'}, 102 {col0: pickle.dumps(9, 1), col1: 'yes', col2: 'SR-71A Blackbird'} 107 col1: 'no', col2: 'Penguin'}, 109 col1: 'no', col2: 'Turkey'}, 111 col1: 'yes', col2: 'SR-71A Blackbird'} 118 self.tdb.CreateTable(tabname, [col0, col1, col2]) 124 values = self.tdb.Select(tabname, [col2], 127 values = self.tdb.Select(tabname, [col2], [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_dbtables.py | 95 col2 = 'Species' 100 {col0: pickle.dumps(8, 1), col1: 'no', col2: 'Penguin'}, 101 {col0: pickle.dumps(-1, 1), col1: 'no', col2: 'Turkey'}, 102 {col0: pickle.dumps(9, 1), col1: 'yes', col2: 'SR-71A Blackbird'} 107 col1: 'no', col2: 'Penguin'}, 109 col1: 'no', col2: 'Turkey'}, 111 col1: 'yes', col2: 'SR-71A Blackbird'} 118 self.tdb.CreateTable(tabname, [col0, col1, col2]) 124 values = self.tdb.Select(tabname, [col2], 127 values = self.tdb.Select(tabname, [col2], [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
factory.py | 101 col1, col2 = row["a"], row["b"] 103 self.assertTrue(col2 == 2, "by name: wrong result for column 'a'") 105 col1, col2 = row["A"], row["B"] 107 self.assertTrue(col2 == 2, "by name: wrong result for column 'B'") 109 col1, col2 = row[0], row[1] 111 self.assertTrue(col2 == 2, "by index: wrong result for column 1")
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
factory.py | 101 col1, col2 = row["a"], row["b"] 103 self.assertTrue(col2 == 2, "by name: wrong result for column 'a'") 105 col1, col2 = row["A"], row["B"] 107 self.assertTrue(col2 == 2, "by name: wrong result for column 'B'") 109 col1, col2 = row[0], row[1] 111 self.assertTrue(col2 == 2, "by index: wrong result for column 1")
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/news/views/ |
options.html | 33 <td class = "col2"> 111 <td class = "col2"> 130 <td class = "col2"> 148 <td class = "col2">
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/views/ |
options.html | 33 <td class = "col2"> 111 <td class = "col2"> 130 <td class = "col2"> 148 <td class = "col2">
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
README.syntax | 126 of the table contains the term "hello", and that column "col2" of the 128 named "col1" and "col2", then an error is returned and the query is 131 <col> MATCH 'col1:hello col2:world'
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
StateViewPage.java | 122 TreeColumn col2 = new TreeColumn(tree, SWT.LEFT); local 123 col2.setText(TREE_PROPERTIES[1]); 124 col2.setWidth(200);
|
/external/opencv/cvaux/src/ |
cvtexture.cpp | 316 int col2, row2; local 318 col2 = colLoop + steps[stepLoop*2 + 1]; 320 if( col2>=0 && row2>=0 && col2<srcImageSize.width && row2<srcImageSize.height )
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
apicoll.cpp | 288 RuleBasedCollator *col1, *col2, *col3, *col4; local 304 col2 = new RuleBasedCollator(ruleset2, status); 336 UnicodeString rule2 = col2->getRules(); 363 delete col2; 486 Collator *col2 = 0; local 488 col2 = Collator::createInstance(dk, success); 505 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" ); 506 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" ); 511 delete col2; 847 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success); local 924 Collator *col2 = col1->clone(); local 2133 TestCollator col2; local [all...] |
/external/icu4c/test/intltest/ |
apicoll.cpp | 297 RuleBasedCollator *col1, *col2, *col3, *col4; local 313 col2 = new RuleBasedCollator(ruleset2, status); 345 UnicodeString rule2 = col2->getRules(); 372 delete col2; 495 Collator *col2 = 0; local 497 col2 = Collator::createInstance(dk, success); 514 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" ); 515 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" ); 520 delete col2; 856 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success); local 933 Collator *col2 = col1->clone(); local 2162 TestCollator col2; local [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
AbstractWindowedCursorTest.java | 231 "col1", "col2", "col3"
|