HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 226 - 250 of 1173) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py 10 the starting (row, column) indices of the token (a 2-tuple of ints)
11 the ending (row, column) indices of the token (a 2-tuple of ints)
275 column where the token begins in the source; a 2-tuple (erow, ecol) of
276 ints specifying the row and column where the token ends in the source;
317 column = 0
320 column += 1
322 column = (column//tabsize + 1)*tabsize
324 column = 0
344 if column > indents[-1]: # count indents or dedent
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlparser.cc 251 XmlParser::ParseContext::SetPosition(int line, int column,
254 column_number_ = column;
260 unsigned long * column,
266 if (column != NULL) {
267 *column = static_cast<unsigned long>(column_number_);
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugLine.h 116 column(rhs.column),
132 column = rhs.column;
151 uint16_t column; // An unsigned integer indicating a column number within a source line. Columns are numbered beginning at 1. The value 0 is reserved to indicate that a statement begins at the 'left edge' of the line. member in struct:DWARFDebugLine::Row
  /packages/apps/Exchange/src/com/android/exchange/provider/
ExchangeDirectoryProvider.java 155 LogUtils.e(TAG, "Unsupported column: " + columnName);
235 final String column = projection[i]; local
236 if (column.equals(Directory.ACCOUNT_NAME)) {
238 } else if (column.equals(Directory.ACCOUNT_TYPE)) {
240 } else if (column.equals(Directory.TYPE_RESOURCE_ID)) {
252 } else if (column.equals(Directory.DISPLAY_NAME)) {
264 } else if (column.equals(Directory.EXPORT_SUPPORT)) {
266 } else if (column.equals(Directory.SHORTCUT_SUPPORT)) {
390 final String column = projection[i]; local
391 if (Contacts.DISPLAY_NAME.equals(column) ||
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
GridLayoutConverter.java 98 * <li> Use the layout_width and layout_height attributes on views to infer column and
170 // row and/or a stretchable column in the layout.
171 // In a GridLayout, a row or column is stretchable if it defines a gravity (regardless
172 // of what the gravity is -- in other words, a column is not just stretchable if it
174 // in the row/column have to be stretchable for the overall row/column to be
213 // TODO: May also have to increment column count!
227 int column = columnFixed.size(); local
258 sb.append(ATTR_LAYOUT_COLUMN).append('=').append('"').append(Integer.toString(column));
344 int column = view.getColumn() local
667 int column = view.getColumn(); local
714 int column; local
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 200 * <p>Map columns from a secondary table onto the current result set. References to the column
201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code
204 * @param column Column name to join on. Must be the same in both tables.
208 public SelectionBuilder mapToTable(String column, String table) {
209 mProjectionMap.put(column, table + "." + column);
214 * Create a new column based on custom criteria (such as aggregate functions).
216 * <p>This adds a new column to the result set, based upon custom criteria in SQL format. Thi
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 200 * <p>Map columns from a secondary table onto the current result set. References to the column
201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code
204 * @param column Column name to join on. Must be the same in both tables.
208 public SelectionBuilder mapToTable(String column, String table) {
209 mProjectionMap.put(column, table + "." + column);
214 * Create a new column based on custom criteria (such as aggregate functions).
216 * <p>This adds a new column to the result set, based upon custom criteria in SQL format. Thi
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 200 * <p>Map columns from a secondary table onto the current result set. References to the column
201 * specified in {@code column} will be replaced with {@code table.column} in the SQL {@code
204 * @param column Column name to join on. Must be the same in both tables.
208 public SelectionBuilder mapToTable(String column, String table) {
209 mProjectionMap.put(column, table + "." + column);
214 * Create a new column based on custom criteria (such as aggregate functions).
216 * <p>This adds a new column to the result set, based upon custom criteria in SQL format. Thi
    [all...]
  /external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
var_array_buffer.cc 75 /// <code>column</code> in <code>image_data</code>. <code>value</code> must be
77 void DrawBar(uint32_t column, double value, pp::ImageData* image_data) {
82 assert(column < image_width);
86 image_buffer[row * image_width + column] = kBlue;
  /external/chromium_org/net/ftp/
ftp_util_unittest.cc 232 int column; member in struct:__anon13256::__anon13262
248 kTestCases[i].text, kTestCases[i].column));
252 ASCIIToUTF16(kTestCases[i].text), kTestCases[i].column));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
TextRange.js 48 * @param {number} column
51 WebInspector.TextRange.createFromLocation = function(line, column)
53 return new WebInspector.TextRange(line, column, line, column);
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
flakiness_dashboard_tests.css 49 /* Let the bugs column wrap. */
148 -webkit-column-count: 3;
149 -webkit-column-gap: 25px;
150 -webkit-column-rule: 1px dashed black;
151 -moz-column-count: 3;
152 -moz-column-gap: 25px;
153 -moz-column-rule: 1px dashed black;
  /external/chromium_org/third_party/mesa/src/src/glx/
renderpix.c 123 const GLvoid * column)
156 column, pc, NULL);
189 (*gc->fillImage) (gc, 1, height, 1, 1, format, type, column,
  /external/chromium_org/ui/views/controls/table/
table_utils_unittest.cc 30 ui::TableColumn column; local
31 column.width = width;
32 return column;
59 // Verifies if no size is specified the last column gets all the available
75 // Verifies a single column with a percent=1 is resized correctly.
101 // Verify padding for the first column is honored.
111 // Just enough space to show the first two columns. Should force last column
  /external/mesa3d/src/glx/
renderpix.c 123 const GLvoid * column)
156 column, pc, NULL);
189 (*gc->fillImage) (gc, 1, height, 1, 1, format, type, column,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 43 row = column = 0
49 label.grid(row=row, column=column)
51 label.grid(row=row+1, column=column)
52 column = column + 1
53 if column >= 10:
55 column = 0
419 self.canvas.grid(row=0, column=0, sticky="nsew"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
TreeWidget.py 43 row = column = 0
49 label.grid(row=row, column=column)
51 label.grid(row=row+1, column=column)
52 column = column + 1
53 if column >= 10:
55 column = 0
419 self.canvas.grid(row=0, column=0, sticky="nsew"
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
ftlcdfil.c 103 FT_Byte* column = bitmap->buffer; local
107 for ( ; width > 0; width--, column++ )
109 FT_Byte* col = column;
228 FT_Byte* column = bitmap->buffer; local
231 for ( ; width > 0; width--, column++ )
233 FT_Byte* col = column;
  /external/freetype/src/base/
ftlcdfil.c 105 FT_Byte* column = bitmap->buffer; local
109 for ( ; width > 0; width--, column++ )
111 FT_Byte* col = column;
229 FT_Byte* column = bitmap->buffer; local
232 for ( ; width > 0; width--, column++ )
234 FT_Byte* col = column;
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
fxft_ftlcdfil.c 104 FT_Byte* column = bitmap->buffer; local
108 for ( ; width > 0; width--, column++ )
110 FT_Byte* col = column;
229 FT_Byte* column = bitmap->buffer; local
232 for ( ; width > 0; width--, column++ )
234 FT_Byte* col = column;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarNonDeterminismMessage.java 62 column = decisionASTNode.getCharPositionInLine();
84 column = ruleStart.associatedASTNode.getCharPositionInLine();
  /external/chromium-trace/trace-viewer/src/ui/
quad_stack.css 8 -webkit-flex-direction: column;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProviderSuggestionsCursor.java 59 public String getString(int column) {
60 switch (column) {
  /external/chromium_org/chrome/browser/resources/extensions/
extension_load_error.css 14 flex-direction: column;
  /external/chromium_org/chrome/browser/resources/net_internals/
logs_view.css 19 .logs-view-log-table-button-column {

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>