Searched defs:column (Results 101 - 125 of 259) sorted by relevance

1234567891011

/external/lldb/include/lldb/Symbol/
H A DLineTable.h80 uint16_t column,
98 uint16_t column,
278 column (0),
299 column (_column),
317 column = 0;
333 SCALAR_COMPARE (lhs.column, rhs.column);
366 uint16_t column; ///< The column number of the source line, or zero if there is no column informatio member in struct:lldb_private::LineTable::Entry
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h116 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
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp590 * means the vector is a 1-row x M-column matrix.
592 * For mat*vec, the vector is treated as a column vector. Since
1084 const unsigned column = idx->value.u[0]; local
1088 /* Offset in the constant matrix to the first element of the column
1091 const unsigned mat_idx = column * column_type->vector_elements;
/external/mesa3d/src/mapi/glapi/tests/
H A Dcheck_table.cpp1600 gl_dispatch_stub_359(GLenum target, GLenum format, GLenum type, GLvoid * row, GLvoid * column, GLvoid * span) argument
1606 (void) column;
/external/mesa3d/src/mesa/swrast/
H A Ds_atifragshader.c258 const SWspan *span, GLuint column, GLuint idx)
266 span->array->attribs[FRAG_ATTRIB_TEX0 + pass_tex][column]);
279 GLuint column, GLuint idx)
289 span->array->attribs[FRAG_ATTRIB_TEX0 + coord_source][column]);
313 * \param column - which pixel [i] we're operating on in the span
318 GLuint column)
338 handle_pass_op(machine, texinst, span, column, j);
340 handle_sample_op(ctx, machine, texinst, span, column, j);
257 handle_pass_op(struct atifs_machine *machine, struct atifs_setupinst *texinst, const SWspan *span, GLuint column, GLuint idx) argument
277 handle_sample_op(struct gl_context * ctx, struct atifs_machine *machine, struct atifs_setupinst *texinst, const SWspan *span, GLuint column, GLuint idx) argument
316 execute_shader(struct gl_context *ctx, const struct ati_fragment_shader *shader, struct atifs_machine *machine, const SWspan *span, GLuint column) argument
/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);
/external/protobuf/src/google/protobuf/
H A Dtext_format_unittest.cc694 void AddError(int line, int column, const string& message) { argument
696 line + 1, column + 1, message);
699 void AddWarning(int line, int column, const string& message) { argument
700 AddError(line, column, "WARNING:" + message);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAbstractCursor.java110 public String getColumnName(int column) { argument
111 return columnNameArray[column];
125 if (idx >= 0) return idx; else throw new IllegalArgumentException("column does not exist");
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDebuggerScript.js195 info.columnNumber = locations[0].column;
296 return [1, String(e), String(details.syntaxErrorMessage), Number(startPosition.line), Number(startPosition.column)];
409 location = { line: 0, column: 0 };
419 function column()
421 return ensureLocation().column;
476 columnNumber: stepInPositionsV8[i].position.column
488 "column": column,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
H A DScriptFormatterWorker.js141 * @param {number} column
144 function processToken(tokenValue, tokenType, column, newColumn)
147 currentFunction = { line: i, column: column, name: previousToken + " " + tokenValue };
154 currentFunction = { line: i, column: column, name: tokenValue };
163 currentFunction = { line: i, column: column, name: previousIdentifier };
188 processedChunkCharacters += newColumn - column;
224 * @param {number} column
[all...]
/external/chromium_org/chrome/browser/history/
H A Ddownload_database.cc43 // Binds/reads the given file path to the given column of the given statement.
204 // provides no way to rename or delete a column.
372 int column = 0; local
377 int64 signed_id = statement_main.ColumnInt64(column++);
379 info->current_path = ColumnFilePath(statement_main, column++);
380 info->target_path = ColumnFilePath(statement_main, column++);
381 info->mime_type = statement_main.ColumnString(column++);
382 info->original_mime_type = statement_main.ColumnString(column++);
384 statement_main.ColumnInt64(column++));
385 info->received_bytes = statement_main.ColumnInt64(column
434 int column = 0; local
509 int column = 0; local
571 int column = 0; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXTable.cpp228 // If the first column is comprised of all <th> tags, assume it is a data table.
399 // can cause us to miss rows if we just check the first column.
416 AXTableColumn* column = toAXTableColumn(axCache->getOrCreate(ColumnRole)); local
417 column->setColumnIndex((int)i);
418 column->setParent(this);
419 m_columns.append(column);
420 if (!column->accessibilityIsIgnored())
421 m_children.append(column);
499 AXTableCell* AXTable::cellForColumnAndRow(unsigned column, unsigned row) argument
502 if (column >
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Duprops.cpp51 int32_t column; // SRC_PROPSVEC column, or "source" if mask==0 member in struct:BinaryProperty
58 return (u_getUnicodeProperties(c, prop.column)&prop.mask)!=0;
213 * column and mask values for binary properties from u_getUnicodeProperties().
218 * For them, column is the UPropertySource value.
297 int32_t column; // SRC_PROPSVEC column, or "source" if mask==0 member in struct:IntProperty
306 return (int32_t)(u_getUnicodeProperties(c, prop.column)&prop.mask)>>prop.shift;
310 return (uprv_getMaxValues(prop.column)&prop.mask)>>prop.shift;
424 * column, mas
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dnvvertparse.c79 GLint line, column; local
82 parseState->pos, &line, &column);
84 "nvfragparse.c(%d): line %d, column %d:%s (%s)\n",
85 lineNo, line, column, (char *) lineStr, msg);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dimporter.cc98 void AddError(int line, int column, const string& message) { argument
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/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dtext_format_unittest.cc758 int index, int line, int column) {
762 EXPECT_EQ(column, location.column);
775 void AddError(int line, int column, const string& message) { argument
777 line + 1, column + 1, message);
780 void AddWarning(int line, int column, const string& message) { argument
781 AddError(line, column, "WARNING:" + message);
756 ExpectLocation(TextFormat::ParseInfoTree* tree, const Descriptor* d, const string& field_name, int index, int line, int column) argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DNearestPoint.cpp134 int row, column; /* Table indices */ variable
160 for (column = 0; column <= DEGREE; column++) {
161 cdTable[row][column] = V2Dot(&d[row], &c[column]);
/external/chromium_org/v8/src/
H A Dcpu-profiler.cc254 int line, int column) {
262 column);
251 CodeCreateEvent(Logger::LogEventsAndTags tag, Code* code, SharedFunctionInfo* shared, CompilationInfo* info, Name* script_name, int line, int column) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.cc161 int line, int column) {
167 if (column > 0)
168 buffer->append(":%d", column);
160 PrintSourceLocation(InternalScopedString *buffer, const char *file, int line, int column) argument
/external/deqp/framework/opengl/
H A DgluVarTypeUtil.hpp132 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/elfutils/0.153/libdw/
H A Ddwarf_getsrclines.c330 unsigned int column = 0; local
377 SET (column);
456 column = 0;
589 /* Takes one uleb128 parameter which is stored in column. */
594 column = u128;
/external/guava/guava/src/com/google/common/collect/
H A DArrayTable.java42 * <p>The allowed row and column keys must be supplied when the table is
43 * created. The table always contains a mapping for every row key / column pair.
44 * The value corresponding to a given row and column is null unless another
48 * keys and the number of supplied column keys. The {@code remove} and {@code
52 * <p>The ordering of the row and column keys provided when the table is
61 * <p>Null row keys or column keys are not permitted.
64 * where the array indices correspond to the position of a row or column in the
87 * @param columnKeys column keys that may be stored in the generated table
99 * iterable, to specify the allowed row keys and/or column keys. Note that
108 * separate mapping with column ke
526 public Map<R, V> column(C columnKey) { method in class:ArrayTable
[all...]

Completed in 791 milliseconds

1234567891011