/external/chromium_org/chrome/common/extensions/docs/server2/ |
availability_finder.py | 74 api_rows = [row.get('namespace') for row in extension_api_json 75 if 'namespace' in row]
|
/external/chromium_org/third_party/WebKit/Source/core/platform/image-encoders/skia/ |
JPEGImageEncoder.cpp | 113 Vector<JSAMPLE> row; local 173 row.resize(cinfo.image_width * cinfo.input_components); 176 JSAMPLE* rowData = row.data();
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texcompress.c | 435 * Return the address of the pixel at (col, row, img) in a 437 * \param col, row, img - image position (3D), should be a multiple of the 442 * \return address of pixel at (row, col, img) 445 _mesa_compressed_image_address(GLint col, GLint row, GLint img, 457 ASSERT(row % bh == 0); 459 offset = ((width + bw - 1) / bw) * (row / bh) + col / bw; 489 /* XXX This line is a bit of a hack to adapt to the row stride
|
accum.c | 162 GLshort *row = (GLshort *) accMap; local 165 row[i * 4 + 0] = clearR; 166 row[i * 4 + 1] = clearG; 167 row[i * 4 + 2] = clearB; 168 row[i * 4 + 3] = clearA;
|
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
thread.py | 154 We first check row 2's last item, [d]. [e] wont fit into [d] (they dont 155 even intersect). So we go to row 1. That gives us [b], and [d] wont fit 156 into that either. So, we go to row 0 and its last slice, [a]. That can 158 of [a]. That puts it on row 1, yielding: 167 it to row 0 (a root slice): 192 ''' Adds a child slice to a root slice its proper row. 198 of each row for bounding.
|
/external/eigen/debug/gdb/ |
printers.py | 94 row = self.currentRow 117 return ('[%d]' % (row,), item) 118 elif (self.rows == 1): #if it's a row vector 120 return ('[%d,%d]' % (row, col), item)
|
/external/eigen/unsupported/Eigen/src/Polynomials/ |
Companion.h | 63 EIGEN_STRONG_INLINE const _Scalar operator()(Index row, Index col ) const 67 if( 0 < row ){ return m_bl_diag[col]; } 70 else{ return m_monic[row]; } 105 * \returns true if the row and the column, having colNorm and rowNorm 108 * the column and the row in order to balance them. 114 * \returns true if the row and the column, having colNorm and rowNorm 117 * the column and the row in order to balance them. 127 * A matrix with non zero row and non zero column is balanced 128 * for a certain norm if the i-th row and the i-th column 151 // then the balancing coefficient for the row is \f$ 1/2^{\sigma} \f [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
RandomSetter.h | 292 /** \returns a reference to the coefficient at given coordinates \a row, \a col */ 293 Scalar& operator() (Index row, Index col) 295 const Index outer = SetterRowMajor ? row : col; 296 const Index inner = SetterRowMajor ? col : row;
|
/external/guava/guava-tests/test/com/google/common/collect/ |
RegularImmutableTableTest.java | 173 testInstance.row('a')); 174 assertEquals(ImmutableMap.of(1, "bar"), testInstance.row('b')); 175 assertEquals(ImmutableMap.of(), testInstance.row('c'));
|
/external/libvpx/libvpx/vp8/encoder/x86/ |
ssim_opt.asm | 86 mov rdx, 16 ;row counter 106 add rsi, rcx ; next s row 107 add rdi, rax ; next r row 176 mov rdx, 8 ;row counter 187 add rsi, rcx ; next s row 188 add rdi, rax ; next r row
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_ssim_opt.asm | 86 mov rdx, 16 ;row counter 106 add rsi, rcx ; next s row 107 add rdi, rax ; next r row 176 mov rdx, 8 ;row counter 187 add rsi, rcx ; next s row 188 add rdi, rax ; next r row
|
/external/libvpx/libvpx/vpx_scale/arm/neon/ |
vp8_vpxyv12_copysrcframe_func_neon.asm | 39 add r10, r2, r6 ;second row src 40 add r11, r3, r7 ;second row dst 150 add r10, r2, r6 ;second row src 151 add r11, r3, r7 ;second row dst 250 addne r10, r2, r10 ;second row src 251 addne r11, r3, r11 ;second row dst
|
/external/mesa3d/src/mesa/main/ |
texcompress.c | 435 * Return the address of the pixel at (col, row, img) in a 437 * \param col, row, img - image position (3D), should be a multiple of the 442 * \return address of pixel at (row, col, img) 445 _mesa_compressed_image_address(GLint col, GLint row, GLint img, 457 ASSERT(row % bh == 0); 459 offset = ((width + bw - 1) / bw) * (row / bh) + col / bw; 489 /* XXX This line is a bit of a hack to adapt to the row stride
|
/libcore/luni/src/main/java/java/text/ |
DateFormatSymbols.java | 307 * Each row is an array of five strings: 475 * @throws IllegalArgumentException if any row has fewer than 5 elements. 482 for (String[] row : zoneStrings) { 483 if (row.length < 5) { 484 throw new IllegalArgumentException(Arrays.toString(row) + ".length < 5");
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
LocalPhotoSource.java | 112 int row = (int)(-Math.log(random.nextDouble()) * total / 2); local 113 if (row < total) selected.add(row);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 121 self.bstack.grid(row=0, column=0) 126 self.bsource.grid(row=0, column=1) 132 self.blocals.grid(row=1, column=0) 137 self.bglobals.grid(row=1, column=1) 448 l.grid(row=0, column=0) 452 row = 0 461 l.grid(row=row, column=0, sticky="nw") 464 l.grid(row=row, column=1, sticky="nw" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 121 self.bstack.grid(row=0, column=0) 126 self.bsource.grid(row=0, column=1) 132 self.blocals.grid(row=1, column=0) 137 self.bglobals.grid(row=1, column=1) 448 l.grid(row=0, column=0) 452 row = 0 461 l.grid(row=row, column=0, sticky="nw") 464 l.grid(row=row, column=1, sticky="nw" [all...] |
/external/chromium_org/chrome/browser/resources/file_manager/js/photo/ |
mosaic_mode.js | 1008 var row = this.columns_[column].getRowByTileIndex(index); 1009 if (!row) { 1010 console.error('Cannot find row for tile #' + index); 1015 if (row.hasTile(sameRowNeighbourIndex)) 1023 getEdgeTileIndex_(row.getCenterY(), -direction); 1041 var row = this.columns_[column].getRowByTileIndex(index); 1042 if (!row) { 1043 console.error('Cannot find row for tile #' + index); 1047 // Find the first item in the next row, or the last item in the previous row [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
other_devices.js | 164 * @param {int} row The row in which this device is displayed. 167 Device.prototype.getDOMNode = function(maxNumTabs, row) { 169 this.row_ = row; 406 * Increase the height of a row by the given amount. 407 * @param {int} row The row number. 408 * @param {int} height The extra height to add to the givent row. 410 DevicesView.prototype.increaseRowHeight = function(row, height) { 411 for (var i = this.rowHeights_.length; i <= row; i++ [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
rdopt.c | 479 int mv_row = x->e_mbd.mode_info_context->mbmi.mv.as_mv.row; 971 const int row = i >> 2, col = i & 3; local 980 else if (row && labelings[i] == labelings[i-4]) 996 this_mv->as_int = row ? d[-4].bmi.mv.as_int : above_block_mv(mic, i, mis); [all...] |
/bootable/recovery/ |
screen_ui.cpp | 268 int row = (text_top+text_rows-1) % text_rows; local 272 gr_text(4, ty, text[row], 0); 273 --row; 274 if (row < 0) row = text_rows-1;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/analyzer/ |
CameraAnalyzerActivity.java | 459 View row = inflater.inflate(R.layout.ca_row, parent, false); local 460 ImageView iconField = (ImageView) row.findViewById(R.id.caTestIcon); 461 TextView nameField = (TextView) row.findViewById(R.id.caTestName); 462 TextView resultField = (TextView) row.findViewById(R.id.caTestResult); 484 return row;
|
/external/chromium/chrome/browser/history/ |
url_database.cc | 435 KeywordSearchTermRow* row) { 446 if (row) { 447 row->url_id = url_id; 448 row->keyword_id = statement.ColumnInt64(0); 449 row->term = statement.ColumnString16(1);
|
/external/jpeg/ |
jcsample.c | 10 * Downsampling input data is counted in "row groups". A row group 13 * A single row group is processed in each call to the downsampler module. 23 * one row group's worth of pixels above and below the passed-in data; 25 * the first or last real pixel row. 93 int row; local 97 for (row = 0; row < num_rows; row++) { 98 ptr = image_data[row] + input_cols [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
onyxd_if.c | 385 int row, col; local 390 for (row = 0; row < pbi->common.mb_rows; ++row) 394 const int i = row*pbi->common.mode_info_stride + col; 488 /* enable row-based threading only when use_frame_threads
|