/external/lldb/include/lldb/API/ |
SBLineEntry.h | 57 SetColumn (uint32_t column);
|
/external/lldb/include/lldb/Symbol/ |
LineEntry.h | 150 uint16_t column; ///< The column number of the source line, or zero if there is no column information. member in struct:lldb_private::LineEntry
|
/external/mesa3d/src/mesa/main/ |
convolve.c | 156 GLsizei columnBufSize, GLvoid *column, 167 GLvoid *row, GLvoid *column, GLvoid *span) 170 INT_MAX, column, span); 175 _mesa_SeparableFilter2D(GLenum target, GLenum internalFormat, GLsizei width, GLsizei height, GLenum format, GLenum type, const GLvoid *row, const GLvoid *column)
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXTable.cpp | 228 // 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) 502 if (column >= columnCount() || row >= rowCount() [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/ |
Dbg.stg | 120 [debugListener locationLine:<ruleDescriptor.tree.line> column:<ruleDescriptor.tree.column>];<\n> 124 [debugListener locationLine:<ruleDescriptor.EORNode.line> column:<ruleDescriptor.EORNode.column>];<\n> 197 "[debugListener locationLine:<it.line> column:<it.pos>];"
|
/external/chromium-trace/trace-viewer/src/cc/ |
layer_picker.css | 7 -webkit-flex-direction: column;
|
/external/chromium_org/chrome/browser/resources/print_preview/settings/ |
page_settings.css | 5 #page-settings .left-column {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
DataGrid.js | 100 var column = columnsArray[i]; 101 var columnIdentifier = column.identifier = column.id || i; 102 this._columns[columnIdentifier] = column; 103 if (column.disclosure) 107 cell.className = columnIdentifier + "-column"; 112 if (column.titleDOMFragment) 113 div.appendChild(column.titleDOMFragment); 115 div.textContent = column.title; 118 if (column.sort) [all...] |
/external/chromium_org/third_party/icu/source/common/ |
propsvec.h | 80 * In rows for code points [start..end], select the column, 88 int32_t column, 97 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column);
|
/external/icu/icu4c/source/common/ |
propsvec.h | 80 * In rows for code points [start..end], select the column, 88 int32_t column, 97 upvec_getValue(const UPropsVectors *pv, UChar32 c, int32_t column);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
DTMException.java | 227 int column = locator.getColumnNumber(); local 239 if (0 != column) { 240 sbuffer.append("; Column#: "); 241 sbuffer.append(column); 260 int column = locator.getColumnNumber(); local 272 if (0 != column) { 273 sbuffer.append("; Column#: "); 274 sbuffer.append(column);
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InjectedScriptBase.cpp | 60 int column = 0; local 61 if (object->getNumber("column", &column)) 62 exceptionDetails->setColumn(column); 70 int column = 0; local 71 stackFrame->getNumber("column", &column); 84 .setColumnNumber(column);
|
/external/chromium_org/v8/test/mjsunit/es6/ |
generators-mirror.js | 58 function assertSourceLocation(loc, line, column) { 60 assertEquals(column, loc.column);
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-streams.rb | 27 @stream.column.should == 1 32 @stream.column.should == 2 37 @stream.column.should == 0 42 @stream.column.should == 1 47 @stream.column.should == 2 52 @stream.column.should == 3 57 @stream.column.should == 4 62 @stream.column.should == 0 67 @stream.column.should == 0 72 @stream.column.should == [all...] |
/external/chromium_org/chrome/browser/resources/options/ |
cookies_view.css | 29 .cookies-column-headers { 37 .cookies-column-headers > * { 41 .cookies-column-headers h3 { 48 .cookies-site-column { 53 .cookies-data-column {
|
/external/oprofile/utils/ |
ophelp.c | 66 static void word_wrap(int indent, int *column, char *msg) 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, event->unit->um[j].desc) [all...] |
/external/chromium_org/testing/gtest/scripts/ |
pump.py | 88 """Represents a position (line and column) in a text file.""" 90 def __init__(self, line=-1, column=-1): 92 self.column = column 95 return self.line == rhs.line and self.column == rhs.column 102 self.line == rhs.line and self.column < rhs.column) 117 return '%s(%s)' % (self.line + 1, self.column) 120 return Cursor(self.line, self.column + offset [all...] |
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
viewrtree.tcl | 89 grid configure .select -row 0 -column 0 -columnspan 2 -sticky nsew 90 grid configure .b -row 1 -column 0 -columnspan 2 -sticky nsew 91 grid configure .l -row 2 -column 0 -sticky nsew 92 grid configure .status -row 3 -column 0 -columnspan 3 -sticky nsew 94 grid configure .title -row 0 -column 2 -sticky nsew 95 grid configure .c -row 1 -column 2 -rowspan 2 -sticky nsew 96 grid configure .ls -row 2 -column 1 -sticky nsew
|
/cts/tests/tests/widget/src/android/widget/cts/ |
TableRow_LayoutParamsTest.java | 62 assertEquals(-1, layoutParams.column); 70 assertEquals(-1, layoutParams.column); 75 assertEquals(-1, layoutParams.column); 79 assertEquals(5, layoutParams.column); 85 assertEquals(0, layoutParams.column); 91 assertEquals(0, layoutParams.column); 100 assertEquals(1, layoutParams.column);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
error.rb | 107 attr_accessor :input, :index, :line, :column, :symbol, :token, :source_name 110 @index = @line = @column = nil 119 @column = @symbol.column 123 @column = @input.column 126 if @symbol.respond_to?( :line ) and @symbol.respond_to?( :column ) 127 @line, @column = @symbol.line, @symbol.column 133 if @symbol.respond_to?( :line ) and @symbol.respond_to?( :column ) [all...] |
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/new/js/ |
app.js | 42 // These column types are used by the Column class. 51 // Filter types are used by the Column class. 182 // Index of the column that should provide the sort key 188 // Array of functions for each column used for comparison during sort. 217 var otherCols = [ Column.regular(c.COL_BUGS) ]; 297 * @param {Column} col Column that we are trying to render. 299 * @param {string} defaultVal Default value if not an image column. 302 * of a image column [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
DirectoryContentView.js | 72 var column = this.sortColumnIdentifier(); 73 if (!column) 75 this.sortNodes(WebInspector.DirectoryContentView.Node.comparator(column), !this.isSortOrderAscending()); 104 * @param {string} column 107 WebInspector.DirectoryContentView.Node.comparator = function(column) 111 switch (column) {
|
/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/chromium_org/third_party/webrtc/libjingle/xmllite/ |
xmlparser.cc | 234 XmlParser::ParseContext::SetPosition(int line, int column, 237 column_number_ = column; 243 unsigned long * column, 249 if (column != NULL) { 250 *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
|