Searched defs:column (Results 26 - 50 of 149) sorted by relevance

123456

/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableTable.java72 @Override public ImmutableMap<Object, Object> column(Object columnKey) { method in class:EmptyImmutableTable
H A DForwardingTable.java55 public Map<R, V> column(C columnKey) { method in class:ForwardingTable
56 return delegate().column(columnKey);
H A DImmutableTable.java208 * Duplicate row key column key pairs are not allowed, and will cause
250 @Override public abstract ImmutableMap<R, V> column(C columnKey); method in class:ImmutableTable
H A DSingletonImmutableTable.java54 @Override public ImmutableMap<R, V> column(C columnKey) { method in class:SingletonImmutableTable
H A DTable.java31 * 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 key
190 Map<R, V> column(C columnKey); method in interface:Table
[all...]
H A DRegularImmutableTable.java99 * the columns in the second row, etc. If a column Comparator is provided
101 * first column, the rows in the second column, etc.
219 @Override public ImmutableMap<R, V> column(C columnKey) { method in class:RegularImmutableTable.SparseImmutableTable
313 @Override public ImmutableMap<R, V> column(C columnKey) { method in class:RegularImmutableTable.DenseImmutableTable
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCResultSetMetaData.java13 public String getCatalogName(int column) throws java.sql.SQLException { argument
17 public String getColumnClassName(int column) throws java.sql.SQLException { argument
18 column--;
20 if (column < 0 || column >= r.tr.ncolumns) {
24 switch (((TableResultX) r.tr).sql_type[column]) {
51 public int getColumnDisplaySize(int column) throws java.sql.SQLException { argument
55 public String getColumnLabel(int column) throws java.sql.SQLException { argument
56 column--;
59 if (column <
67 getColumnName(int column) argument
85 getColumnType(int column) argument
98 getColumnTypeName(int column) argument
124 getPrecision(int column) argument
128 getScale(int column) argument
132 getSchemaName(int column) argument
136 getTableName(int column) argument
155 isAutoIncrement(int column) argument
159 isCaseSensitive(int column) argument
163 isCurrency(int column) argument
167 isDefinitelyWritable(int column) argument
172 isNullable(int column) argument
176 isReadOnly(int column) argument
180 isSearchable(int column) argument
184 isSigned(int column) argument
188 isWritable(int column) argument
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DStmt.java172 * 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 fro
227 public Object column(int col) throws SQLite.Exception { method in class:Stmt
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/template/
H A DRenderingContext.java91 void setCurrentPosition(int line, int column); argument
H A DDefaultRenderingContext.java62 private int column; field in class:DefaultRenderingContext
120 autoEscapeContext.setCurrentPosition(line, column);
146 return "[" + getCurrentResourceName() + ":" + line + ":" + column + "]";
156 autoEscapeContext.setCurrentPosition(line, column);
177 public void setCurrentPosition(int line, int column) { argument
181 this.column = column;
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp491 * means the vector is a 1-row x M-column matrix.
493 * For mat*vec, the vector is treated as a column vector. Since
887 const unsigned column = idx->value.u[0]; local
891 /* Offset in the constant matrix to the first element of the column
894 const unsigned mat_idx = column * column_type->vector_elements;
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_bootstrap_unittest.cc75 void AddError(const string& filename, int line, int column, argument
78 filename, line, column, message);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DTextPosition.h42 * Line and column numbers could be interpreted as zero-based or 1-based. Since
62 TextPosition(NUMBER line, NUMBER column) argument
64 , m_column(column)
/external/bison/src/
H A Dprint.c136 /* Compute the width of the look-ahead token column. */
184 /* Compute the width of the look-ahead token column. */
324 /* Compute the width of the look-ahead token column. */
439 if (column + strlen(buffer) > (End)) \
442 column = 3; \
453 int column = 0;
467 column = strlen (tag);
507 column = strlen (tag);
451 int column = 0; local
/external/chromium/base/json/
H A Djson_reader.cc189 std::string JSONReader::FormatErrorMessage(int line, int column, argument
191 if (line || column) {
192 return StringPrintf("Line: %i, column: %i, %s",
193 line, column, description.c_str());
653 // Figure out the line and column the error occured at.
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_tree_model.cc113 GtkTreeViewColumn* column = gtk_tree_view_column_new(); local
115 gtk_tree_view_column_pack_start(column, image_renderer, FALSE);
116 gtk_tree_view_column_add_attribute(column, image_renderer,
122 gtk_tree_view_column_pack_start(column, text_renderer, TRUE);
123 gtk_tree_view_column_set_attributes(column, text_renderer,
132 gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), column); local
/external/chromium/chrome/browser/ui/gtk/
H A Dhung_renderer_dialog_gtk.cc37 // The GtkTreeView column ids.
132 GtkTreeViewColumn* column = gtk_tree_view_column_new(); local
134 gtk_tree_view_column_pack_start(column, renderer, FALSE);
135 gtk_tree_view_column_add_attribute(column, renderer, "pixbuf", COL_FAVICON);
137 gtk_tree_view_column_pack_start(column, renderer, TRUE);
138 gtk_tree_view_column_add_attribute(column, renderer, "text", COL_TITLE);
140 gtk_tree_view_append_column(GTK_TREE_VIEW(tree_view), column); local
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlparser.cc265 XmlParser::ParseContext::SetPosition(int line, int column, argument
268 column_number_ = column;
274 unsigned long * column,
280 if (column != NULL) {
281 *column = static_cast<unsigned long>(column_number_);
273 GetPosition(unsigned long * line, unsigned long * column, unsigned long * byte_index) argument
/external/clang/tools/libclang/
H A DCXSourceLocation.cpp122 unsigned column) {
130 SourceLocation SLoc = CXXUnit->getLocation(File, line, column);
134 << "\", " << line << ", " << column << ") = invalid\n"; local
140 << "\", " << line << ", " << column << ") = "
171 unsigned *column, unsigned *offset) {
176 if (column)
177 *column = 0;
184 unsigned *column, unsigned *offset = 0) {
189 if (column)
190 *column
119 clang_getLocation(CXTranslationUnit tu, CXFile file, unsigned line, unsigned column) argument
170 createNullLocation(CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
183 createNullLocation(CXString *filename, unsigned *line, unsigned *column, unsigned *offset = 0) argument
198 clang_getExpansionLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
240 clang_getPresumedLocation(CXSourceLocation location, CXString *filename, unsigned *line, unsigned *column) argument
270 clang_getInstantiationLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
279 clang_getSpellingLocation(CXSourceLocation location, CXFile *file, unsigned *line, unsigned *column, unsigned *offset) argument
[all...]
/external/icu4c/common/
H A Dpropsvec.c153 int32_t column,
167 column<0 || column>=(pv->columns-2)
180 column+=2; /* skip range start and limit columns */
194 splitFirstRow= (UBool)(start!=(UChar32)firstRow[0] && value!=(firstRow[column]&mask));
195 splitLastRow= (UBool)(limit!=(UChar32)lastRow[1] && value!=(lastRow[column]&mask));
264 firstRow+=column;
265 lastRow+=column;
277 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column) { argument
281 if(pv->isCompacted || c<0 || c>UPVEC_MAX_CP || column<
151 upvec_setValue(UPropsVectors *pv, UChar32 start, UChar32 end, int32_t column, uint32_t value, uint32_t mask, UErrorCode *pErrorCode) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
H A DAutoEscapeContext.java157 * @param column column number within line.
159 public void setCurrentPosition(int line, int column) { argument
161 htmlParser.setColumnNumber(column);
179 * Returns the current column number within the resource being auto escaped.
270 // ParseException displays the proper position, so do not store line and column
/external/oprofile/utils/
H A Dophelp.c66 static void word_wrap(int indent, int *column, char *msg) argument
70 if (*column + wlen > LINE_LEN) {
72 *column = indent;
75 *column += wlen + 1;
89 int column; local
129 column = 8;
130 word_wrap(8, &column, event->desc);
132 word_wrap(8, &column, buf);
144 column = 14;
145 word_wrap(14, &column, even
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dimporter_unittest.cc66 void AddError(const string& filename, int line, int column, argument
69 filename, line, column, message);
/external/protobuf/src/google/protobuf/io/
H A Dtokenizer.h62 // column numbers. The numbers are zero-based, so you may want to add
64 virtual void AddError(int line, int column, const string& message) = 0;
67 // column numbers. The numbers are zero-based, so you may want to add
69 virtual void AddWarning(int line, int column, const string& message) { } argument
121 // "line" and "column" specify the position of the first character of
124 int column; member in struct:google::protobuf::io::Tokenizer::Token
193 // Line and column number of current_char_ within the whole input stream.
228 // Convenience method to add an error at the current line and column.
H A Dtokenizer_unittest.cc163 void AddError(int line, int column, const string& message) { argument
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);

Completed in 503 milliseconds

123456