HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 176 - 200 of 702) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu4c/test/intltest/
tscoll.cpp 144 IntlTestCollator::doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
148 UCollator *myCollation = (UCollator *)((RuleBasedCollator *)col)->getUCollator();
150 Collator::EComparisonResult compareResult = col->compare(source, target);
153 col->getCollationKey(source, srckey, status);
154 col->getCollationKey(target, tgtkey, status);
257 IntlTestCollator::doTest(Collator* col, const UChar *source, const UChar *target, Collator::EComparisonResult result) {
258 doTest(col, UnicodeString(source), UnicodeString(target), result);
262 IntlTestCollator::doTest(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
264 if(col) {
265 doTestVariant(col, source, target, result)
    [all...]
canittst.cpp 257 UnicodeString CanonicalIteratorTest::collectionToString(Hashtable *col) {
262 UnicodeString **resArray = new UnicodeString*[col->count()];
268 ne = col->nextElement(el);
274 ne = col->nextElement(el);
277 for(i = 0; i<col->count(); ++i) {
281 qsort(resArray, col->count(), sizeof(UnicodeString *), compareUnicodeStrings);
285 for(i = 1; i<col->count(); ++i) {
291 Iterator it = col.iterator();
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 646 int col = ((Integer) h.get("name")).intValue(); local
648 if (r0[col].compareTo(columnNamePattern) != 0) {
656 row[3] = r0[col];
657 col = ((Integer) h.get("type")).intValue();
658 String typeStr = r0[col];
667 col = ((Integer) h.get("dflt_value")).intValue();
668 row[12] = r0[col];
672 col = ((Integer) h.get("cid")).intValue();
673 row[16] = Integer.toString(Integer.parseInt(r0[col]) + 1); // android-changed
674 col = ((Integer) h.get("notnull")).intValue()
777 int col = ((Integer) h0.get("unique")).intValue(); local
896 int col = ((Integer) h0.get("unique")).intValue(); local
956 int col = ((Integer) h0.get("type")).intValue(); local
989 int col = ((Integer) h0.get("table")).intValue(); local
1316 int col = ((Integer) h0.get("unique")).intValue(); local
    [all...]
  /external/openfst/src/lib/
symbol-table.cc 51 vector<char *> col; local
53 SplitToVector(line, separator.c_str(), &col, true);
54 if (col.size() == 0) // empty line
56 if (col.size() != 2) {
58 << col.size() << "), "
64 const char *symbol = col[0];
65 const char *value = col[1];
  /external/openssl/ssl/
d1_srtp.c 194 char *col; local
207 col=strchr(ptr,':');
210 col ? col-ptr : (int)strlen(ptr)))
220 if(col) ptr=col+1;
221 } while (col);
  /external/srec/srec/clib/
matrix_i.c 46 double *col, **input; local
56 col = (double *) CALLOC(dim, sizeof(double), "clib.col");
69 col[ii] = 0;
70 col[jj] = 1;
71 lubksb(input, dim, index, col);
73 inv[ii][jj] = col[ii];
78 FREE((char *)col);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest3.java 665 Object col = Collections.synchronizedMap(TABLE); local
666 objToSave = col;
671 assertTrue(MSG_TEST_FAILED + objToSave, col.equals(objLoaded));
694 Object col = Collections.unmodifiableMap(TABLE); local
695 objToSave = col;
700 assertTrue(MSG_TEST_FAILED + objToSave, col.equals(objLoaded));
751 Object col = Collections.synchronizedMap(MAP); local
752 objToSave = col;
757 assertTrue(MSG_TEST_FAILED + objToSave, col.equals(objLoaded));
780 Object col = Collections.unmodifiableMap(MAP) local
865 Object col = Collections.synchronizedList(LIST); local
894 Object col = Collections.unmodifiableList(LIST); local
951 Object col = Collections.synchronizedSet(SET); local
980 Object col = Collections.unmodifiableSet(SET); local
1037 Object col = Collections.synchronizedSortedMap(TREE); local
1066 Object col = Collections.unmodifiableSortedMap(TREE); local
1123 Object col = Collections.synchronizedSortedSet(SORTSET); local
1152 Object col = Collections.unmodifiableSortedSet(SORTSET); local
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LODGeomap.java 236 for (int col = getWidth() - 1; col >= lod; col -= 2 * lod) {
237 int idx = (lod * getWidth()) + col - lod; // next row
239 idx = col - 2 * lod;
241 if (col > lod * 2) { //if not the last one
242 idx = (lod * getWidth()) + col - 2 * lod;
244 idx = col - 2 * lod;
253 for (int col = getWidth() - 1 - lod; col > 0; col -= lod) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceExplorerView.java 282 TreeColumn col = new TreeColumn(parent, style); local
285 col.setWidth(fixedSize);
286 col.setResizable(false);
292 col.setText(sample_text);
293 col.pack();
297 prefs.setValue(pref_name, col.getWidth());
300 col.setWidth(prefs.getInt(pref_name));
306 col.addControlListener(new ControlListener() {
324 col.setText(header);
  /external/ceres-solver/internal/ceres/
polynomial_solver.cc 69 const double col_norm = companion_matrix_offdiagonal.col(i).lpNorm<1>();
87 companion_matrix_offdiagonal.col(i) *= std::ldexp(1.0, exponent);
108 companion_matrix.col(degree - 1) = -polynomial.reverse().head(degree);
  /external/eigen/test/
sparse_product.cpp 18 VERIFY_IS_APPROX(m4=m2.col(c)*refMat2.col(c1).transpose(), refMat4=refMat2.col(c)*refMat2.col(c1).transpose());
19 VERIFY_IS_APPROX(m4=refMat2.col(c1)*m2.col(c).transpose(), refMat4=refMat2.col(c1)*refMat2.col(c).transpose());
27 VERIFY_IS_APPROX(m4=m2.row(r).transpose()*refMat2.col(c1).transpose(), refMat4=refMat2.row(r).transpose()*refMat2.col(c1).transpose())
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
fdjac1.h 45 fjac.col(j) = (wa1-fvec)/h;
64 fjac.col(j).setZero();
67 fjac.col(j).segment(start, length) = ( wa1.segment(start, length)-fvec.segment(start, length))/h;
  /external/jpeg/
rdbmp.c 127 register JDIMENSION col; local
138 for (col = cinfo->image_width; col > 0; col--) {
156 register JDIMENSION col; local
169 for (col = cinfo->image_width; col > 0; col--) {
194 JDIMENSION row, col; local
208 for (col = source->row_width; col > 0; col--)
    [all...]
wrbmp.c 78 register JDIMENSION col; local
92 for (col = cinfo->output_width; col > 0; col--) {
113 register JDIMENSION col; local
125 for (col = cinfo->output_width; col > 0; col--) {
351 register JDIMENSION col; local
370 for (col = dest->row_width; col > 0; col--)
    [all...]
  /external/linux-tools-perf/util/
hist.h 90 u16 hists__col_len(struct hists *self, enum hist_column col);
91 void hists__set_col_len(struct hists *self, enum hist_column col, u16 len);
92 bool hists__new_col_len(struct hists *self, enum hist_column col, u16 len);
  /external/qemu/distrib/jpeg-6b/
rdbmp.c 127 register JDIMENSION col; local
138 for (col = cinfo->image_width; col > 0; col--) {
156 register JDIMENSION col; local
169 for (col = cinfo->image_width; col > 0; col--) {
194 JDIMENSION row, col; local
208 for (col = source->row_width; col > 0; col--)
    [all...]
wrbmp.c 78 register JDIMENSION col; local
92 for (col = cinfo->output_width; col > 0; col--) {
113 register JDIMENSION col; local
125 for (col = cinfo->output_width; col > 0; col--) {
351 register JDIMENSION col; local
370 for (col = dest->row_width; col > 0; col--)
    [all...]
  /external/quake/quake/src/QW/client/
gl_ngraph.c 64 int row, col; local
70 col = num&15;
71 source = draw_chars + (row<<10) + (col<<3);
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_matrix.c 174 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v) {
175 m->m[row * 4 + col] = v;
179 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col) {
180 return m->m[row * 4 + col];
184 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v) {
185 m->m[row * 3 + col] = v;
189 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col) {
190 return m->m[row * 3 + col];
194 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v) {
195 m->m[row * 2 + col] = v
    [all...]
  /frameworks/rs/scriptc/
rs_matrix.rsh 31 * @param col
37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
54 * @param col
59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
  /prebuilts/sdk/renderscript/include/
rs_matrix.rsh 31 * @param col
37 rsMatrixSet(rs_matrix4x4 *m, uint32_t row, uint32_t col, float v);
42 rsMatrixSet(rs_matrix3x3 *m, uint32_t row, uint32_t col, float v);
47 rsMatrixSet(rs_matrix2x2 *m, uint32_t row, uint32_t col, float v);
54 * @param col
59 rsMatrixGet(const rs_matrix4x4 *m, uint32_t row, uint32_t col);
64 rsMatrixGet(const rs_matrix3x3 *m, uint32_t row, uint32_t col);
69 rsMatrixGet(const rs_matrix2x2 *m, uint32_t row, uint32_t col);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 250 Integer col = xToCol.get(view.getLeftEdge()); local
251 assert col != null;
255 view.mCol = col;
256 view.mColSpan = end - col;
    [all...]
  /system/media/camera/docs/
metadata_helpers.py 194 # If string is too long, insert a new line with 'col' spaces instead
195 def pad(col):
197 Create a function that given a string will pad it to the specified column col.
201 col: an integer specifying the column number
214 wut = int(col)
218 return what + "\n".ljust(col)
  /external/eigen/Eigen/src/SparseCore/
SparseMatrix.h 171 inline Scalar coeff(Index row, Index col) const
173 const Index outer = IsRowMajor ? row : col;
174 const Index inner = IsRowMajor ? col : row;
187 inline Scalar& coeffRef(Index row, Index col)
189 const Index outer = IsRowMajor ? row : col;
190 const Index inner = IsRowMajor ? col : row;
196 return insert(row,col);
201 return insert(row,col);
204 /** \returns a reference to a novel non zero coefficient with coordinates \a row x \a col.
216 EIGEN_DONT_INLINE Scalar& insert(Index row, Index col)
953 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::SparseMatrix::InnerIterator
986 inline Index col() const { return IsRowMajor ? index() : m_outer; } function in class:Eigen::SparseMatrix::ReverseInnerIterator
    [all...]
  /external/aac/libSBRdec/src/
sbrdec_drc.h 139 int col,

Completed in 1077 milliseconds

1 2 3 4 5 6 78 91011>>