HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 401 - 425 of 1530) sorted by null

<<11121314151617181920>>

  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
Cinematic.java 351 Map<String, Object> row = data.get(type); local
352 if (row == null) {
353 row = new HashMap<String, Object>();
355 row.put(name, object);
360 Map<String, Object> row = eventsData.get(type); local
361 if (row != null) {
362 return row.get(name);
370 Map<String, Object> row = eventsData.get(type); local
371 if (row != null) {
372 row.remove(name)
    [all...]
  /external/jpeg/
jcprepct.c 33 * For the simple (no-context-row) case, we just need to buffer one
34 * row group's worth of pixels for the downsampling step. At the bottom of
35 * the image, we pad to a full row group by replicating the last pixel row.
36 * The downsampler's last output row is then replicated if needed to pad
37 * out to a full iMCU row.
39 * When providing context rows, we must buffer three row groups' worth of
40 * pixels. Three row groups are physically allocated, but the row pointer
41 * arrays are made five row groups high, with the extra pointers above an
109 register int row; local
219 int row; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcprepct.c 33 * For the simple (no-context-row) case, we just need to buffer one
34 * row group's worth of pixels for the downsampling step. At the bottom of
35 * the image, we pad to a full row group by replicating the last pixel row.
36 * The downsampler's last output row is then replicated if needed to pad
37 * out to a full iMCU row.
39 * When providing context rows, we must buffer three row groups' worth of
40 * pixels. Three row groups are physically allocated, but the row pointer
41 * arrays are made five row groups high, with the extra pointers above an
109 register int row; local
219 int row; local
    [all...]
  /external/skia/include/utils/
SkMatrix44.h 197 * get a value from the matrix. The row,col parameters work as follows:
202 inline SkMScalar get(int row, int col) const {
203 SkASSERT((unsigned)row <= 3);
205 return fMat[col][row];
209 * set a value in the matrix. The row,col parameters work as follows:
214 inline void set(int row, int col, SkMScalar value) {
215 SkASSERT((unsigned)row <= 3);
217 fMat[col][row] = value;
221 inline double getDouble(int row, int col) const {
222 return SkMScalarToDouble(this->get(row, col))
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldFunctionContextTest.java 51 String row[] = (String[]) res.rows.elementAt(0); local
52 String val = row[0];
64 String row[] = (String[]) res.rows.elementAt(0); local
65 String val = row[0];
77 String row[] = (String[]) res.rows.elementAt(0); local
78 String val = row[0];
122 String row[] = (String[]) res.rows.elementAt(0); local
123 String val = row[0];
160 String row[] = (String[]) res.rows.elementAt(0); local
161 String val = row[0]
    [all...]
  /external/chromium_org/third_party/openssl/openssl/apps/
ca.c 1721 OPENSSL_STRING row[DB_NUMBER]; local
2414 char *row[DB_NUMBER],**rrow,**irow; local
2531 char *row[DB_NUMBER],**rrow; local
    [all...]
  /external/openssl/apps/
ca.c 1721 OPENSSL_STRING row[DB_NUMBER]; local
2414 char *row[DB_NUMBER],**rrow,**irow; local
2531 char *row[DB_NUMBER],**rrow; local
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 145 static void rpng2_win_display_row(ulg row);
449 " -nommx*\tdisable optimized MMX routines for decoding row filters,\n"
818 ulg i, row; local
853 for (row = 0; row < rpng2_info.height; ++row) {
854 yidx = row % bgscale;
855 even_odd_vert = (row / bgscale) & 1;
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngpriv.h     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_conceal.c 55 static u32 ConcealMb(mbStorage_t *pMb, image_t *currImage, u32 row, u32 col,
89 decoded macroblock and concealing the row containing the macroblock
90 in question. After that all macroblocks above the row in question
129 u32 row, col; local
158 i = row = col = 0;
166 row++;
189 /* start from the row containing the first correct macroblock, conceal the
190 * row in question, all rows above that row and then continue downwards */
191 mb = pStorage->mb + row * width
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 79 * a row-vector (if there is only one row). */
270 for (Index row=0; row<nm.outerSize(); ++row)
273 for (typename NestedCleaned::InnerIterator it(nm.derived(), row); it; ++it)
289 Index row = 0; local
292 for ( ; row<it.index(); ++row)
295 ++row;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
NotificationStation.java 316 final View row = convertView != null ? convertView : createRow(parent); local
317 row.setTag(info);
321 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(info.icon);
324 ((ImageView) row.findViewById(R.id.pkgicon)).setImageDrawable(info.pkgicon);
327 ((DateTimeView) row.findViewById(R.id.timestamp)).setTime(info.timestamp);
330 ((TextView) row.findViewById(android.R.id.title)).setText(info.title);
333 ((TextView) row.findViewById(R.id.pkgname)).setText(info.pkgname);
336 // ((TextView) row.findViewById(R.id.extra)).setText(
339 row.findViewById(R.id.extra).setVisibility(View.GONE);
341 row.setAlpha(info.active ? 1.0f : 0.5f)
381 final View row = mInflater.inflate(R.layout.notification_log_row, parent, false); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
keybindingDialog.py 55 self.buttonOK.grid(row=0,column=0,padx=5,pady=5)
58 self.buttonCancel.grid(row=0,column=1,padx=5,pady=5)
63 self.frameKeySeqAdvanced.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5)
64 self.frameKeySeqBasic.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5)
66 self.frameHelpAdvanced.grid(row=1,column=0,sticky=NSEW,padx=5)
67 self.frameControlsBasic.grid(row=1,column=0,sticky=NSEW,padx=5)
71 self.buttonLevel.grid(row=2,column=0,stick=EW,padx=5,pady=5)
85 check.grid(row=0,column=column,padx=2,sticky=W)
96 labelFnAdvice.grid(row=1,column=0,columnspan=4,padx=2,sticky=W)
100 self.listKeysFinal.grid(row=0,column=4,rowspan=4,sticky=NS
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
keybindingDialog.py 55 self.buttonOK.grid(row=0,column=0,padx=5,pady=5)
58 self.buttonCancel.grid(row=0,column=1,padx=5,pady=5)
63 self.frameKeySeqAdvanced.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5)
64 self.frameKeySeqBasic.grid(row=0,column=0,sticky=NSEW,padx=5,pady=5)
66 self.frameHelpAdvanced.grid(row=1,column=0,sticky=NSEW,padx=5)
67 self.frameControlsBasic.grid(row=1,column=0,sticky=NSEW,padx=5)
71 self.buttonLevel.grid(row=2,column=0,stick=EW,padx=5,pady=5)
85 check.grid(row=0,column=column,padx=2,sticky=W)
96 labelFnAdvice.grid(row=1,column=0,columnspan=4,padx=2,sticky=W)
100 self.listKeysFinal.grid(row=0,column=4,rowspan=4,sticky=NS
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 9 * Current row to be retrieved.
11 private int row; field in class:JDBCResultSet
62 * Flag for cursor being (not) on insert row.
67 * Row buffer for insert/update row.
79 this.row = -1;
134 if (row < 0) {
138 System.arraycopy((String []) tr.rows.elementAt(row), 0,
147 row++;
148 return row < tr.nrows
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
certificate_viewer.cc 32 void AddTitle(GtkTable* table, int row, const std::string& text) {
36 row, row + 1);
39 void AddKeyValue(GtkTable* table, int row, const std::string& text,
45 0, 1, row, row + 1);
51 1, 2, row, row + 1);
217 int row = 0; local
220 AddTitle(table, row++
    [all...]
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor_table_unittest.cc 38 bool RowsAreEqual(const AutocompleteActionPredictorTable::Row& lhs,
39 const AutocompleteActionPredictorTable::Row& rhs) const;
85 test_db_.push_back(AutocompleteActionPredictorTable::Row(
89 test_db_.push_back(AutocompleteActionPredictorTable::Row(
93 test_db_.push_back(AutocompleteActionPredictorTable::Row(
120 const AutocompleteActionPredictorTable::Row& lhs,
121 const AutocompleteActionPredictorTable::Row& rhs) const {
133 AutocompleteActionPredictorTable::Row row; local
134 db_->autocomplete_table()->GetRow(test_db_[0].id, &row);
195 AutocompleteActionPredictorTable::Row row; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
certificate_viewer_gtk.cc 35 void AddTitle(GtkTable* table, int row, const std::string& text) {
39 row, row + 1);
42 void AddKeyValue(GtkTable* table, int row, const std::string& text,
48 0, 1, row, row + 1);
54 1, 2, row, row + 1);
227 int row = 0; local
230 AddTitle(table, row++
    [all...]
task_manager_gtk.cc 499 g_signal_connect(treeview_, "row-activated",
654 std::string TaskManagerGtk::GetModelText(int row, int col_id) {
655 return UTF16ToUTF8(model_->GetResourceById(row, col_id));
658 GdkPixbuf* TaskManagerGtk::GetModelIcon(int row) {
659 SkBitmap icon = *model_->GetResourceIcon(row).bitmap();
670 void TaskManagerGtk::SetRowDataFromModel(int row, GtkTreeIter* iter) {
671 GdkPixbuf* icon = GetModelIcon(row);
672 std::string task = GetModelText(row, IDS_TASK_MANAGER_TASK_COLUMN);
674 GetModelText(row, IDS_TASK_MANAGER_PROFILE_NAME_COLUMN);
677 GetModelText(row, IDS_TASK_MANAGER_SHARED_MEM_COLUMN)
752 int row = gtk_tree::GetRowNumForPath(path); local
883 int row = gtk_tree::GetRowNumForPath(path); local
915 int row = gtk_tree::GetRowNumForPath(child_path); local
    [all...]
  /external/chromium_org/ui/views/controls/tree/
tree_view.h 32 // it does not store any row information, but instead calculates it as
107 // Returns the node for the specified row, or NULL for an invalid row index.
108 ui::TreeModelNode* GetNodeForRow(int row);
110 // Maps a node to a row, returns -1 if node is not valid.
153 virtual void SetSelectedRow(int row) OVERRIDE;
154 virtual string16 GetTextForRow(int row) OVERRIDE;
236 // Row of the root node. This varies depending upon whether the root is
266 // the row |*row|. |row| is updated as this walks the tree. Depth is the dept
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_syswm.c 66 int row, col;
169 for ( row=0; row<icon->h; ++row ) {
191 for ( row=0; row<icon->h; ++row ) {
  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 149 * @param rowDelay the delay by which each row animation must be offset
188 * row to the other. The delay is expressed as a fraction of the
203 * children's animations are offset from one row to the other.
306 final int row = getTransformedRowIndex(params); local
324 viewDelay = (long) (row * rowDelay + column * rowsCount * rowDelay);
328 viewDelay = (long) (column * columnDelay + row * columnsCount * columnDelay);
333 viewDelay = (long) (column * columnDelay + row * rowDelay);
374 index = params.rowsCount - 1 - params.row;
384 index = params.row;
410 * The view group's row to which the view belongs
412 public int row; field in class:GridLayoutAnimationController.AnimationParameters
    [all...]
  /packages/apps/Gallery2/src/com/android/photos/shims/
MediaSetLoader.java 110 final Object[] row = new Object[AlbumSetLoader.PROJECTION.length]; local
116 row[AlbumSetLoader.INDEX_ID] = i;
117 row[AlbumSetLoader.INDEX_TITLE] = m.getName();
118 row[AlbumSetLoader.INDEX_COUNT] = m.getMediaItemCount();
119 row[AlbumSetLoader.INDEX_SUPPORTED_OPERATIONS] = m.getSupportedOperations();
122 row[AlbumSetLoader.INDEX_TIMESTAMP] = coverItem.getDateInMs();
125 cursor.addRow(row);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 255 HashMap<String, Object> row = new HashMap<String, Object>(); local
256 listViewData.add(row);
273 row.put("feature", f.name);
274 row.put("icon", statusIcon);
281 HashMap<String, Object> row = new HashMap<String, Object>(); local
282 listViewData.add(row);
283 row.put("feature", feature);
287 row.put("icon", R.drawable.fs_error);
291 row.put("icon", R.drawable.fs_warning);
  /external/chromium_org/chrome/browser/history/
in_memory_url_index.cc 210 service, details->row, languages_, scheme_whitelist_);
217 for (URLRows::const_iterator row = details->changed_urls.begin();
218 row != details->changed_urls.end(); ++row)
220 private_data_->UpdateURL(service, *row, languages_, scheme_whitelist_);
228 for (URLRows::const_iterator row = details->rows.begin();
229 row != details->rows.end(); ++row)
230 needs_to_be_cached_ |= private_data_->DeleteURL(row->url());

Completed in 1655 milliseconds

<<11121314151617181920>>