HomeSort by relevance Sort by last modified time
    Searched defs:column (Results 101 - 125 of 1667) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 144 String column = projection[i]; local
145 if (PicasaColumns.USER_ACCOUNT.equals(column)) {
147 } else if (PicasaColumns.PICASA_ID.equals(column)) {
149 } else if (ImageColumns.DISPLAY_NAME.equals(column)) {
151 } else if (ImageColumns.SIZE.equals(column)){
153 } else if (ImageColumns.MIME_TYPE.equals(column)) {
155 } else if (ImageColumns.DATE_TAKEN.equals(column)) {
157 } else if (ImageColumns.LATITUDE.equals(column)) {
159 } else if (ImageColumns.LONGITUDE.equals(column)) {
161 } else if (ImageColumns.ORIENTATION.equals(column)) {
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseDatabaseHelperUpgradeTest.java 42 * The column info returned by PRAGMA table_info()
83 TableColumn column = new TableColumn(); local
84 column.cid = cursor.getInt(cidIndex);
85 column.name = cursor.getString(nameIndex);
86 column.type = cursor.getString(typeIndex);
87 column.notnull = cursor.getInt(notNullIndex) != 0;
88 column.dflt_value = cursor.getString(dfltValueIndex);
89 column.pk = cursor.getInt(pkIndex);
91 addColumn(column);
100 private void addColumn(TableColumn column) {
106 final TableColumn column = mColumns.get(name); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pytree.py 358 column = 0 # Column where this token tarts in the input variable in class:Leaf
372 self._prefix, (self.lineno, self.column) = context
403 (self.prefix, (self.lineno, self.column)),
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Type_Definitions.py 179 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem
180 """column - a column of a list view """
187 """visible - is this column visible """
191 """width - the width of this column """
195 columns = column
201 """sort column - the column that the list view is sorted on """
267 column._superclassnames = []
268 column._privpropdict =
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pytree.py 358 column = 0 # Column where this token tarts in the input variable in class:Leaf
372 self._prefix, (self.lineno, self.column) = context
403 (self.prefix, (self.lineno, self.column)),
  /prebuilts/jdk/jdk8/darwin-x86/sample/lambda/BulkDataOperations/src/
CSVProcessor.java 90 //Assume that the first line contains column names.
93 //Calculate an index of the column in question.
94 int column = getColumnNumber(header, args[1]); local
113 * values in the specified column.
116 = Comparator.comparing(str -> getCell(str, column),
133 br.lines().filter(str -> pattern.test(getCell(str, column)))
139 * Group lines by values in the column with collect(...), and
141 * the column.
144 Collectors.groupingBy(str -> getCell(str, column),
167 br.lines().collect(new Statistics(column)));
218 int column = header.indexOf(name); local
272 private final int column; field in class:CSVProcessor.Statistics
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/BulkDataOperations/src/
CSVProcessor.java 90 //Assume that the first line contains column names.
93 //Calculate an index of the column in question.
94 int column = getColumnNumber(header, args[1]); local
113 * values in the specified column.
116 = Comparator.comparing(str -> getCell(str, column),
133 br.lines().filter(str -> pattern.test(getCell(str, column)))
139 * Group lines by values in the column with collect(...), and
141 * the column.
144 Collectors.groupingBy(str -> getCell(str, column),
167 br.lines().collect(new Statistics(column)));
218 int column = header.indexOf(name); local
272 private final int column; field in class:CSVProcessor.Statistics
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
tokenizer.h 63 // column numbers. The numbers are zero-based, so you may want to add
65 virtual void AddError(int line, int column, const string& message) = 0;
68 // column numbers. The numbers are zero-based, so you may want to add
70 virtual void AddWarning(int line, int column, const string& message) { }
122 // "line" and "column" specify the position of the first character of
125 int column; member in struct:google::protobuf::io::Tokenizer::Token
247 // Line and column number of current_char_ within the whole input stream.
286 // Convenience method to add an error at the current line and column.
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
tokenizer.h 63 // column numbers. The numbers are zero-based, so you may want to add
65 virtual void AddError(int line, int column, const string& message) = 0;
68 // column numbers. The numbers are zero-based, so you may want to add
70 virtual void AddWarning(int line, int column, const string& message) { }
122 // "line" and "column" specify the position of the first character of
125 int column; member in struct:google::protobuf::io::Tokenizer::Token
247 // Line and column number of current_char_ within the whole input stream.
286 // Convenience method to add an error at the current line and column.
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
tokenizer.h 63 // column numbers. The numbers are zero-based, so you may want to add
65 virtual void AddError(int line, int column, const string& message) = 0;
68 // column numbers. The numbers are zero-based, so you may want to add
70 virtual void AddWarning(int line, int column, const string& message) { }
122 // "line" and "column" specify the position of the first character of
125 int column; member in struct:google::protobuf::io::Tokenizer::Token
247 // Line and column number of current_char_ within the whole input stream.
286 // Convenience method to add an error at the current line and column.
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
Common.h 224 void init() { name = nullptr; string = 0; line = 0; column = 0; }
235 int column; member in struct:glslang::TSourceLoc
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 358 column = 0 # Column where this token tarts in the input variable in class:Leaf
372 self._prefix, (self.lineno, self.column) = context
403 (self.prefix, (self.lineno, self.column)),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Finder/
Type_Definitions.py 179 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem
180 """column - a column of a list view """
187 """visible - is this column visible """
191 """width - the width of this column """
195 columns = column
201 """sort column - the column that the list view is sorted on """
267 column._superclassnames = []
268 column._privpropdict =
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 358 column = 0 # Column where this token tarts in the input variable in class:Leaf
372 self._prefix, (self.lineno, self.column) = context
403 (self.prefix, (self.lineno, self.column)),
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
tokenizer.h 55 // By "column number", the proto compiler refers to a count of the number
57 // the next multiple of 8 bytes. Note in particular that column numbers
58 // are zero-based, while many user interfaces use one-based column numbers.
70 // column numbers. The numbers are zero-based, so you may want to add
72 virtual void AddError(int line, ColumnNumber column,
76 // column numbers. The numbers are zero-based, so you may want to add
78 virtual void AddWarning(int line, ColumnNumber column,
131 // "line" and "column" specify the position of the first character of
134 ColumnNumber column; member in struct:google::protobuf::io::Tokenizer::Token
271 // Line and column number of current_char_ within the whole input stream
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
text_format.h 358 int column; member in struct:google::protobuf::TextFormat::ParseLocation
360 ParseLocation() : line(-1), column(-1) {}
362 : line(line_param), column(column_param) {}
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
tokenizer.h 63 // column numbers. The numbers are zero-based, so you may want to add
65 virtual void AddError(int line, int column, const string& message) = 0;
68 // column numbers. The numbers are zero-based, so you may want to add
70 virtual void AddWarning(int line, int column, const string& message) { }
122 // "line" and "column" specify the position of the first character of
125 int column; member in struct:google::protobuf::io::Tokenizer::Token
247 // Line and column number of current_char_ within the whole input stream.
286 // Convenience method to add an error at the current line and column.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 69 for (int column = 0; column < grid.actualColumnCount; column++) {
70 int x = grid.getColumnX(column);
276 for (int column = 1; column < grid.actualColumnCount; column++) {
277 int x = grid.getColumnX(column);
287 int column = columnMatch.cellIndex; local
292 Rect cellBounds = grid.getCellBounds(row, column, 1, 1)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiFlagAttributeNode.java 244 final TableColumn column = new TableColumn(mTable, SWT.NONE); local
278 // Add a listener that will resize the column to the full width of the table
279 // so that only one column appears in the table even if the dialog is resized.
284 column.setWidth(r.width);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java 220 // Add all available size to the first column
222 TreeColumn column = mTree.getColumn(i); local
223 availableWidth -= column.getWidth();
427 LintColumnLabelProvider(LintColumn column) {
428 mColumn = column;
616 // ---- Column Persistence ----
622 // omitting the location column etc
631 LintColumn column = (LintColumn) treeColumn.getData(KEY_COLUMN); local
634 int width = getColumnWidth(column, mTreePainted);
636 columns[positions[i]] = column;
652 LintColumn column = columns[i]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
pyexpat.c 127 int column = XML_GetErrorColumnNumber(parser); local
131 sprintf(buffer, "%.200s: line %i, column %i",
132 XML_ErrorString(code), lineno, column);
136 && set_error_attr(err, "offset", column)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
pyexpat.c 127 int column = XML_GetErrorColumnNumber(parser); local
131 sprintf(buffer, "%.200s: line %i, column %i",
132 XML_ErrorString(code), lineno, column);
136 && set_error_attr(err, "offset", column)
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
SpreadsheetDataProcessor.java 133 int column = (int) headerIndices.get(1).isNumber().doubleValue(); local
134 CellInfo cellInfo = spreadsheet.getCellInfo(row, column);
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 132 SubTypeAccess& column (int ndx) { m_path.push_back(VarTypeComponent(VarTypeComponent::MATRIX_COLUMN, ndx)); DE_ASSERT(isValid()); return *this; } //!< Access column. function in class:glu::SubTypeAccess
138 SubTypeAccess column (int ndx) const { return SubTypeAccess(*this).column(ndx); } function in class:glu::SubTypeAccess
  /external/freetype/src/winfonts/
winfnt.c 1079 FT_Byte* column; local
    [all...]

Completed in 1111 milliseconds

1 2 3 45 6 7 8 91011>>