HomeSort by relevance Sort by last modified time
    Searched refs:col2 (Results 1 - 25 of 55) sorted by null

1 2 3

  /frameworks/base/libs/hwui/tests/macrobench/
main.cpp 70 const char* col2 = info.description.c_str(); local
75 char* found = (char*) memrchr(col2, ' ', 50);
77 toPrint = found - col2;
82 printf("%-20s %.*s\n", col1, toPrint, col2);
84 col2 += toPrint;
86 while (*col2 == ' ') {
87 col2++; dlen--;
  /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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ShapeRenderer.java 360 public void triangle (float x1, float y1, float x2, float y2, float x3, float y3, Color col1, Color col2, Color col3) {
365 renderer.color(col2.r, col2.g, col2.b, col2.a);
368 renderer.color(col2.r, col2.g, col2.b, col2.a);
380 renderer.color(col2.r, col2.g, col2.b, col2.a);
    [all...]
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestGridLayoutCodeLtr.java 80 Spec col2 = spec(1, START); local
106 layout.addView(c, new GridLayout.LayoutParams(row3, col2));
117 layout.addView(c, new GridLayout.LayoutParams(row4, col2));
BiDiTestGridLayoutCodeRtl.java 80 Spec col2 = spec(1, START); local
106 layout.addView(c, new GridLayout.LayoutParams(row3, col2));
117 layout.addView(c, new GridLayout.LayoutParams(row4, col2));
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
HexagonalTiledMapRenderer.java 126 final int col2 = Math.min(layerWidth, local
134 for (int col = colA; col < col2; col += 2) {
138 for (int col = colB; col < col2; col += 2) {
152 final int col2 = Math.min(layerWidth, (int)((viewBounds.x + viewBounds.width + layerTileWidth) / layerTileWidth)); local
161 for (int col = col1; col < col2; col++) {
IsometricTiledMapRenderer.java 97 // COL2
109 int col2 = (int)(translateScreenToIso(topRight).x / tileWidth) + 2; local
112 for (int col = col1; col <= col2; col++) {
OrthogonalTiledMapRenderer.java 78 final int col2 = Math.min(layerWidth, (int)((viewBounds.x + viewBounds.width + layerTileWidth) / layerTileWidth)); local
89 for (int col = col1; col < col2; col++) {
OrthoCachedTiledMapRenderer.java 221 final int col2 = Math.min(layerWidth, (int)((cacheBounds.x + cacheBounds.width + layerTileWidth) / layerTileWidth)); local
227 canCacheMoreE = col2 < layerWidth;
233 for (int col = col1; col < col2; col++) {
  /external/guava/guava-tests/test/com/google/common/hash/
SipHashFunctionTest.java 148 byte[] col2 = new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, (byte) 0x81 };
153 SIP_WITH_KEY.hashBytes(col2),
  /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/opencv3/modules/core/src/
lpsolver.cpp 90 static void swap_columns(Mat_<double>& A,int col1,int col2);
355 static inline void swap_columns(Mat_<double>& A,int col1,int col2){
358 A(i,col1)=A(i,col2);
359 A(i,col2)=tmp;
  /external/icu/icu4c/source/test/intltest/
apicoll.cpp 235 RuleBasedCollator *col1, *col2, *col3, *col4; local
251 col2 = new RuleBasedCollator(ruleset2, status);
283 UnicodeString rule2 = col2->getRules();
310 delete col2;
433 Collator *col2 = 0; local
435 col2 = Collator::createInstance(dk, success);
452 doAssert(col1->hashCode() != col2->hashCode(), "Hash test1 result incorrect" );
453 doAssert(!(col1->hashCode() == col2->hashCode()), "Hash test2 result incorrect" );
458 delete col2;
820 RuleBasedCollator *col2 = new RuleBasedCollator(ruleset2, success); local
897 Collator *col2 = col1->clone(); local
2219 TestCollator col2; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
CollationAPITest.java 256 // Collator col2 = (Collator)col1.clone();
257 // doAssert(col1.equals(col2), "Cloned object is not equal to the orginal");
391 Collator col2 = null; local
394 col2 = Collator.getInstance(dk);
410 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" );
411 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" );
540 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; local
555 col2 = new RuleBasedCollator(ruleset2);
588 String rule2 = col2.getRules();
802 Collator col2 = new TestCollator(); local
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationAPITest.java 252 // Collator col2 = (Collator)col1.clone();
253 // doAssert(col1.equals(col2), "Cloned object is not equal to the orginal");
387 Collator col2 = null; local
390 col2 = Collator.getInstance(dk);
406 doAssert(col1.hashCode() != col2.hashCode(), "Hash test1 result incorrect" );
407 doAssert(!(col1.hashCode() == col2.hashCode()), "Hash test2 result incorrect" );
536 RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null; local
551 col2 = new RuleBasedCollator(ruleset2);
584 String rule2 = col2.getRules();
798 Collator col2 = new TestCollator(); local
    [all...]
  /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/include/
cvmat.hpp 533 CvMAT colrange( int col1, int col2 ) const;
638 CvMAT colrange( int col1, int col2 ) const;
    [all...]

Completed in 595 milliseconds

1 2 3