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

<<11121314151617181920>>

  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 164 void AddError(int line, int column, const string& message) {
166 line, column, message);
260 EXPECT_EQ(0, tokenizer.current().column);
272 EXPECT_EQ(0, tokenizer.current().column);
283 EXPECT_EQ(kSimpleTokenCases_case.input.size(), tokenizer.current().column);
374 // Test that tabs affect column numbers correctly.
382 // Test that tabs in string literals affect column numbers correctly.
440 EXPECT_EQ(0, tokenizer.current().column);
464 EXPECT_EQ(previous.column, tokenizer.previous().column);
    [all...]
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailProviderHelpers.java 241 // The helper method extracts the column indices once every time it is called,
255 private String getSortBy(String column, SortOrder sortOrder) {
256 if (column == null) {
261 return column + " ASC";
263 return column + " DESC";
265 return column;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
importer.cc 98 void AddError(int line, int column, const string& message) {
100 multi_file_error_collector_->AddError(filename_, line, column, message);
178 int line, column; local
179 owner_->source_locations_.Find(descriptor, location, &line, &column);
180 owner_->error_collector_->AddError(filename, line, column, message);
  /external/protobuf/src/google/protobuf/compiler/
importer.cc 98 void AddError(int line, int column, const string& message) {
100 multi_file_error_collector_->AddError(filename_, line, column, message);
178 int line, column; local
179 owner_->source_locations_.Find(descriptor, location, &line, &column);
180 owner_->error_collector_->AddError(filename, line, column, message);
parser.cc 242 void Parser::AddError(int line, int column, const string& error) {
244 error_collector_->AddError(line, column, error);
250 AddError(input_->current().line, input_->current().column, error);
256 int line, int column) {
258 source_location_table_->Add(descriptor, location, line, column);
266 input_->current().line, input_->current().column);
357 AddError(syntax_token.line, syntax_token.column,
480 name_token.line, name_token.column);
486 AddError(name_token.line, name_token.column,
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
AttachmentProvider.java 285 String column = projection[i]; local
286 if (Columns._ID.equals(column)) {
289 else if (Columns.DATA.equals(column)) {
292 else if (Columns.DISPLAY_NAME.equals(column)) {
295 else if (Columns.SIZE.equals(column)) {
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 49 information to developers, such as current line number and column. Furthermore,
234 and <tt>column</tt>, which are expected to indicate the current line number and
237 == A Word About <tt>line</tt> and <tt>column</tt> attributes
239 Presumably, the concept of <tt>line</tt> and <tt>column</tt> attirbutes of text
241 up (not 0). Column numbers are indexed from 0 up. Thus, examining sample text:
250 *Note:* most ANTLR runtime APIs for other languages refer to <tt>column</tt>
266 attr_accessor :column
351 also track various pieces of information such as the line and column numbers at
378 attr_reader :column
395 # [:column] the initial column number; default: +0
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayTableTest.java 162 assertEquals(expected, table.column(1));
374 assertEquals("Column 4 not in [1, 2, 3]", expected.getMessage());
427 Map<String, Character> column = table.column(4); local
428 assertTrue(column.isEmpty());
430 column.put("foo", 'd');
442 assertEquals("Column 4 not in [1, 2, 3]", expected.getMessage());
448 Map<String, Character> map = table.column(3);
AbstractTableReadTest.java 41 * @param data the table data, repeating the sequence row key, column key,
171 assertEquals(ImmutableMap.of("foo", 'a', "bar", 'b'), table.column(1));
178 table.column(null);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQueryBuilder.java 126 * from column names that the caller passes into query to database
127 * column names. This is useful for renaming columns as well as
128 * disambiguating column names when doing joins. For example you
130 * it must contain all column names the user may request, even if
133 * @param columnMap maps from the user column names to the database column names
249 String column = columns[i]; local
251 if (column != null) {
255 s.append(column);
491 * @param typeDiscriminatorColumn the name of the result column
618 String column = mProjectionMap.get(userColumn); local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa.cpp 1232 const TUint8* column = aSource; local
1236 *target++ = aDsa.iLut256[*column];
1237 column += aLineLen;
1245 const TUint8* column = aSource; local
1249 *(--endt) = aDsa.iLut256[*column];
1250 column += aLineLen;
1264 const TUint32* column = reinterpret_cast<const TUint32*>(aSource); local
1268 *target++ = *column;
1269 column += aLineLen;
1289 const TUint32* column = reinterpret_cast<const TUint32*>(aSource) local
1384 const T* column = reinterpret_cast<const T*>(aSource); local
    [all...]
dsa_new.cpp 1170 const TUint8* column = aSource; local
1174 *target++ = aDsa.iLut256[*column];
1175 column += aLineLen;
1183 const TUint8* column = aSource; local
1187 *(--endt) = aDsa.iLut256[*column];
1188 column += aLineLen;
1202 const TUint32* column = reinterpret_cast<const TUint32*>(aSource); local
1206 *target++ = *column;
1207 column += aLineLen;
1227 const TUint32* column = reinterpret_cast<const TUint32*>(aSource) local
1322 const T* column = reinterpret_cast<const T*>(aSource); local
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
picture_ops_list_view.css 7 -webkit-flex-direction: column;
  /external/chromium-trace/trace-viewer/src/ui/
overlay.css 31 -webkit-flex-flow: column;
  /external/chromium_org/chrome/browser/
certificate_manager_model.cc 71 Column column) const {
73 switch (column) {
78 // TODO(xiyuan): Put this into a column when we have js tree-table.
  /external/chromium_org/chrome/browser/resources/sync_internals/
about.css 21 -webkit-column-break-inside: avoid;
  /external/chromium_org/chrome/browser/resources/task_manager/
commands.js 54 // The 'title' column contains the icon.
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
splitView.css 89 -webkit-flex-direction: column;
  /external/eigen/blas/
dspr.f 61 * packed sequentially, column by column, so that AP( 1 )
68 * packed sequentially, column by column, so that AP( 1 )
sspr.f 61 * packed sequentially, column by column, so that AP( 1 )
68 * packed sequentially, column by column, so that AP( 1 )
  /external/protobuf/src/google/protobuf/io/
tokenizer_unittest.cc 163 void AddError(int line, int column, const string& message) {
165 line, column, message);
259 EXPECT_EQ(0, tokenizer.current().column);
270 EXPECT_EQ(0, tokenizer.current().column);
279 EXPECT_EQ(kSimpleTokenCases_case.input.size(), tokenizer.current().column);
368 // Test that tabs affect column numbers correctly.
427 EXPECT_EQ(0, tokenizer.current().column);
448 EXPECT_EQ(token.column, tokenizer.current().column);
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 40 private List<Column> columns = new ArrayList<Column>();
74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
112 * Adds a new <code>Column</code>
113 * @param column the column to add.
115 public void addColumn(Column column){
116 columns.add(column);
134 public Iterator<Column> getColumns()
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MatrixUtils.java 106 "--- invalid length. column should be 2 times larger than row.");
151 final int column = a[0].length; local
158 for (int j = 0; j < column; ++j) {
  /packages/providers/DownloadProvider/tests/public_api_access/src/com/android/providers/downloads/public_api_access_tests/
PublicApiAccessTest.java 119 for (String column : DISALLOWED_COLUMNS) {
121 values.put(column, 1);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configSectionNameDialog.py 53 self.buttonOk.grid(row=0,column=0,padx=5,pady=5)
56 self.buttonCancel.grid(row=0,column=1,padx=5,pady=5)

Completed in 1776 milliseconds

<<11121314151617181920>>