/external/guava/guava/src/com/google/common/collect/ |
SingletonImmutableTable.java | 54 @Override public ImmutableMap<R, V> column(C columnKey) { method in class:SingletonImmutableTable
|
StandardTable.java | 43 * column key / value secondary maps. This class provides rapid access to 44 * records by the row key alone or by both keys, but not by just the column key. 46 * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link 51 * <p>Lookups by row key are often faster than lookups by column key, because 53 * column(columnKey).get(rowKey)} still runs quickly, since the row key is 54 * provided. However, {@code column(columnKey).size()} takes longer, since an 200 private Map<R, V> removeColumn(Object column) { 206 V value = entry.getValue().remove(column); 222 /** Remove a row key / column key / value mapping, if present. */ 269 * <p>Each cell is an immutable snapshot of a row key / column key / valu [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
TextFormat.java | 398 * of delimiters, making it impossible to keep track of line and column 415 // The line and column numbers of the current token. 417 private int column = 0; field in class:TextFormat.Tokenizer 419 // The line and column numbers of the previous token (allows throwing 461 previousColumn = column; 467 column = 0; 469 ++column; 737 * Returns a {@link ParseException} with the current line and column 741 // Note: People generally prefer one-based line and column numbers. 743 (line + 1) + ":" + (column + 1) + ": " + description) [all...] |
/external/skia/gm/ |
degeneratesegments.cpp | 314 for (size_t column = 0; column < 4; ++column) { 315 if (0 < column) {
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/ |
SimpleMonthView.java | 488 int column = (int) ((x - dayStart) * mNumDays / (mWidth - dayStart - mPadding)); local 490 int day = column - findDayOffset() + 1; 634 final int column = (index % mNumDays); local 635 final int x = (offsetX + (column * cellWidth));
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
PhotoEditorView.java | 90 public void onFieldChanged(String column, String value) {
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
Keyboard.java | 567 int column = 0; local 579 if (column >= maxColumns 583 column = 0; 590 column++;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
tabbedpages.py | 327 self.frame.grid(row=0, column=0, sticky=NSEW) 338 self.frame.grid(row=0, column=0, sticky=NSEW) 399 self.pages_frame.grid(row=1, column=0, sticky=NSEW) 411 self._tab_set.grid(row=0, column=0, sticky=NSEW)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
tabbedpages.py | 327 self.frame.grid(row=0, column=0, sticky=NSEW) 338 self.frame.grid(row=0, column=0, sticky=NSEW) 399 self.pages_frame.grid(row=1, column=0, sticky=NSEW) 411 self._tab_set.grid(row=0, column=0, sticky=NSEW)
|
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_TestDataBuilder.java | 172 String column = entry.getKey(); local 179 selection.append(column); 239 assertTrue("No such column: " + columnName +
|
/external/chromium/chrome/browser/resources/net_internals/ |
util.js | 170 * Adds a column to the current row, setting its value to cellText. 186 * Adds a header row, if not already present, and adds a new column to it, 234 // Figure out the maximum width of each column. 282 // Pad the cell with spaces to make it fit the maximum column width.
|
/external/chromium/testing/gmock/scripts/ |
gmock_doctor.py | 132 _CLANG_FILE_LINE_RE = r'(?P<file>.*):(?P<line>\d+):(?P<column>\d+):\s+' 134 r'(?P<file>.*[/\\^](?!gmock-)[^/\\]+):(?P<line>\d+):(?P<column>\d+):\s+') 473 r'(?P=file):(?P=line):(?P=column): error: ' 506 r'(?P=file):(?P=line):(?P=column): error: too few arguments '
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
charger_replacement.css | 141 flex-direction: column;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
ConsoleMessage.cpp | 63 ConsoleMessage::ConsoleMessage(bool canGenerateCallStack, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& url, unsigned line, unsigned column, ScriptState* state, unsigned long requestIdentifier) 70 , m_column(column)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderGrid.cpp | 95 // GridIterator(m_grid, ForColumns, 1) will walk over the rows of the 2nd column. 674 for (size_t column = coordinate.columns.initialPositionIndex; column <= coordinate.columns.finalPositionIndex; ++column) 675 m_grid[row][column].append(child); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
networkLogView.css | 119 .network-log-grid.data-grid tr:not(.filler) td.name-column { 123 #network-container:not(.brief-mode) .network-log-grid.data-grid td.name-column:hover { 145 .initiator-column a { 436 .data-grid td.timeline-column {
|
/external/chromium_org/v8/test/mjsunit/ |
debug-backtrace.js | 30 // testing of source line/column easier. 168 assertEquals(3, frame.column); 182 assertEquals(3, frame.column); 198 assertEquals(6, frame.column);
|
/external/jsilver/src/com/google/clearsilver/jsilver/autoescape/ |
AutoEscapeContext.java | 157 * @param column column number within line. 159 public void setCurrentPosition(int line, int column) { 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/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
AutoEscaper.java | 174 int column = autoEscapeContext.getColumnNumber(); local 194 + ifEndState + " and " + elseEndState, templateName, line, column);
|
/external/v8/test/mjsunit/ |
debug-backtrace.js | 30 // testing of source line/column easier. 168 assertEquals(3, frame.column); 182 assertEquals(3, frame.column); 198 assertEquals(6, frame.column);
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/ |
omxVCM4P2_PredictReconCoefIntra_s.s | 33 ; * [in] pPredBufCol pointer to the coefficient column buffer; must be 52 ; * [out] pPredBufCol pointer to the updated coefficient column buffer 148 LDRNESH absCoeffDC,[pPredBufCol] ;// If horizontal load the coeff from column Prediction Buffer
|
/prebuilts/devtools/tools/lib/ |
lint.jar | |
ninepatch.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/ |
UiFlagAttributeNode.java | 244 final TableColumn column = new TableColumn(mTable, SWT.NONE); local 278 // Add a listener that will resize the column to the full width of the table 279 // so that only one column appears in the table even if the dialog is resized. 284 column.setWidth(r.width);
|
/external/chromium_org/v8/src/ |
debug-debugger.js | 259 // column. 336 ScriptBreakPoint.prototype.column = function() { 350 ScriptBreakPoint.prototype.update_positions = function(line, column) { 352 this.column_ = column; 425 var column = this.column(); 427 // If the column is undefined the break is on the line. To help locate the 428 // first piece of breakable code on the line try to find the column on the 430 if (IS_UNDEFINED(column)) { 438 // Fill cache if needed and get column where the actual source starts [all...] |