HomeSort by relevance Sort by last modified time
    Searched refs:column (Results 351 - 375 of 1202) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarInsufficientPredicatesMessage.java 56 column = decisionASTNode.getCharPositionInLine();
  /external/chromium_org/chrome/browser/
certificate_manager_model.h 35 enum Column {
75 // Get the data to be displayed in |column| for the given |cert|.
76 base::string16 GetColumnText(const net::X509Certificate& cert, Column column) const;
  /external/chromium_org/third_party/angle/src/compiler/translator/
StructureHLSL.cpp 99 // Note HLSL row major packing corresponds to GL API column-major, and vice-versa, since we
397 int column = 0;
398 while (remainingComponents > 0 && column < parameter.getCols())
400 constructor += "[" + str(column) + "]";
424 column++;
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/linux/
main_wnd.h 85 GtkTreeViewColumn* column);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.h 68 unsigned long column; /* source column */ member in struct:dwarf2_loc
  /external/clang/bindings/python/tests/cindex/
test_tokens.py 37 eq_(loc.column, 5)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 60 PrintSourceLocation(&frame_desc, info.file, info.line, info.column);
  /external/eigen/lapack/
ilaclc.f 36 *> ILACLC scans A for its last non-zero column.
110 * Now scan each column from the end, returning with the first non-zero.
iladlc.f 36 *> ILADLC scans A for its last non-zero column.
110 * Now scan each column from the end, returning with the first non-zero.
ilaslc.f 36 *> ILASLC scans A for its last non-zero column.
110 * Now scan each column from the end, returning with the first non-zero.
ilazlc.f 36 *> ILAZLC scans A for its last non-zero column.
110 * Now scan each column from the end, returning with the first non-zero.
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableTable.java 72 @Override public ImmutableMap<Object, Object> column(Object columnKey) { method in class:EmptyImmutableTable
Table.java 31 * column key, with a single value. A table may be sparse, with only a small
32 * fraction of row key / column key pairs possessing a corresponding value.
36 * column with a row key / value map. Note that, in some implementations, data
37 * access by column key may have fewer supported operations or worse performance
50 * @param <C> the type of the table column keys
63 * row and column keys.
66 * @param columnKey key of column to search for
80 * column.
82 * @param columnKey key of column to search for
95 * Returns the value corresponding to the given row and column keys, o
190 Map<R, V> column(C columnKey); method in interface:Table
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
EmptyImmutableTableTest.java 69 assertEquals(ImmutableMap.of(), INSTANCE.column(1));
ForwardingTableTest.java 61 forward.column(1);
62 assertEquals("[column(Object)]", getCalls());
  /external/javasqlite/src/main/java/SQLite/
Stmt.java 172 * Retrieve integer column from exec'ed SQLite3 statement.
173 * @param col column number, 0-based
174 * @return int column value
180 * Retrieve long column from exec'ed SQLite3 statement.
181 * @param col column number, 0-based
182 * @return long column value
187 * Retrieve double column from exec'ed SQLite3 statement.
188 * @param col column number, 0-based
189 * @return double column value
194 * Retrieve blob column from exec'ed SQLite3 statement
227 public Object column(int col) throws SQLite.Exception { method in class:Stmt
    [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 61 // Column - the column position.
62 unsigned Column;
81 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags,
83 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa),
96 /// getColumn - Get the Column of this MCDwarfLoc.
97 unsigned getColumn() const { return Column; }
114 /// setColumn - Set the Column of this MCDwarfLoc.
115 void setColumn(unsigned column) { Column = column;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 33 if (index.column() == 0) {
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 218 // Cursor column offsets for the above virtual columns.
220 // database cursor. So, for example, the column called
286 public String getString(int column) {
287 // if we're returning one of the columns in the underlying database column
289 if (column < mColumnCount) {
290 return mDatabaseCursor.getString(column);
297 switch (column - mColumnCount) {
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
StaggeredGridView.java 71 * <p>StaggeredGridView presents a multi-column grid with consistent column sizes
103 * view has been removed. These let positioning and the choice of column for an item
281 public int column; field in class:StaggeredGridView.LayoutRecord
290 // all layoutrecords are purged when column count changes.
327 String result = "LayoutRecord{c=" + column + ", id=" + id + " h=" + height +
448 throw new IllegalArgumentException("Column count must be at least 1 - received " +
454 // When switching column count, for now, don't restore scroll position, and just
485 * Set a minimum column width for
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
sad_tab_view.cc 150 for (size_t column = 0; column < 3; column++)
  /external/chromium_org/chrome/test/chromedriver/chrome/
console_logger_unittest.cc 117 int column,
127 if (column != -1)
128 out_params->SetInteger("message.column", column);
155 base::DictionaryValue params3; // Line without column, no source.
159 base::DictionaryValue params4; // Column without line.
191 "{\"message\":{\"column\":5,\"level\":\"gaga\",\"line\":50,"
195 "{\"message\":{\"column\":6,\"line\":60,"
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTableCell.h 62 void setCol(unsigned column)
64 if (UNLIKELY(column > maxColumnIndex))
67 m_column = column;
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.h 82 // and column numbers for errors reported by DescriptorPool during validation.
198 void AddError(int line, int column, const string& error);
200 // Invokes error_collector_->AddError() with the line and column number
437 // DescriptorPool when validating descriptors -- to line and column numbers
450 // *column with the line and column numbers. If not found, sets *line to
451 // -1 and *column to 0 (since line = -1 is used to mean "error has no exact
456 int* line, int* column) const;
461 int line, int column);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
text_format.h 229 int column; member in struct:google::protobuf::TextFormat::ParseLocation
231 ParseLocation() : line(-1), column(-1) {}
233 : line(line_param), column(column_param) {}

Completed in 954 milliseconds

<<11121314151617181920>>