/prebuilts/gdb/linux-x86/lib/python2.7/ |
csv.py | 410 for col in columnTypes.keys(): 414 thisType(row[col]) 420 thisType = len(row[col]) 426 if thisType != columnTypes[col]: 427 if columnTypes[col] is None: # add new column type 428 columnTypes[col] = thisType 432 del columnTypes[col] 437 for col, colType in columnTypes.items(): 439 if len(header[col]) != colType: 445 colType(header[col]) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
csv.py | 410 for col in columnTypes.keys(): 414 thisType(row[col]) 420 thisType = len(row[col]) 426 if thisType != columnTypes[col]: 427 if columnTypes[col] is None: # add new column type 428 columnTypes[col] = thisType 432 del columnTypes[col] 437 for col, colType in columnTypes.items(): 439 if len(header[col]) != colType: 445 colType(header[col]) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
csv.py | 410 for col in columnTypes.keys(): 414 thisType(row[col]) 420 thisType = len(row[col]) 426 if thisType != columnTypes[col]: 427 if columnTypes[col] is None: # add new column type 428 columnTypes[col] = thisType 432 del columnTypes[col] 437 for col, colType in columnTypes.items(): 439 if len(header[col]) != colType: 445 colType(header[col]) [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
SelfAdjointEigenSolver.h | 540 eivec.col(i).swap(eivec.col(k+i)); 612 // mat.col(i0) is a good candidate for an orthogonal vector to the current eigenvector, 614 representative = mat.col(i0); 617 n0 = (c0 = representative.cross(mat.col((i0+1)%3))).squaredNorm(); 618 n1 = (c1 = representative.cross(mat.col((i0+2)%3))).squaredNorm(); 675 extract_kernel(tmp, eivecs.col(k), eivecs.col(l)); 683 eivecs.col(l) -= eivecs.col(k).dot(eivecs.col(l))*eivecs.col(l) [all...] |
GeneralizedEigenSolver.h | 354 m_eivec.col(i).real().noalias() = mZ.transpose() * v; 355 m_eivec.col(i).real().normalize(); 356 m_eivec.col(i).imag().setConstant(0); 403 m_eivec.col(i+1).noalias() = (mZ.transpose() * cv); 404 m_eivec.col(i+1).normalize(); 405 m_eivec.col(i) = m_eivec.col(i+1).conjugate();
|
Tridiagonalization.h | 361 matA.col(i).tail(remainingSize).makeHouseholderInPlace(h, beta); 364 // i.e., A = H A H' where H = I - h v v' and v = matA.col(i).tail(n-i-1) 365 matA.col(i).coeffRef(i+1) = 1; 368 * (conj(h) * matA.col(i).tail(remainingSize))); 370 hCoeffs.tail(n-i-1) += (conj(h)*RealScalar(-0.5)*(hCoeffs.tail(remainingSize).dot(matA.col(i).tail(remainingSize)))) * matA.col(i).tail(n-i-1); 373 .rankUpdate(matA.col(i).tail(remainingSize), hCoeffs.tail(remainingSize), Scalar(-1)); 375 matA.col(i).coeffRef(i+1) = beta;
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockSparseMatrix.h | 92 return ((a.col() == b.col() && a.row() < b.row()) || (a.col() < b.col())); 94 return ((a.row() == b.row() && a.col() < b.col()) || (a.row() < b.row())); 134 Scalar coeff(Index row, Index col) 136 return m_spblockmat.coeff(row, col); 138 Scalar coeffRef(Index row, Index col) 140 return m_spblockmat.coeffRef(row, col); [all...] |
/external/v8/tools/turbolizer/ |
disassembly-view.js | 236 let col = { r: 255, g: 255, b: 255 }; 239 col = PROF_COLS[i].col; 243 let col1 = PROF_COLS[i].col; 244 let col2 = PROF_COLS[i + 1].col; 249 col.r = Math.round(view.interpolate(val, max, col1.r, col2.r)); 250 col.g = Math.round(view.interpolate(val, max, col1.g, col2.g)); 251 col.b = Math.round(view.interpolate(val, max, col1.b, col2.b)); 260 fragment.style.color = "rgb(" + col.r + ", " + col.g + ", " + col.b + ")" [all...] |
/hardware/intel/common/libva/test/videoprocess/ |
videoprocess.cpp | 215 uint32_t row, col; local 241 for (col = 0; col < surface_image.width / 2; col++) { 242 u_dst[col * 2] = 128; 243 u_dst[col * 2 + 1] = 128; 264 uint32_t frame_size, i, row, col; local 329 for (col = 0; col < surface_image.width / 2; col++) 366 uint32_t frame_size, row, col; local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
fixdiv.py | 244 for (row, col), line in slashes:
266 for (row, col), line in slashes:
271 if line[col:col+1] != "/":
282 print ">", line[:col] + "/" + line[col:]
309 for (row, col), line in slashes:
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
KroneckerTensorProduct.h | 48 Scalar coeff(Index row, Index col) const 50 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) * 51 m_B.coeff(row % m_B.rows(), col % m_B.cols()); 171 nnzA(Dest::IsRowMajor ? itA.row() : itA.col())++; 176 nnzB(Dest::IsRowMajor ? itB.row() : itB.col())++; 191 j = itA.col() * Bc + itB.col();
|
/external/libvterm/include/ |
vterm.h | 19 int col; member in struct:__anon24652 27 return (a.row == b.row) ? a.col - b.col : a.row - b.row; 41 p.col >= r.start_col && p.col < r.end_col; 206 void vterm_state_get_palette_color(const VTermState *state, int index, VTermColor *col); 208 void vterm_state_set_palette_color(VTermState *state, int index, const VTermColor *col);
|
/external/wpa_supplicant_8/src/ap/ |
eap_user_db.c | 79 static int get_user_cb(void *ctx, int argc, char *argv[], char *col[]) 85 if (os_strcmp(col[i], "password") == 0 && argv[i]) { 90 } else if (os_strcmp(col[i], "methods") == 0 && argv[i]) { 92 } else if (os_strcmp(col[i], "remediation") == 0 && argv[i]) { 101 static int get_wildcard_cb(void *ctx, int argc, char *argv[], char *col[]) 108 if (os_strcmp(col[i], "identity") == 0 && argv[i]) 110 else if (os_strcmp(col[i], "methods") == 0 && argv[i])
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
MoreKeysKeyboard.java | 161 final int col = n % mNumColumns; local 164 return col - mLeftKeys; 168 final int pos = col - leftSideKeys; 181 final int col = n % mNumColumns; local 187 if (col == 0) { 203 if (i >= col) 211 if (i >= col)
|
/external/mesa3d/src/mesa/main/ |
texcompress_fxt1.c | 1469 GLuint col[2][3]; local [all...] |
/libcore/luni/src/test/java/tests/java/sql/ |
DatabaseMetaDataTest.java | 191 int col = rsmd.getColumnCount(); local 192 assertEquals("Incorrect number of columns", 8, col); 197 for (int c = 1; c <= col; ++c) { 450 int col = rsmd.getColumnCount(); local 451 assertEquals("Incorrect number of columns", 14, col); 457 for (int c = 1; c <= col; ++c) { 689 int col = rsmd.getColumnCount(); local 690 assertEquals("Incorrect number of columns", 14, col); 696 for (int c = 1; c <= col; ++c) { 835 int col = rsmd.getColumnCount() local 953 int col = rsmd.getColumnCount(); local 1909 int col = rs.getInt("ORDINAL_POSITION"); local [all...] |
/external/libhevc/common/x86/ |
ihevc_weighted_pred_sse42_intr.c | 122 WORD32 row, col, temp; local 148 for(col = 0; col < wd; col += 8) 175 /* (pi2_src[col] + lvl_shift)*/ /* First 4 pixels */ 181 /*i4_tmp = (pi2_src[col] + lvl_shift) * wgt0*/ /* First 4 pixels */ 193 /* (pi2_src[col] + lvl_shift)*/ /* Last 4 pixels */ 199 /*i4_tmp = (pi2_src[col] + lvl_shift) * wgt0*/ /* Last 4 pixels */ 245 /* pu1_dst[col] = CLIP_U8(i4_tmp); */ 273 for(col = 0; col < wd; col += 4 423 WORD32 row, col, temp, wdx2; local 1263 WORD32 row, col, temp; local 1536 WORD32 row, col, temp1, temp2; local 1792 WORD32 row, col, temp; local [all...] |
/external/skia/tests/ |
Matrix44Test.cpp | 84 for (int col = 0; col < 4; ++col) { 85 placeholderMatrix->setDouble(row, col, row * col); 96 for (int col = 0; col < 4; ++col) { 97 REPORTER_ASSERT(reporter, nearly_equal_double(row * col, testMatrix->getDouble(row, col))); [all...] |
/external/eigen/Eigen/src/SVD/ |
UpperBidiagonalization.h | 117 mat.col(k).tail(remainingRows) 121 .applyHouseholderOnTheLeft(mat.col(k).tail(remainingRows-1), mat.coeff(k,k), tempData); 183 SubColumnType v_k = A.col(k).tail(remainingRows); 185 if(k) v_k -= X_k1 * A.col(k).head(k); 201 SubColumnType y_k( Y.col(k).tail(remainingCols) ); 204 SubColumnType tmp( Y.col(k).head(k) ); 230 SubColumnType x_k ( X.col(k).tail(remainingRows-1) ); 234 SubColumnType tmp0 ( X.col(k).head(k) ), 235 tmp1 ( X.col(k).head(k+1) );
|
/build/make/tools/droiddoc/templates-ndk/assets/css/ |
default.css | 164 .layout-content-col { 167 .layout-content-col:first-child { 169 .layout-content-col h3, 170 .layout-content-col h4 { 173 .layout-content-col.span-1 { 176 .layout-content-col.span-2 { 179 .layout-content-col.span-3 { 182 .layout-content-col.span-4 { 185 .layout-content-col.span-5 { 188 .layout-content-col.span-6 [all...] |
/cts/tests/autofillservice/src/android/autofillservice/cts/ |
GridActivity.java | 90 public static String getResourceId(int line, int col) { 91 return "l" + line + "c" + col; 153 public FillExpectation onCell(int line, int col, String value) { 154 final String resourceId = getResourceId(line, col); 155 final EditText cell = getCell(line, col);
|
/external/clang/lib/StaticAnalyzer/Core/ |
IssueHash.cpp | 135 StringRef::size_type col = Str.find_first_not_of(Whitespaces); local 136 if (col == StringRef::npos) 137 col = 1; // The line only contains whitespace. 139 col++; 141 SM.translateLineCol(SM.getFileID(L), L.getExpansionLineNumber(), col);
|
/external/curl/lib/ |
checksrc.pl | 72 my ($name, $num, $col, $file, $line, $msg, $error) = @_; 114 $col++; 115 print "$file:$num:$col: $w: $msg ($name)\n"; 118 if($col < 80) { 119 my $pref = (' ' x $col);
|
/external/deqp/modules/gles2/functional/ |
es2fFboCompletenessTests.cpp | 309 for (Formats::const_iterator col = colorFmts.begin(); col != colorFmts.end(); col++) 311 comb.colorFmt = *col; 312 comb.colorKind = formatKind(*col);
|
/external/libmpeg2/common/ |
ideint_utils.c | 232 * @param[in] col 253 WORD32 col, 272 if(0 == col) 288 if((num_blks_x - 1) == col) 308 if(0 == col) 319 if((num_blks_x - 1) == col)
|