HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 526 - 550 of 998) sorted by null

<<21222324252627282930>>

  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/styles/
style.css 121 flex-direction: column;
179 flex-direction: column;
223 flex-direction: column;
  /external/chromium_org/third_party/WebKit/Source/core/css/
mediaControls.css 42 flex-direction: column;
368 flex-flow: column;
369 flex-direction: column;
  /external/libvpx/libvpx/vp8/common/x86/
variance_impl_sse2.asm 742 paddw xmm6, xmm5 ; xmm6 += accumulated column differences
744 paddd xmm7, xmm5 ; xmm7 += accumulated square column differences
862 paddw xmm6, xmm5 ; xmm6 += accumulated column differences
866 paddd xmm7, xmm5 ; xmm7 += accumulated square column differences
    [all...]
  /external/protobuf/src/google/protobuf/
text_format.cc 206 ReportError(tokenizer_.current().line, tokenizer_.current().column,
213 ReportWarning(tokenizer_.current().line, tokenizer_.current().column,
621 virtual void AddError(int line, int column, const string& message) {
622 parser_->ReportError(line, column, message);
625 virtual void AddWarning(int line, int column, const string& message) {
626 parser_->ReportWarning(line, column, message);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncContacts.java 324 * @param column The column name in cv to find the string.
329 final String column, final int tag) throws IOException {
330 if (cv.containsKey(column)) {
331 final String value = cv.getAsString(column);
359 * @param column The column name in cv to find the string.
364 final String column, final int tag) throws IOException {
365 if (cv.containsKey(column)) {
366 final String value = cv.getAsString(column);
    [all...]
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 204 // This change adds a new authtype column to the database.
205 // The auth type column can have 4 values: 0 (None), 1 (PAP), 2 (CHAP)
215 " ADD COLUMN authtype INTEGER DEFAULT -1;");
222 " ADD COLUMN protocol TEXT DEFAULT IP;");
224 " ADD COLUMN roaming_protocol TEXT DEFAULT IP;");
230 " ADD COLUMN carrier_enabled BOOLEAN DEFAULT 1;");
232 " ADD COLUMN bearer INTEGER DEFAULT 0;");
239 " ADD COLUMN mvno_type TEXT DEFAULT '';");
241 " ADD COLUMN mvno_match_data TEXT DEFAULT '';");
448 for (String column : projectionIn)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/
NinePatchedImage.java 271 // left column
275 // right column
687 int[] column = new int[r.width]; local
690 GraphicsUtilities.getHorizontalPixels(data, r.x, r.y, r.width, column);
695 if (!Arrays.equals(column, sample)) {
703 int[] column = new int[r.height]; local
705 GraphicsUtilities.getVerticalPixels(data, r.x, r.y, r.height, column);
710 if (!Arrays.equals(column, sample)) {
  /external/blktrace/btt/doc/
btt.tex 488 points are presented with the first column (X values) being the time
489 (in seconds), and the second column (Y values) providing an on/off
564 The first column (X values) is the various IO sizes, and the second
565 column (Y values) represents the number of IOs of that size.
683 In both cases, the first column (X values) represent runtime (seconds),
684 while the second column (Y values) shows the actual latency for a
721 the start of the run) in column 1 (X values); and the difference in
722 sectors from the previous IO in column 2 (Y values). Here is a snippet
768 first column will contain a time value (seconds), and the second column
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 69 void AddError(int line, int column, const string& message) {
71 line, column, message);
89 int line, column; local
90 source_locations_.Find(descriptor, location, &line, &column);
91 wrapped_collector_->AddError(line, column, message);
1668 int column = 0; local
    [all...]
command_line_interface.cc 192 void AddError(const string& filename, int line, int column,
205 // Users typically expect 1-based line/column numbers, so we add 1
211 cerr << ":" << (line + 1) << ":" << (column + 1);
214 cerr << "(" << (line + 1) << ") : error in column=" << (column + 1);
223 void AddError(int line, int column, const string& message) {
224 AddError("input", line, column, message);
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCDatabaseMetaData.java 638 h.put(rs0.tr.column[i], Integer.valueOf(i)); // android-changed
769 h0.put(rs0.tr.column[i], Integer.valueOf(i)); // android-changed
773 h1.put(rs1.tr.column[i], Integer.valueOf(i)); // android-changed
800 h2.put(rs2.tr.column[k], Integer.valueOf(k)); // android-changed
892 h0.put(rs0.tr.column[i], Integer.valueOf(i)); // android-changed
919 h1.put(rs1.tr.column[k], Integer.valueOf(k)); // android-changed
952 h0.put(rs0.tr.column[i], Integer.valueOf(i)); // android-changed
985 h0.put(in.tr.column[i], Integer.valueOf(i)); // android-changed
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
Intermediate.cpp     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.cc 282 ReportError(tokenizer_.current().line, tokenizer_.current().column,
289 ReportWarning(tokenizer_.current().line, tokenizer_.current().column,
317 int start_column = tokenizer_.current().column;
884 virtual void AddError(int line, int column, const string& message) {
885 parser_->ReportError(line, column, message);
888 virtual void AddWarning(int line, int column, const string& message) {
889 parser_->ReportWarning(line, column, message);
    [all...]
  /external/clang/include/clang-c/
Index.h 346 * great detail, with file, line, and column information for the majority of
360 * to map a source location to a particular file, line, and column.
396 * \brief Retrieves the source location associated with a given file/line/column
402 unsigned column);
442 * \brief Retrieve the file, line, column, and offset represented by
457 * \param column [out] if non-NULL, will be set to the column to which the given
466 unsigned *column,
470 * \brief Retrieve the file, line, column, and offset represented by
486 * File: dummy.c Line: 124 Column: 1
    [all...]
  /external/chromium_org/sync/syncable/
directory_backing_store.cc 128 for (const ColumnSpec* column = begin; column != end; ++column) {
131 query.append(column->name);
133 query.append(column->spec);
353 // Version 78 added the column base_server_specifics to the metas table.
365 // Version 80 migration is adding the bag_of_chips column.
378 // Version 82 migration added transaction_version column per data type.
384 // Version 83 migration added transaction_version column per sync entry.
717 // No data migration is necessary, but we should do a column refresh
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 189 void AddError(const string& filename, int line, int column,
194 // Users typically expect 1-based line/column numbers, so we add 1
200 cerr << ":" << (line + 1) << ":" << (column + 1);
203 cerr << "(" << (line + 1) << ") : error in column=" << (column + 1);
212 void AddError(int line, int column, const string& message) {
213 AddError("input", line, column, message);
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldStmtTest.java 349 // since type of column is CHAR
516 columnObject = st.column(1);
539 columnObject = st.column(1);
542 // column declared as integer
552 assertEquals("column out of bounds", expected.getMessage());
559 assertEquals("column out of bounds", expected.getMessage());
710 columnObject = st.column(1);
726 st.column(4);
729 assertEquals("column out of bounds", expected.getMessage());
733 st.column(-1)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
flakiness_dashboard.js 227 // HTML for display of the results in the flakiness column
718 function alphanumericCompare(column, reverse)
722 var a = a[column] ? String(a[column]) : 'z';
723 var b = b[column] ? String(b[column]) : 'z';
734 function numericSort(column, reverse)
737 a = parseFloat(a[column]);
738 b = parseFloat(b[column]);
769 function sortTests(tests, column, order
    [all...]
  /external/chromium_org/base/json/
json_parser.cc 955 std::string JSONParser::FormatErrorMessage(int line, int column,
957 if (line || column) {
958 return StringPrintf("Line: %i, column: %i, %s",
959 line, column, description.c_str());
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
nvvertparse.c 79 GLint line, column; local
82 parseState->pos, &line, &column);
84 "nvfragparse.c(%d): line %d, column %d:%s (%s)\n",
85 lineNo, line, column, (char *) lineStr, msg);
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 573 TableColumn column = table.getColumn(0);
574 column.pack();
604 // adjust column size
605 column.setWidth(table.getClientArea().width);
  /external/mesa3d/src/mesa/program/
nvvertparse.c 79 GLint line, column; local
82 parseState->pos, &line, &column);
84 "nvfragparse.c(%d): line %d, column %d:%s (%s)\n",
85 lineNo, line, column, (char *) lineStr, msg);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 452 protected void logDBColumnData(Cursor cursor, String column) {
453 int index = cursor.getColumnIndex(column);
454 Log.i(LOG_TAG, "columnName: " + column);
    [all...]
  /prebuilts/devtools/tools/lib/
common.jar 
  /prebuilts/gradle-plugin/com/android/tools/common/22.2.0/
common-22.2.0.jar 

Completed in 1420 milliseconds

<<21222324252627282930>>