/external/webrtc/webrtc/examples/peerconnection/client/linux/ |
main_wnd.cc | 53 GtkTreeViewColumn* column, gpointer data) { 54 reinterpret_cast<GtkMainWnd*>(data)->OnRowActivated(tree_view, path, column); 69 // Our TreeView only has one column, so it is column 0. 70 GtkTreeViewColumn* column = gtk_tree_view_get_column(tree_view, 0); local 72 gtk_tree_view_row_activated(tree_view, lastpath, column); 81 GtkTreeViewColumn* column = gtk_tree_view_column_new_with_attributes( local 83 gtk_tree_view_append_column(GTK_TREE_VIEW(list), column); local 372 GtkTreeViewColumn* column) {
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
MatrixUtils.java | 424 * Creates a column {@link RealMatrix} using the data from the input 427 * @param columnData the input column data 442 * Creates a column {@link FieldMatrix} using the data from the input 446 * @param columnData the input column data 465 * Creates a column {@link BigMatrix} using the data from the input 468 * @param columnData the input column data 485 * Creates a column {@link BigMatrix} using the data from the input 488 * @param columnData the input column data 505 * Creates a column {@link BigMatrix} using the data from the input 508 * @param columnData the input column dat [all...] |
/external/pdfium/xfa/fxgraphics/ |
cxfa_graphics.cpp | 324 for (int32_t column = 0; column < width; column++) { 325 float x = (float)(column); 341 dib_buf[column] = m_info.fillColor.GetShading()->m_argbArray[index]; 355 for (int32_t column = 0; column < width; column++) { 356 float x = (float)(column); 402 dib_buf[column] = m_info.fillColor.GetShading()->m_argbArray[index] [all...] |
/external/protobuf/src/google/protobuf/io/ |
tokenizer_unittest.cc | 165 void AddError(int line, int column, const string& message) { 167 line, column, message); 261 EXPECT_EQ(0, tokenizer.current().column); 273 EXPECT_EQ(0, tokenizer.current().column); 284 EXPECT_EQ(kSimpleTokenCases_case.input.size(), tokenizer.current().column); 375 // Test that tabs affect column numbers correctly. 383 // Test that tabs in string literals affect column numbers correctly. 435 EXPECT_EQ(0, tokenizer.current().column); 459 EXPECT_EQ(previous.column, tokenizer.previous().column); [all...] |
/external/python/cpython2/Lib/lib2to3/pgen2/ |
tokenize.py | 13 the starting (row, column) indices of the token (a 2-tuple of ints) 14 the ending (row, column) indices of the token (a 2-tuple of ints) 358 column where the token begins in the source; a 2-tuple (erow, ecol) of 359 ints specifying the row and column where the token ends in the source; 400 column = 0 402 if line[pos] == ' ': column = column + 1 403 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize 404 elif line[pos] == '\f': column = [all...] |
/external/python/cpython3/Lib/lib2to3/pgen2/ |
tokenize.py | 13 the starting (row, column) indices of the token (a 2-tuple of ints) 14 the ending (row, column) indices of the token (a 2-tuple of ints) 358 column where the token begins in the source; a 2-tuple (erow, ecol) of 359 ints specifying the row and column where the token ends in the source; 406 column = 0 408 if line[pos] == ' ': column = column + 1 409 elif line[pos] == '\t': column = (column//tabsize + 1)*tabsize 410 elif line[pos] == '\f': column = [all...] |
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
VoicemailProviderHelpers.java | 241 // The helper method extracts the column indices once every time it is called, 255 private String getSortBy(String column, SortOrder sortOrder) { 256 if (column == null) { 261 return column + " ASC"; 263 return column + " DESC"; 265 return column;
|
/external/autotest/frontend/client/src/autotest/common/table/ |
DynamicTable.java | 33 public int column; field in class:DynamicTable.SortIndicator 36 public SortIndicator(int column) { 37 this.column = column; 75 * clicking on column headers. 105 if (columns[indicator.column][COL_NAME].equals(firstSpec.getField())) { 121 * Set column on which data is sorted. You must call <code>refresh()</code> 123 * @param columnField field of the column to sort on 127 // remove any existing sort on this column
|
/frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/testutils/ |
TestUtils.java | 156 for (int column = 0; column < bitmapWidth; column++) { 157 @ColorInt int colorAtCurrPixel = rowPixels[column]; 163 + " but at position (" + row + "," + column + ") out of ("
|
/packages/apps/Email/provider_src/com/android/email/provider/ |
AttachmentProvider.java | 289 String column = projection[i]; local 290 if (Columns._ID.equals(column)) { 293 else if (Columns.DATA.equals(column)) { 296 else if (Columns.DISPLAY_NAME.equals(column)) { 299 else if (Columns.SIZE.equals(column)) {
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/ |
MCDwarf.h | 60 uint16_t Column; 78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 80 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 93 /// \brief Get the Column of this MCDwarfLoc. 94 unsigned getColumn() const { return Column; } 111 /// \brief Set the Column of this MCDwarfLoc. 112 void setColumn(unsigned column) { 113 assert(column <= UINT16_MAX); 114 Column = column [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/MC/ |
MCDwarf.h | 60 uint16_t Column; 78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 80 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 93 /// \brief Get the Column of this MCDwarfLoc. 94 unsigned getColumn() const { return Column; } 111 /// \brief Set the Column of this MCDwarfLoc. 112 void setColumn(unsigned column) { 113 assert(column <= UINT16_MAX); 114 Column = column [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/MC/ |
MCDwarf.h | 60 uint16_t Column; 78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 80 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 93 /// \brief Get the Column of this MCDwarfLoc. 94 unsigned getColumn() const { return Column; } 111 /// \brief Set the Column of this MCDwarfLoc. 112 void setColumn(unsigned column) { 113 assert(column <= UINT16_MAX); 114 Column = column [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/ |
MCDwarf.h | 60 uint16_t Column; 78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 80 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 93 /// \brief Get the Column of this MCDwarfLoc. 94 unsigned getColumn() const { return Column; } 111 /// \brief Set the Column of this MCDwarfLoc. 112 void setColumn(unsigned column) { 113 assert(column <= UINT16_MAX); 114 Column = column [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/MC/ |
MCDwarf.h | 60 uint16_t Column; 78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 80 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 93 /// \brief Get the Column of this MCDwarfLoc. 94 unsigned getColumn() const { return Column; } 111 /// \brief Set the Column of this MCDwarfLoc. 112 void setColumn(unsigned column) { 113 assert(column <= UINT16_MAX); 114 Column = column [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/MC/ |
MCDwarf.h | 60 uint16_t Column; 78 MCDwarfLoc(unsigned fileNum, unsigned line, unsigned column, unsigned flags, 80 : FileNum(fileNum), Line(line), Column(column), Flags(flags), Isa(isa), 93 /// \brief Get the Column of this MCDwarfLoc. 94 unsigned getColumn() const { return Column; } 111 /// \brief Set the Column of this MCDwarfLoc. 112 void setColumn(unsigned column) { 113 assert(column <= UINT16_MAX); 114 Column = column [all...] |
/packages/apps/Contacts/src/com/android/contacts/editor/ |
LabeledEditorView.java | 322 public void onFieldChanged(String column, String value) { 323 if (!isFieldChanged(column, value)) { 328 saveValue(column, value); 336 public void updatePhonetic(String column, String value) { 341 public String getPhonetic(String column){ 345 protected void saveValue(String column, String value) { 346 mEntry.put(column, value); 384 protected boolean isFieldChanged(String column, String value) { 385 final String dbValue = mEntry.getAsString(column);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
streams.rb | 49 information to developers, such as current line number and column. Furthermore, 234 and <tt>column</tt>, which are expected to indicate the current line number and 237 == A Word About <tt>line</tt> and <tt>column</tt> attributes 239 Presumably, the concept of <tt>line</tt> and <tt>column</tt> attirbutes of text 241 up (not 0). Column numbers are indexed from 0 up. Thus, examining sample text: 250 *Note:* most ANTLR runtime APIs for other languages refer to <tt>column</tt> 266 attr_accessor :column 351 also track various pieces of information such as the line and column numbers at 378 attr_reader :column 395 # [:column] the initial column number; default: +0 [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ArrayTableTest.java | 163 assertEquals(expected, table.column(1)); 371 assertEquals("Column 4 not in [1, 2, 3]", expected.getMessage()); 410 Map<String, Character> column = table.column(4); local 411 assertTrue(column.isEmpty()); 413 column.put("foo", 'd'); 425 assertEquals("Column 4 not in [1, 2, 3]", expected.getMessage()); 431 Map<String, Character> map = table.column(3);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ArrayTableTest.java | 165 assertEquals(expected, table.column(1)); 378 assertEquals("Column 4 not in [1, 2, 3]", expected.getMessage()); 432 Map<String, Character> column = table.column(4); local 433 assertTrue(column.isEmpty()); 435 column.put("foo", 'd'); 447 assertEquals("Column 4 not in [1, 2, 3]", expected.getMessage()); 453 Map<String, Character> map = table.column(3);
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/ |
ParsingSteps.java | 278 @Then("the begin column is $column") 279 public void thenTheBeginColumnIs(int column) { 281 assertEquals(column, node.getBegin().get().column); 290 @Then("the end column is $column") 291 public void thenTheEndColumnIs(int column) { 293 assertEquals(column, node.getEnd().get().column); [all...] |
/external/v8/src/inspector/ |
debugger-script.js | 116 info.columnNumber = locations[0].column; 174 return [1, String(e), String(details.syntaxErrorMessage), Number(startPosition.line), Number(startPosition.column)]; 274 "columnNumber": location.column, 342 "columnNumber": ensureLocation().column, 352 "columnNumber": functionLocation.column, 387 * @return {!{line: number, column: number}} 395 location = { line: 0, column: 0 };
|
/frameworks/native/libs/math/include/math/ |
mat3.h | 41 * A 3x3 column-major matrix class. 43 * Conceptually a 3x3 matrix is a an array of 3 column vec3: 74 * m[n] is the \f$ n^{th} \f$ column of the matrix and is a vec3. 95 static constexpr size_t COL_SIZE = col_type::SIZE; // size of a column (i.e.: number of rows) 119 inline constexpr col_type const& operator[](size_t column) const { 122 assert(column < NUM_COLS); 124 return m_value[column]; 127 inline col_type& operator[](size_t column) { 128 assert(column < NUM_COLS); 129 return m_value[column]; [all...] |
/packages/apps/Dialer/java/com/android/dialer/app/calllog/ |
CallLogNotificationsQueryHelper.java | 367 .and(Selection.column(Calls.NEW).is("= 1")) 368 .and(Selection.column(Calls.TYPE).is("=", type)) 369 .and(Selection.column(Calls.IS_READ).is("IS NOT 1")); 372 selectionBuilder.and(Selection.column(Voicemails.DELETED).is(" = 0")); 378 Selection.column(Calls.DATE) 381 .or(Selection.column(Calls.DATE).is(">=", thresholdMillis))
|
/packages/apps/DocumentsUI/src/com/android/documentsui/sorting/ |
SortModel.java | 107 for (SortDimension column : columns) { 108 if (column.getId() == SORT_DIMENSION_ID_UNKNOWN) { 112 if (mDimensions.get(column.getId()) != null) { 114 "SortDimension id must be unique. Duplicate id: " + column.getId()); 116 mDimensions.put(column.getId(), column); local 177 throw new IllegalArgumentException("Unknown column id: " + dimensionId); 453 // Name column 464 // Summary column 475 // Size column [all...] |