/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/ |
jquery.tablesorter.min.js | 2 (function($){$.extend({tablesorter:new function(){var parsers=[],widgets=[];this.defaults={cssHeader:"header",cssAsc:"headerSortUp",cssDesc:"headerSortDown",sortInitialOrder:"asc",sortMultiSortKey:"shiftKey",sortForce:null,sortAppend:null,textExtraction:"simple",parsers:{},widgets:[],widgetZebra:{css:["even","odd"]},headers:{},widthFixed:false,cancelSelection:true,sortList:[],headerList:[],dateFormat:"us",decimal:'.',debug:false};function benchmark(s,d){log(s+","+(new Date().getTime()-d.getTime())+"ms");}this.benchmark=benchmark;function log(s){if(typeof console!="undefined"&&typeof console.debug!="undefined"){console.log(s);}else{alert(s);}}function buildParserCache(table,$headers){if(table.config.debug){var parsersDebug="";}var rows=table.tBodies[0].rows;if(table.tBodies[0].rows[0]){var list=[],cells=rows[0].cells,l=cells.length;for(var i=0;i<l;i++){var p=false;if($.metadata&&($($headers[i]).metadata()&&$($headers[i]).metadata().sorter)){p=getParserById($($headers[i]).metadata().sorter);}else if((table.config.headers[i]&&table.config.headers[i].sorter)){p=getParserById(table.config.headers[i].sorter);}if(!p){p=detectParserForColumn(table,cells[i]);}if(table.config.debug){parsersDebug+="column:"+i+" parser:"+p.id+"\n";}list.push(p);}}if(table.config.debug){log(parsersDebug);}return list;};function detectParserForColumn(table,node){var l=parsers.length;for(var i=1;i<l;i++){if(parsers[i].is($.trim(getElementText(table.config,node)),table,node)){return parsers[i];}}return parsers[0];}function getParserById(name){var l=parsers.length;for(var i=0;i<l;i++){if(parsers[i].id.toLowerCase()==name.toLowerCase()){return parsers[i];}}return false;}function buildCache(table){if(table.config.debug){var cacheTime=new Date();}var totalRows=(table.tBodies[0]&&table.tBodies[0].rows.length)||0,totalCells=(table.tBodies[0].rows[0]&&table.tBodies[0].rows[0].cells.length)||0,parsers=table.config.parsers,cache={row:[],normalized:[]};for(var i=0;i<totalRows;++i){var c=table.tBodies[0].rows[i],cols=[];cache.row.push($(c));for(var j=0;j<totalCells;++j){cols.push(parsers[j].format(getElementText(table.config,c.cells[j]),table,c.cells[j]));}cols.push(i);cache.normalized.push(cols);cols=null;};if(table.config.debug){benchmark("Building cache for "+totalRows+" rows:",cacheTime);}return cache;};function getElementText(config,node){if(!node)return"";var t="";if(config.textExtraction=="simple"){if(node.childNodes[0]&&node.childNodes[0].hasChildNodes()){t=node.childNodes[0].innerHTML;}else{t=node.innerHTML;}}else{if(typeof(config.textExtraction)=="function"){t=config.textExtraction(node);}else{t=$(node).text();}}return t;}function appendToTable(table,cache){if(table.config.debug){var appendTime=new Date()}var c=cache,r=c.row,n=c.normalized,totalRows=n.length,checkCell=(n[0].length-1),tableBody=$(table.tBodies[0]),rows=[];for(var i=0;i<totalRows;i++){rows.push(r[n[i][checkCell]]);if(!table.config.appender){var o=r[n (…) [all...] |
/external/eigen/Eigen/src/SparseCholesky/ |
SimplicialCholesky.h | 69 inline Index rows() const { return m_matrix.rows(); } function in class:Eigen::SimplicialCholeskyBase 91 eigen_assert(rows()==b.rows() 92 && "SimplicialCholeskyBase::solve(): invalid number of rows of the right hand side matrix b"); 105 eigen_assert(rows()==b.rows() 106 && "SimplicialCholesky::solve(): invalid number of rows of the right hand side matrix b"); 156 eigen_assert(m_matrix.rows()==b.rows()); [all...] |
/external/eigen/Eigen/src/SparseLU/ |
SparseLU.h | 38 * (and eventually the rows) of the matrix to reduce the number of new elements that are created during 120 inline Index rows() const { return m_mat.rows(); } function in class:Eigen::SparseLU 181 eigen_assert(rows()==B.rows() 182 && "SparseLU::solve(): invalid number of rows of the right hand side matrix B"); 194 eigen_assert(rows()==B.rows() 195 && "SparseLU::solve(): invalid number of rows of the right hand side matrix B"); 231 X.resize(B.rows(),B.cols()) 662 Index rows() { return m_mapL.rows(); } function in struct:Eigen::SparseLUMatrixLReturnType 680 Index rows() { return m_mapL.rows(); } function in struct:Eigen::SparseLUMatrixUReturnType [all...] |
/external/opencv/ml/src/ |
mlann_mlp.cpp | 223 _layer_sizes->cols != 1 && _layer_sizes->rows != 1 || 230 l_count = _layer_sizes->rows + _layer_sizes->cols - 1; 282 _inputs->rows != _outputs->rows ) 284 "of the same type and have the same number of rows" ); 293 n = dn0 = _inputs->rows; 326 calc_activ_func( layer_out, _w.data.db + _w.rows*_w.cols ); 353 for( i = 0; i < _src->rows; i++, src += step, dst += cols ) 362 for( i = 0; i < _src->rows; i++, src += step, dst += cols ) 381 for( i = 0; i < _src->rows; i++, src += cols, dst += step [all...] |
/external/chromium_org/third_party/libwebp/dsp/ |
enc_neon.c | 45 // to the corresponding rows of 'dst'. 93 static WEBP_INLINE void TransformPass(int16x8x2_t* const rows) { 94 // {rows} = in0 | in4 98 vcombine_s16(vget_high_s16(rows->val[0]), vget_high_s16(rows->val[1])); 103 const int16x4_t a = vqadd_s16(vget_low_s16(rows->val[0]), 104 vget_low_s16(rows->val[1])); // in0 + in8 105 const int16x4_t b = vqsub_s16(vget_low_s16(rows->val[0]), 106 vget_low_s16(rows->val[1])); // in0 - in8 116 Transpose8x2(E0, E1, rows); 121 int16x8x2_t rows; local [all...] |
/external/webp/src/dsp/ |
enc_neon.c | 45 // to the corresponding rows of 'dst'. 93 static WEBP_INLINE void TransformPass(int16x8x2_t* const rows) { 94 // {rows} = in0 | in4 98 vcombine_s16(vget_high_s16(rows->val[0]), vget_high_s16(rows->val[1])); 103 const int16x4_t a = vqadd_s16(vget_low_s16(rows->val[0]), 104 vget_low_s16(rows->val[1])); // in0 + in8 105 const int16x4_t b = vqsub_s16(vget_low_s16(rows->val[0]), 106 vget_low_s16(rows->val[1])); // in0 - in8 116 Transpose8x2(E0, E1, rows); 121 int16x8x2_t rows; local [all...] |
/external/opencv/cv/src/ |
cvhough.cpp | 112 height = img->rows; 245 h = img->rows; 512 height = image->rows; 789 if( !CV_IS_MAT_CONT( mat->type ) || (mat->rows != 1 && mat->cols != 1) ) 798 mat->rows + mat->cols - 1, &lines_header, &lines_block )); 830 if( mat->cols > mat->rows ) 833 mat->rows = lines->total; 869 int rows, cols, arows, acols; local 876 CV_CALL( edges = cvCreateMat( img->rows, img->cols, CV_8UC1 )); 879 CV_CALL( dx = cvCreateMat( img->rows, img->cols, CV_16SC1 )) [all...] |
/cts/tools/dasm/src/java_cup/ |
parse_reduce_table.java | 29 /* allocate the array and fill it in with empty rows */ 40 /** How many rows/states in the machine/table. */ 43 /** How many rows/states in the machine/table. */ 48 /** Actual array of rows, one per state */
|
/development/ndk/platforms/android-L/include/linux/ |
virtio_console.h | 31 __u16 rows; member in struct:virtio_console_config
|
/development/samples/SupportLeanbackDemos/src/com/example/android/leanback/ |
RowsActivity.java | 32 setContentView(R.layout.rows);
|
/external/ceres-solver/internal/ceres/ |
block_random_access_sparse_matrix.cc | 55 // rows/columns. 81 int* rows = tsm_->mutable_rows(); local 108 rows[pos] = col_layout[row_block_id] + r; 111 DCHECK_LT(rows[pos], tsm_->num_rows());
|
compressed_row_sparse_matrix.h | 62 // as the rows and cols matrices do not match the values of 74 // Build a square sparse diagonal matrix with num_rows rows and 109 const int* rows() const { return &rows_[0]; } function in class:ceres::internal::CompressedRowSparseMatrix 144 // Since the entries of the program are the same for rows with the
|
detect_structure.cc | 43 const int num_row_blocks = bs.rows.size(); 51 const CompressedRow& row = bs.rows[r]; 52 // We do not care about the sizes of the blocks in rows which do 105 CHECK_NE(*row_block_size, 0) << "No rows found";
|
/external/chromium_org/chrome/browser/history/android/ |
visit_sql_handler.h | 34 // Add the given |visit_count| rows for |url_id|. The visit time of each row
|
/external/chromium_org/chrome/browser/predictors/ |
autocomplete_action_predictor.cc | 247 DeleteRowsWithURLs(urls_deleted_details->rows); 277 // rows from the caches and the database once the history service is 279 std::vector<AutocompleteActionPredictorTable::Row>* rows = local 283 base::Bind(&AutocompleteActionPredictorTable::GetAllRows, table_, rows), 285 base::Owned(rows))); 306 const history::URLRows& rows) { 313 if (std::find_if(rows.begin(), rows.end(), 314 history::URLRow::URLRowHasURL(it->first.url)) != rows.end()) { 424 const AutocompleteActionPredictorTable::Rows& rows_to_add [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
editable_text_area_shadow_test.unitjs | 55 cols=4 rows=20>One two thr fou fiv six sev eig</textarea>
|
/external/chromium_org/chrome/browser/resources/ |
gesture_config.html | 21 <!-- Section rows are inserted here. -->
|
/external/chromium_org/chrome/browser/resources/sync_internals/ |
types.html | 28 <tr jsselect="rows">
|
/external/chromium_org/chrome/browser/ui/ |
chrome_style.h | 29 const int kRowPadding = 20; // Padding between rows of text.
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
table_row_nsimage_cache.h | 24 // Returns the number of rows in the table.
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/ |
options.html | 28 <textarea class=action-js rows=5 cols=83>console.log(item.url)
|
/external/chromium_org/content/test/data/session_history/ |
frames.html | 40 <frameset onLoad="init()" rows="20%,80%" name="main">
|
/external/chromium_org/media/cast/test/utility/ |
generate_barcode_video.cc | 14 for (int row = 0; row < frame->rows(plane); row++) {
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/ |
tty_node.h | 56 /// Current height of terminal in rows. Set via ioctl(2).
|
/external/chromium_org/third_party/WebKit/ManualTests/autocorrection/ |
remove-misspelling-marker-after-appending-letter.html | 36 <textarea id="test" cols="80" rows="10"></textarea>
|