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

1 2

  /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));
  /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/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/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 )
cvlmeds.cpp 345 int row1, row2, col1, col2; local
354 col2 = (x == 2 ? 1 : 2);
356 value = M[row1 * 3 + col1] * M[row2 * 3 + col2] - M[row2 * 3 + col1] * M[row1 * 3 + col2];
    [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/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btMatrix3x3.h 619 btVector3 col2 = getColumn(1); local
622 btScalar det = btDot(col1, btCross(col2, col3));
628 x[0] = det * btDot(b, btCross(col2, col3));
630 x[2] = det * btDot(col1, btCross(col2, b));
    [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...]
CollationMiscTest.java 1611 RuleBasedCollator col2 = new RuleBasedCollator(rule); local
    [all...]
  /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/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...]
CollationMiscTest.java 1607 RuleBasedCollator col2 = new RuleBasedCollator(rule); local
    [all...]
  /external/opencv3/modules/core/src/
matrix.cpp 912 int col1 = std::max(ofs.x - dleft, 0), col2 = std::min(ofs.x + cols + dright, wholeSize.width); local
914 rows = row2 - row1; cols = col2 - col1;
    [all...]
  /external/icu/icu4c/source/test/cintltst/
capitst.c 448 UCollator *col1, *col2, *col3, *col4; local
469 col2 = ucol_openRules(ruleset2, u_strlen(ruleset2), UCOL_DEFAULT, UCOL_DEFAULT_STRENGTH, NULL, &status);
488 rule2 = ucol_getRules(col2, &tempLength);
504 ucol_close(col2);
518 col2 = ucol_open("en_US", &status);
524 iter2 = ucol_openElements(col2, teststr, 3, &status);
547 ucol_close(col2);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 1586 Uri col2 = mContentResolver.insert(uri2, colorValues); local
    [all...]
  /prebuilts/devtools/tools/lib/
sdkuilib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkuilib/24.4.0-beta6/
sdkuilib-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkuilib/24.5.0/
sdkuilib-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdkuilib/25.0.0-alpha1/
sdkuilib-25.0.0-alpha1.jar 
  /external/guice/extensions/struts2/lib/
struts2-core-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 

Completed in 1266 milliseconds

1 2