Searched defs:column (Results 1 - 25 of 149) sorted by relevance

123456

/external/webkit/Source/WebCore/html/
H A DHTMLDataGridColElement.h57 DataGridColumn* column() const { return m_column.get(); } function in class:WebCore::HTMLDataGridColElement
H A DDataGridColumnList.cpp70 DataGridColumn* DataGridColumnList::add(DataGridColumn* column) argument
72 if (column->primary())
73 m_primaryColumn = column;
74 m_columns.append(column);
75 column->setColumnList(this);
77 return column;
/external/bison/src/
H A Dlocation.h36 /* The (origin-1) column just after the boundary. This is neither a
37 byte count, nor a character count; it is a column count.
38 If this is INT_MAX, the column number has overflowed. */
39 int column; member in struct:__anon331
47 return (a.column == b.column
/external/javasqlite/src/main/java/SQLite/
H A DTableResult.java48 public String column[]; field in class:TableResult
96 column = new String[0];
108 column = coldata;
109 ncolumns = column.length;
144 sb.append(column[i] == null ? "NULL" : column[i]);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverAutoEscapingException.java26 public JSilverAutoEscapingException(String message, String templateName, int line, int column) { argument
27 super(createMessage(message, templateName, line, column));
37 private static String createMessage(String message, String resourceName, int line, int column) { argument
45 if (column != UNKNOWN_POSITION) {
46 result.append(" column=").append(column);
H A DJSilverBadSyntaxException.java28 private final int column; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
43 * @param column number of a column in {@code resourceName} where error occurred (ignored if set
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
53 this.column = column;
57 int line, int column) {
68 if (column !
48 JSilverBadSyntaxException(String message, String lineContent, String resourceName, int line, int column, Throwable cause) argument
56 makeMessage(String message, String lineContent, String resourceName, int line, int column) argument
[all...]
/external/webkit/Source/WebCore/inspector/
H A DScriptCallFrame.cpp39 ScriptCallFrame::ScriptCallFrame(const String& functionName, const String& scriptName, unsigned lineNumber, unsigned column) argument
43 , m_column(column)
/external/chromium/net/ftp/
H A Dftp_util_unittest.cc181 int column; member in struct:__anon2900::__anon2905
197 kTestCases[i].text, kTestCases[i].column));
201 ASCIIToUTF16(kTestCases[i].text), kTestCases[i].column));
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.h66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
70 unsigned *column,
76 unsigned column; member in struct:clang::CXLoadedDiagnostic::Location
79 Location() : line(0), column(0), offset(0) {}
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIndentingWriter.java39 /** {@code >= 0;} current output column (zero-based) */
40 private int column; field in class:IndentingWriter
105 if ((column == width) && (c != '\n')) {
107 column = 0;
114 if (column == 0) {
123 column = indent;
132 column++;
165 column = 0;
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java22 public SourcePositionInfo(String file, int line, int column) { argument
25 this.column = column;
31 this.column = that.column;
102 public int column; field in class:SourcePositionInfo
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DIndentingWriter.java47 /** >= 0; current output column (zero-based) */
48 private int column; field in class:IndentingWriter
113 if ((column == width) && (c != '\n')) {
115 column = 0;
122 if (column == 0) {
131 column = indent;
140 column++;
173 column = 0;
/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.h60 int column() const { return m_textPosition.m_column.zeroBasedInt(); } function in class:WebCore::JavaScriptCallFrame
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DMessage.java56 public int column = -1; field in class:Message
75 public void setColumn(int column) { argument
76 this.column = column;
104 if (column != -1) {
105 locationST.add("column", column+1);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer.h40 int column; member in struct:__sanitizer::AddressInfo
/external/elfutils/libdw/
H A Ddwarf_getsrc_file.c1 /* Find line information for given file/line/column triple.
63 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, argument
94 file and line/column number. If any of the numbers is zero,
121 /* See whether line and possibly column match. */
124 || (column != 0 && column > line->column)))
137 || (column != 0
138 && (match[inner]->column != line->column
[all...]
/external/elfutils/libdwfl/
H A Ddwfl_module_getsrc_file.c55 const char *fname, int lineno, int column,
95 file and line/column number. If any of the numbers is zero,
122 /* See whether line and possibly column match. */
125 || (column != 0 && column > line->column)))
138 || (column != 0
139 && (dwfl_line (match[inner])->column != line->column
140 || dwfl_line (match[inner])->column !
54 dwfl_module_getsrc_file(Dwfl_Module *mod, const char *fname, int lineno, int column, Dwfl_Line ***srcsp, size_t *nsrcs) argument
[all...]
/external/elfutils/tests/
H A Dget-lines.c111 int column; local
112 if (dwarf_linecol (l, &column) != 0)
113 column = 0;
114 if (column >= 0)
115 printf ("%d:", column);
/external/freetype/src/base/
H A Dftlcdfil.c101 FT_Byte* column = bitmap->buffer; local
105 for ( ; width > 0; width--, column++ )
107 FT_Byte* col = column;
226 FT_Byte* column = bitmap->buffer; local
229 for ( ; width > 0; width--, column++ )
231 FT_Byte* col = column;
/external/llvm/include/llvm/DebugInfo/
H A DDIContext.h39 uint32_t line, uint32_t column)
41 Line(line), Column(column) {}
37 DILineInfo(const SmallString<16> &fileName, const SmallString<16> &functionName, uint32_t line, uint32_t column) argument
/external/svox/pico/src/com/svox/pico/providers/
H A DSettingsProvider.java54 public String getString(int column){ argument
/external/v8/test/mjsunit/
H A Ddebug-sourceinfo.js70 // This is the last column of last line (note: starting at 0 and +2, due
103 // column progresses as expected.
106 var column; variable
112 assertEquals(column + 1, location.column);
115 assertEquals(0, location.column);
120 assertEquals(0, location.column);
126 column = location.column;
133 for (column
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityARIAGrid.cpp128 AccessibilityTableColumn* column = static_cast<AccessibilityTableColumn*>(axCache->getOrCreate(ColumnRole)); local
129 column->setColumnIndex((int)i);
130 column->setParentTable(this);
131 m_columns.append(column);
132 if (!column->accessibilityIsIgnored())
133 m_children.append(column);
141 AccessibilityTableCell* AccessibilityARIAGrid::cellForColumnAndRow(unsigned column, unsigned row) argument
148 if (column >= columnCount() || row >= rowCount())
152 int intColumn = (int)column;
/external/webkit/Source/WebCore/bindings/v8/
H A DJavaScriptCallFrame.cpp83 int JavaScriptCallFrame::column() const function in class:WebCore::JavaScriptCallFrame
87 v8::Handle<v8::Value> result = m_callFrame.get()->Get(v8String("column"));
/external/webkit/Source/WebCore/inspector/front-end/
H A DMetricsSidebarPane.js132 "table-column": true,
133 "table-column-group": true,
142 "table-column": true,
143 "table-column-group": true,

Completed in 533 milliseconds

123456