/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_entropymv.h | 100 return mv->col == 0 ? MV_JOINT_ZERO : MV_JOINT_HNZVZ; 102 return mv->col == 0 ? MV_JOINT_HZVNZ : MV_JOINT_HNZVNZ;
|
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/ |
Cities.java | 35 Collection<CityObj> col = cities.values(); local 36 Iterator<CityObj> i = col.iterator();
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3dx9math.inl | 377 inline FLOAT& D3DXMATRIX::operator () (UINT row, UINT col) 379 return m[row][col]; 382 inline FLOAT D3DXMATRIX::operator () (UINT row, UINT col) const 384 return m[row][col]; 693 inline D3DXCOLOR::D3DXCOLOR(DWORD col) 696 r = f * (FLOAT)(unsigned char)(col >> 16); 697 g = f * (FLOAT)(unsigned char)(col >> 8); 698 b = f * (FLOAT)(unsigned char)col; 699 a = f * (FLOAT)(unsigned char)(col >> 24); 711 inline D3DXCOLOR::D3DXCOLOR(CONST D3DCOLORVALUE& col) [all...] |
/development/samples/TicTacToeLib/src/com/example/android/tictactoe/library/ |
GameActivity.java | 191 int col = -1;
local 210 col = i;
221 if (col != -1 || row != -1 || diag != -1) {
222 setFinished(player, col, row, diag);
234 private void setFinished(State player, int col, int row, int diagonal) {
239 mGameView.setFinished(col, row, diagonal);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTableSection.h | 174 CellStruct& cellAt(unsigned row, unsigned col) { return m_grid[row].row[col]; } 175 const CellStruct& cellAt(unsigned row, unsigned col) const { return m_grid[row].row[col]; } 176 RenderTableCell* primaryCellAt(unsigned row, unsigned col) 178 CellStruct& c = m_grid[row].row[col];
|
/external/chromium_org/ui/webui/resources/css/ |
table.css | 5 html.col-resize * { 6 cursor: col-resize !important; 110 cursor: col-resize;
|
/external/eigen/demos/opengl/ |
camera.cpp | 109 camAxes.col(2) = (-newDirection).normalized(); 110 camAxes.col(0) = up.cross( camAxes.col(2) ).normalized(); 111 camAxes.col(1) = camAxes.col(2).cross( camAxes.col(0) ).normalized();
|
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
AutoDiffVector.h | 52 CoeffType operator[] (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } 53 const CoeffType operator[] (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } 55 CoeffType operator() (Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } 56 const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } 58 CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } 59 const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); }
|
/external/jpeg/ |
jddctmgr.c | 45 extern void armv6_idct(short *coefs, int *quans, unsigned char **rows, int col); 269 * coefficients scaled by scalefactor[row]*scalefactor[col], where 325 * coefficients scaled by scalefactor[row]*scalefactor[col], where 330 int row, col; local 338 for (col = 0; col < DCTSIZE; col++) { 341 aanscalefactor[row] * aanscalefactor[col]);
|
jdmerge.c | 259 JDIMENSION col; local 273 for (col = cinfo->output_width >> 1; col > 0; col--) { 318 JDIMENSION col; local 334 for (col = cinfo->output_width >> 1; col > 0; col--) { 382 JDIMENSION col; local 400 for (col = cinfo->output_width >> 1; col > 0; col--) 456 JDIMENSION col; local 532 JDIMENSION col; local 617 JDIMENSION col; local [all...] |
/external/libedit/src/ |
filecomplete.c | 360 size_t line, lines, col, cols, thisguy; local 385 for (col = 0; col < cols; col++) { 386 thisguy = line + col * lines; 390 col == 0 ? "" : " ", (int)width, matches[thisguy]);
|
/external/qemu/distrib/jpeg-6b/ |
jddctmgr.c | 41 extern void armv6_idct(short *coefs, int *quans, unsigned char **rows, int col); 229 * coefficients scaled by scalefactor[row]*scalefactor[col], where 285 * coefficients scaled by scalefactor[row]*scalefactor[col], where 290 int row, col; local 298 for (col = 0; col < DCTSIZE; col++) { 301 aanscalefactor[row] * aanscalefactor[col]);
|
jdmerge.c | 259 JDIMENSION col; local 273 for (col = cinfo->output_width >> 1; col > 0; col--) { 318 JDIMENSION col; local 334 for (col = cinfo->output_width >> 1; col > 0; col--) { 382 JDIMENSION col; local 400 for (col = cinfo->output_width >> 1; col > 0; col--) 456 JDIMENSION col; local 532 JDIMENSION col; local 617 JDIMENSION col; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
ReplaceDialog.py | 91 col = res[1].start() 94 col = 0 100 res = self.engine.search_forward(text, prog, line, col, 0, ok) 120 col = i + len(new) 155 line, col = SearchEngine.get_line_col(pos) 157 m = prog.match(chars, col)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
ReplaceDialog.py | 91 col = res[1].start() 94 col = 0 100 res = self.engine.search_forward(text, prog, line, col, 0, ok) 120 col = i + len(new) 155 line, col = SearchEngine.get_line_col(pos) 157 m = prog.match(chars, col)
|
/frameworks/ex/widget/java/com/android/ex/widget/ |
StaggeredGridView.java | 150 public final int getMarginAbove(int col) { 154 return mMargins[col * 2]; 157 public final int getMarginBelow(int col) { 161 return mMargins[col * 2 + 1]; 164 public final void setMarginAbove(int col, int margin) { 169 mMargins[col * 2] = margin; 172 public final void setMarginBelow(int col, int margin) { 177 mMargins[col * 2 + 1] = margin; 520 for (int col = lp.column; col < colEnd; col++) 760 final int col = lp.column; local [all...] |
/external/aac/libSBRenc/src/ |
ps_main.cpp | 551 INT group, bin, col, band; local 576 for (col=0; col<frameSize-HYBRID_READ_OFFSET; col++) { 578 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][0][0][i])); 579 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][0][1][i])); 580 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][1][0][i])); 581 tmp = fixMax(tmp, (FIXP_QMF)fixp_abs(hybridData[col][1][1][i])); 587 for (col=frameSize-HYBRID_READ_OFFSET; col<frameSize; col++) [all...] |
/external/chromium_org/third_party/skia/gm/ |
beziereffects.cpp | 86 int col = 0; variable 110 SkScalar x = SkScalarMul(col, w); 181 ++col; 182 if (numCols == col) { 183 col = 0; 244 int col = 0; variable 268 SkScalar x = SkScalarMul(col, w); 336 ++col; 337 if (numCols == col) { 338 col = 0 434 int col = 0; variable [all...] |
/external/skia/gm/ |
beziereffects.cpp | 86 int col = 0; variable 110 SkScalar x = SkScalarMul(col, w); 181 ++col; 182 if (numCols == col) { 183 col = 0; 244 int col = 0; variable 268 SkScalar x = SkScalarMul(col, w); 336 ++col; 337 if (numCols == col) { 338 col = 0 434 int col = 0; variable [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
GridViewSpecial.java | 504 int col = pos - (row * mColumns); local 507 + (col * (mSpec.mCellWidth + mSpec.mCellSpacing)); 524 int col = Math.min(mColumns - 1, local 526 return (row * mColumns) + col; 697 int col = mCurrentSelection - (row * mColumns); local 701 int xPos = leftSpacing + (col * (mSpec.mCellWidth + spacing)); 795 int col = pos - row * mColumns; local 799 blk.cancelRequest(col); 881 int col = index - (row * mColumns); local 884 if ((blk.mCompletedMask & (1 << col)) != 0) [all...] |
/external/chromium_org/chrome/browser/resources/hotword_audio_verification/ |
style.css | 83 .col-3 { 89 .col-3 h4 { 94 .col-2 { 101 .col-2 h4 { 106 .col-spacing {
|
/external/chromium_org/third_party/skia/src/images/ |
SkMovie_gif.cpp | 120 const GifColorType& col = cmap->Colors[*src]; local 121 *dst = SkPackARGB32(0xFF, col.Red, col.Green, col.Blue); 200 uint32_t col) 216 sk_memset32(dst, col, copyWidth); 390 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor]; local 391 bgColor = SkColorSetARGB(0xFF, col.Red, col.Green, col.Blue) [all...] |
/external/skia/src/images/ |
SkMovie_gif.cpp | 120 const GifColorType& col = cmap->Colors[*src]; local 121 *dst = SkPackARGB32(0xFF, col.Red, col.Green, col.Blue); 200 uint32_t col) 216 sk_memset32(dst, col, copyWidth); 390 const GifColorType& col = gif->SColorMap->Colors[fGIF->SBackGroundColor]; local 391 bgColor = SkColorSetARGB(0xFF, col.Red, col.Green, col.Blue) [all...] |
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CertificateTest.java | 817 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 819 checkAlternativeNames(f, col); 822 private void checkAlternativeNames(CertificateFactory f, Collection<List<?>> col) throws Exception { 823 assertNotNull(col); 828 col.add(new ArrayList<Object>()); 840 for (List<?> item : col) { 911 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 913 assertNotNull(f.getProvider().getName(), col); local 932 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 938 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 940 assertNotNull(f.getProvider().getName(), col); local 969 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 971 assertNotNull(f.getProvider().getName(), col); local 985 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 987 assertNotNull(f.getProvider().getName(), col); local 1001 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 1003 assertNotNull(f.getProvider().getName(), col); local 1024 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 1026 assertNotNull(f.getProvider().getName(), col); local 1040 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 1042 assertNotNull(f.getProvider().getName(), col); local 1056 Collection<List<?>> col = c.getSubjectAlternativeNames(); local 1062 Collection<List<?>> col = c.getIssuerAlternativeNames(); local [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...] |