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

<<11121314151617181920>>

  /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);
parser.cc 285 void Parser::AddError(int line, int column, const string& error) {
287 error_collector_->AddError(line, column, error);
293 AddError(input_->current().line, input_->current().column, error);
302 location_->add_span(parser_->input_->current().column);
328 location_->add_span(parser_->input_->current().column);
343 location_->set_span(1, token.column);
475 AddError(syntax_token.line, syntax_token.column,
732 AddError(name_token.line, name_token.column,
947 // TODO(sanjay): Interpret line/column numbers to preserve formatting
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
RegularImmutableTableTest.java 119 testInstance.column(1));
120 assertEquals(ImmutableMap.of('a', "baz"), testInstance.column(2));
121 assertEquals(ImmutableMap.of(), testInstance.column(3));
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_subpel_variance_impl_sse2.asm 70 paddw xmm6, xmm5 ; xmm6 += accumulated column differences
74 paddd xmm7, xmm5 ; xmm7 += accumulated square column differences
177 paddw xmm6, xmm5 ; xmm6 += accumulated column differences
181 paddd xmm7, xmm5 ; xmm7 += accumulated square column differences
283 paddw xmm6, xmm5 ; xmm6 += accumulated column differences
287 paddd xmm7, xmm5 ; xmm7 += accumulated square column differences
  /packages/apps/Contacts/src/com/android/contacts/editor/
StructuredNameEditorView.java 79 public void onFieldChanged(String column, String value) {
80 if (!isFieldChanged(column, value)) {
84 // First save the new value for the column.
85 saveValue(column, value);
LabeledEditorView.java 288 public void onFieldChanged(String column, String value) {
289 if (!isFieldChanged(column, value)) {
294 saveValue(column, value);
300 protected void saveValue(String column, String value) {
301 mEntry.put(column, value);
326 protected boolean isFieldChanged(String column, String value) {
327 final String dbValue = mEntry.getAsString(column);
  /external/bison/src/
print.c 135 /* Compute the width of the lookahead token column. */
183 /* Compute the width of the lookahead token column. */
263 /* Compute the width of the lookahead token column. */
392 if (column + strlen(buffer) > (End)) \
395 column = 3; \
406 int column = 0;
420 column = strlen (tag);
460 column = strlen (tag);
404 int column = 0; local
  /external/clang/tools/c-index-test/
c-index-test.c 586 unsigned line, column; local
621 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
622 printf("%d:%d", line, column);
627 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
628 printf(":%d:%d", line, column);
736 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
738 clang_getCString(Name), line, column);
750 clang_getSpellingLocation(Loc, 0, &line, &column, 0);
752 lineCols[I].col = column;
975 unsigned line, column; local
1102 unsigned line, column; local
1869 unsigned column; local
1993 unsigned column; member in struct:__anon19026
2078 unsigned line, column; local
2419 unsigned line, column; local
2462 unsigned line, column; local
3104 unsigned column, second_column; local
3597 unsigned line, column, offset; local
3654 unsigned line, column, offset; local
    [all...]
  /external/elfutils/libdw/
dwarf_getsrclines.c 101 new_line->line.column = column; \
349 size_t column = 0; local
421 column = 0;
543 /* Takes one uleb128 parameter which is stored in column. */
548 column = u128;
  /external/protobuf/src/google/protobuf/compiler/
parser_unittest.cc 66 void AddError(int line, int column, const string& message) {
68 line, column, message);
86 int line, column; local
87 source_locations_.Find(descriptor, location, &line, &column);
88 wrapped_collector_->AddError(line, column, message);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
image.c 92 * \param column column of pixel in the image
103 GLint img, GLint row, GLint column )
152 + (skippixels + column) / 8;
186 + (skippixels + column) * bytes_per_pixel;
207 * \param column column of pixel in the image
219 GLint img, GLint row, GLint column )
224 format, type, img, row, column);
235 GLint column )
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 206 * <code>get(float[])</code> returns the matrix in row-major or column-major order.
213 * false for column major (translation in elements 12, 13, 14 for a 4x4).
267 * parameter. This column is returned as a <code>Vector3f</code> object.
270 * the column to retrieve. Must be between 0 and 2.
271 * @return the column specified by the index.
279 * parameter. This column is returned as a <code>Vector3f</code> object.
282 * the column to retrieve. Must be between 0 and 2.
286 * @return the column specified by the index.
309 logger.warning("Invalid column index.");
310 throw new IllegalArgumentException("Invalid column index. " + i)
    [all...]
  /external/mesa3d/src/mesa/main/
image.c 92 * \param column column of pixel in the image
103 GLint img, GLint row, GLint column )
152 + (skippixels + column) / 8;
186 + (skippixels + column) * bytes_per_pixel;
207 * \param column column of pixel in the image
219 GLint img, GLint row, GLint column )
224 format, type, img, row, column);
235 GLint column )
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
GLFunctionTraceViewer.java 538 // column showing the GL context id
541 TreeColumn column = tvc.getColumn(); local
542 column.setText("Function");
543 column.setWidth(500);
545 // column showing the GL function duration (wall clock time)
548 column = tvc.getColumn();
549 column.setText("Wall Time (ns)");
550 column.setWidth(150);
551 column.setAlignment(SWT.RIGHT);
553 // column showing the GL function duration (thread time
    [all...]
  /external/chromium_org/third_party/icu/source/common/
uchar.c 488 u_getUnicodeProperties(UChar32 c, int32_t column) {
491 if(column==-1) {
496 column<0 || column>=propsVectorsColumns
501 return propsVectors[vecIndex+column];
506 uprv_getMaxValues(int32_t column) {
507 switch(column) {
uprops.cpp 51 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.
323 int32_t column; // SRC_PROPSVEC column, or "source" if mask==0 member in struct:IntProperty
332 return (int32_t)(u_getUnicodeProperties(c, prop.column)&prop.mask)>>prop.shift;
336 return (uprv_getMaxValues(prop.column)&prop.mask)>>prop.shift;
446 * column, mask and shift values for int-value properties from u_getUnicodeProperties()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_atifragshader.c 258 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);
  /external/icu4c/common/
uprops.cpp 51 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;
420 * column, mask and shift values for int-value properties from u_getUnicodeProperties()
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 258 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);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 205 current_line = lines[start_position.row][start_position.column:]
206 starting_offset = start_position.column
231 current_line = lines[start_position.row][:start_position.column]
391 def __init__(self, row, column):
393 self.column = column
396 return '(%s, %s)' % (self.row, self.column)
399 return self.row.__cmp__(other.row) or self.column.__cmp__(other.column)
431 trimmed_lines[-1] = trimmed_lines[-1][:end_position.column]
    [all...]
  /external/bison/doc/
refcard.tex 9 % For printing reference cards to use in books, specify one column
43 % 1 column per page
102 %%%% smallcopyrightnotice for two column printing on one page.
138 column\if 1\ncolumns\else s\fi\space per page]}
195 % Leave 3 column code here in case size increases.
211 %\immediate\write16{Column \folio\abc\space starts with \firstmark}
215 %% in case we never use \columnb (two-column mode)
447 \key{Access data's column location.} {@{\it x}.{\it column\_spec}}
454 first_line} and {\tt last_line}, and {\it column\_spec} is specifie
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
AutoTableLayout.cpp 72 // A cell originates in this column. Ensure we have
73 // a min/max width of at least 1px for this column now.
120 // This spanning cell originates in this column. Insert the cell into spanning cells list.
150 for (RenderTableCol* column = m_table->firstColumn(); column; column = column->nextColumn()) {
151 if (column->isTableColumnGroupWithColumnChildren())
152 groupLogicalWidth = column->style()->logicalWidth();
154 Length colLogicalWidth = column->style()->logicalWidth()
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-line.c 103 unsigned long column; member in struct:dwarf2_line_state
369 if (state->column != loc->column) {
370 state->column = loc->column;
372 yasm_intnum_create_uint(state->column));
607 state.column = 0;
622 bcinfo.loc.column = 0;
    [all...]
  /external/chromium_org/v8/src/
messages.js 413 // Determine start, end and column.
420 var column = position - start;
426 column += this.column_offset;
430 return new SourceLocation(this, position, line, column, start, end);
435 * Get information on a specific source line and column possibly offset by a
437 * a line and column position. The fixed source position offset is typically
438 * used to find a source position in a function based on a line and column in
442 * @param {number} opt_column The column in within the line. Default value is 0
444 * source from where the line and column calculation starts.
457 // Default is first column. If on the first line add the offset within th
    [all...]
  /external/v8/src/
messages.js 382 // Determine start, end and column.
389 var column = position - start;
395 column += this.column_offset;
399 return new SourceLocation(this, position, line, column, start, end);
404 * Get information on a specific source line and column possibly offset by a
406 * a line and column position. The fixed source position offset is typically
407 * used to find a source position in a function based on a line and column in
411 * @param {number} opt_column The column in within the line. Default value is 0
413 * source from where the line and column calculation starts.
426 // Default is first column. If on the first line add the offset within th
    [all...]

Completed in 3842 milliseconds

<<11121314151617181920>>