HomeSort by relevance Sort by last modified time
    Searched refs:row (Results 1 - 25 of 2622) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/hs20/server/www/
add-free.php 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
18 if ($row == false) {
22 $uri = $row['redirect_uri'];
23 $rowid = $row['rowid'];
24 $realm = $row['realm'];
26 $row = $db->query("SELECT value FROM osu_config WHERE realm='$realm' AND field='free_account'")->fetch(); variable
27 if (!$row || strlen($row['value']) == 0) {
31 $user = $row['value'];
33 $row = $db->query("SELECT password FROM users WHERE identity='$user' AND realm='$realm'")->fetch() variable
    [all...]
redirect.php 15 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
16 if ($row == false) {
20 $uri = $row['redirect_uri'];
24 $user = $row['user'];
25 $realm = $row['realm'];
cert-enroll.php 17 $row = $db->query("SELECT rowid,* FROM sessions WHERE id='$id'")->fetch(); variable
18 if ($row == false) {
22 $uri = $row['redirect_uri'];
23 $rowid = $row['rowid'];
24 $realm = $row['realm'];
users.php 22 $row = $db->query("SELECT dump FROM eventlog WHERE rowid=$id")->fetch(); variable
23 $dump = $row['dump'];
41 $row = $db->query("SELECT $mo FROM users WHERE rowid=$id")->fetch(); variable
44 echo $row[$mo];
49 $row = $db->query("SELECT cert_pem FROM users WHERE rowid=$id")->fetch(); variable
51 echo $row['cert_pem'];
128 $row = $db->query("SELECT rowid,* FROM users WHERE rowid=$id")->fetch(); variable
130 echo "<H3>" . $row['identity'] . "@" . $row['realm'] . "</H3>\n";
133 if (strlen($row['devinfo']) > 0)
    [all...]
  /external/eigen/bench/btl/generic_bench/init/
init_matrix.hh 28 BTL_DONT_INLINE void init_row(Vector & X, int size, int row){
33 X[j]=typename Vector::value_type(init_function(row,j));
45 for (int row=0; row<A.size() ; row++){
46 init_row<init_function>(A[row],size,row);
53 for (int row=0; row<A.size() ; row++
    [all...]
  /external/skia/src/gpu/
GrRectanizer_pow2.cpp 24 Row* row = &fRows[HeightToRowIndex(height)]; local
25 SkASSERT(row->fRowHeight == 0 || row->fRowHeight == height);
27 if (0 == row->fRowHeight) {
31 this->initRow(row, height);
33 if (!row->canAddWidth(width, this->width())) {
37 // that row is now "full", so retarget our Row record for
39 this->initRow(row, height)
    [all...]
  /external/libavc/common/
ih264_padding.c 70 * The top row of a 2d array is replicated for pad_size times at the top
95 WORD32 row; local
97 for(row = 1; row <= pad_size; row++)
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
111 * The bottom row of a 2d array is replicated for pad_size times at the bottom
136 WORD32 row; local
138 for(row = 1; row <= pad_size; row++
175 WORD32 row; local
218 WORD32 row, col; local
271 WORD32 row; local
312 WORD32 row, col; local
    [all...]
  /external/libhevc/common/
ihevc_padding.c 95 WORD32 row; local
97 for(row = 1; row <= pad_size; row++)
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
100 memcpy(pu1_src + (ht + row - 1) * src_strd,
149 WORD32 row; local
157 for(row = 0; row < ht; row++
216 WORD32 row; local
273 WORD32 row; local
327 WORD32 row; local
382 WORD32 row; local
438 WORD32 row; local
503 WORD32 row; local
559 WORD32 row; local
    [all...]
  /external/v8/tools/
process-heap-prof.py 64 for row in logreader:
65 if row[0] == 'heap-sample-begin' and row[1] == 'Heap':
66 sample_time = float(row[3])/1000.0
72 elif row[0] == 'heap-sample-end' and row[1] == 'Heap':
75 elif row[0] == itemname and sampling:
76 print(row[1]),
78 print('%d' % (int(row[2]))),
80 print('%d' % (int(row[3])))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusChangeWithInterestingRectHintTest.java 37 * when taking focus to best select the internal row to show as selected.
73 for (int row = 0; row < numRows; row++) {
75 if ((row % 2) == 0) {
76 assertEquals("row " + row + ": should be at left column",
77 row, mLeftColumn.getSelectedRow());
80 assertTrue("row " + row + ": should be at middle column"
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/MLCPSolvers/
btLemkeSolver.h 66 for (int row=0;row<n;row++)
68 q1[row] = -b[row];
82 for (int row=0;row<A.rows();row++)
86 A1.setElem(row,col,A(row,col))
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
ColorTest.java 45 column1.add("WHITE", "default", Color.WHITE).row(); method
46 column1.add("LIGHT_GRAY", "default", Color.LIGHT_GRAY).row(); method
47 column1.add("GRAY", "default", Color.GRAY).row(); method
48 column1.add("DARK_GRAY", "default", Color.DARK_GRAY).row(); method
50 column1.add("BLUE", "default", Color.BLUE).row(); method
51 column1.add("NAVY", "default", Color.NAVY).row(); method
52 column1.add("ROYAL", "default", Color.ROYAL).row(); method
53 column1.add("SLATE", "default", Color.SLATE).row(); method
54 column1.add("SKY", "default", Color.SKY).row(); method
55 column1.add("CYAN", "default", Color.CYAN).row(); method
56 column1.add("TEAL", "default", Color.TEAL).row(); method
59 column2.add("GREEN", "default", Color.GREEN).row(); method
60 column2.add("CHARTREUSE", "default", Color.CHARTREUSE).row(); method
61 column2.add("LIME", "default", Color.LIME).row(); method
62 column2.add("FOREST", "default", Color.FOREST).row(); method
63 column2.add("OLIVE", "default", Color.OLIVE).row(); method
65 column2.add("YELLOW", "default", Color.YELLOW).row(); method
66 column2.add("GOLD", "default", Color.GOLD).row(); method
67 column2.add("GOLDENROD", "default", Color.GOLDENROD).row(); method
68 column2.add("ORANGE", "default", Color.ORANGE).row(); method
70 column2.add("BROWN", "default", Color.BROWN).row(); method
71 column2.add("TAN", "default", Color.TAN).row(); method
72 column2.add("FIREBRICK", "default", Color.FIREBRICK).row(); method
75 column3.add("RED", "default", Color.RED).row(); method
76 column3.add("SCARLET", "default", Color.SCARLET).row(); method
77 column3.add("CORAL", "default", Color.CORAL).row(); method
78 column3.add("SALMON", "default", Color.SALMON).row(); method
79 column3.add("PINK", "default", Color.PINK).row(); method
80 column3.add("MAGENTA", "default", Color.MAGENTA).row(); method
82 column3.add("PURPLE", "default", Color.PURPLE).row(); method
83 column3.add("VIOLET", "default", Color.VIOLET).row(); method
84 column3.add("MAROON", "default", Color.MAROON).row(); method
    [all...]
  /external/eigen/doc/snippets/
MatrixBase_row.cpp 2 m.row(1) = Vector3d(4,5,6);
MatrixBase_setOnes.cpp 2 m.row(1).setOnes();
MatrixBase_setZero.cpp 2 m.row(1).setZero();
  /external/libavc/common/x86/
ih264_padding_ssse3.c 97 WORD32 row; local
103 for(row = 0; row < ht; row++)
164 WORD32 row; local
169 for(row = 0; row < ht; row++)
230 WORD32 row; local
236 for(row = 0; row < ht; row++
297 WORD32 row; local
    [all...]
  /frameworks/rs/
rsMatrix2x2.h 28 inline float get(uint32_t col, uint32_t row) const {
29 return m[col*2 + row];
32 inline void set(uint32_t col, uint32_t row, float v) {
33 m[col*2 + row] = v;
rsMatrix3x3.h 28 inline float get(uint32_t col, uint32_t row) const {
29 return m[col*3 + row];
32 inline void set(uint32_t col, uint32_t row, float v) {
33 m[col*3 + row] = v;
  /cts/tools/dasm/src/java_cup/
parse_action_table.java 7 * It has one row for each state in the parse machine, and a column for
67 for (int row = 0; row < num_states(); row++)
69 for (int col = 0; col < under_state[row].size(); col++)
72 act = under_state[row].under_term[col];
112 for (int row = 0; row < num_states(); row++)
114 result += "From state #" + row + "\n"
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
QRDecompositionImpl.java 100 for (int row = minor; row < m; row++) {
101 final double c = qrtMinor[row];
134 for (int row = minor; row < m; row++) {
135 alpha -= qrtCol[row] * qrtMinor[row];
140 for (int row = minor; row < m; row++)
    [all...]
  /external/libhevc/common/arm/
ihevc_intra_pred_luma_mode_3_to_9.s 179 sub r1, r1, #9 @ref_main_idx + 2nt - (8 + 1)(two_nt - idx - row ) for 8 & 8 - 1row
196 vmov.i8 d27, #7 @row 0 to 7
198 vsub.s8 d8, d8, d2 @ref_main_idx (sub row)
199 vsub.s8 d8, d26, d8 @ref_main_idx (row 0)
201 vsub.s8 d9, d8, d2 @ref_main_idx + 1 (row 0)
202 vtbl.8 d12, {d0,d1}, d8 @load from ref_main_idx (row 0)
205 vtbl.8 d13, {d0,d1}, d9 @load from ref_main_idx + 1 (row 0)
206 vsub.s8 d4, d8, d2 @ref_main_idx (row 1)
207 vsub.s8 d5, d9, d2 @ref_main_idx + 1 (row 1
    [all...]
  /external/chromium-trace/catapult/common/lab/
hardware.py 60 row = {
76 row[key] = value
79 row = {key.replace('_', ' '): value for key, value in row.iteritems()}
80 if 'osfamily' in row:
81 row['os family'] = row.pop('osfamily')
82 if 'product name' not in row and slave_name.startswith('slave'):
83 row['product name'] = 'Google Compute Engine'
86 writer.writerow(row)
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
aligned_array.h 19 // Wrapper class for aligned arrays. Every row (and the first dimension) are
50 T* Row(size_t row) {
51 RTC_CHECK_LE(row, rows_);
52 return head_row_[row];
55 const T* Row(size_t row) const {
56 RTC_CHECK_LE(row, rows_);
57 return head_row_[row];
60 T& At(size_t row, size_t col)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
AbstractKeyboardBuilder.java 24 * A keyboard consists of an array of rows, and a row consists of an array of elements. Each row
25 * may have different number of elements. A element of a keyboard can be specified by a row number
57 final E[] row = rows[rowIndex]; local
58 mRows[rowIndex] = Arrays.copyOf(row, row.length);
79 * Get the current contents of the specified row.
80 * @param row the row number to get the contents.
81 * @return the array of elements at row number <code>row</code>
    [all...]
  /external/eigen/test/
schur_real.cpp 22 for(int row = 2; row < size; ++row) {
23 for(int col = 0; col < row - 1; ++col) {
24 VERIFY(T(row,col) == Scalar(0));
30 for(int row = 1; row < size; ++row) {
31 if (T(row,row-1) != Scalar(0))
    [all...]

Completed in 4570 milliseconds

1 2 3 4 5 6 7 8 91011>>