HomeSort by relevance Sort by last modified time
    Searched full:column (Results 51 - 75 of 5155) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/test/Assembler/
dilocation.ll 10 ; CHECK-NEXT: !1 = !DILocation(line: 3, column: 7, scope: !0)
11 !1 = !DILocation(line: 3, column: 7, scope: !0)
12 !2 = !DILocation(scope: !0, column: 7, line: 3)
14 ; CHECK-NEXT: !2 = !DILocation(line: 3, column: 7, scope: !0, inlinedAt: !1)
15 !3 = !DILocation(scope: !0, inlinedAt: !1, column: 7, line: 3)
16 !4 = !DILocation(column: 7, line: 3, scope: !0, inlinedAt: !1)
20 !6 = !DILocation(scope: !0, column: 0, line: 0)
22 ; CHECK-NEXT: !4 = !DILocation(line: 4294967295, column: 65535, scope: !0)
23 !7 = !DILocation(line: 4294967295, column: 65535, scope: !0)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ReorderingCursorWrapper.java 67 public double getDouble(int column) {
68 return mCursor.getDouble(column);
72 public float getFloat(int column) {
73 return mCursor.getFloat(column);
77 public int getInt(int column) {
78 return mCursor.getInt(column);
82 public long getLong(int column) {
83 return mCursor.getLong(column);
87 public short getShort(int column) {
88 return mCursor.getShort(column);
    [all...]
  /frameworks/base/core/java/android/text/
PackedIntVector.java 26 * offsetting the values in segments of a given column.
56 * Returns the value at the specified row and column.
59 * @param column the index of the column to return.
64 * (row < 0 || row >= size()) or the column is out of range
65 * (column < 0 || column >= width()).
67 public int getValue(int row, int column) {
70 if (((row | column) < 0) || (row >= size()) || (column >= columns))
    [all...]
  /external/autotest/frontend/migrations/
031_add_hqe_aborted_flag.py 3 'ADD COLUMN `aborted` bool NOT NULL DEFAULT FALSE')
11 manager.execute('ALTER TABLE host_queue_entries DROP COLUMN `aborted`')
009_add_timeout_to_jobs.py 4 # Add the column with a default first, and then drop the default.
5 # We cannot add the column, populate the values, and then specify NOT NULL
16 ADD_COLUMN = ('ALTER TABLE jobs ADD COLUMN timeout INT NOT NULL DEFAULT %s'
18 DROP_DEFAULT = 'ALTER TABLE jobs ALTER COLUMN timeout DROP DEFAULT'
19 DROP_COLUMN = 'ALTER TABLE jobs DROP COLUMN timeout'
043_add_special_task_requested_by.py 10 ALTER TABLE special_tasks DROP COLUMN requested_by_id;
  /external/eigen/doc/snippets/
MatrixBase_colwise.cpp 3 cout << "Here is the sum of each column:" << endl << m.colwise().sum() << endl;
4 cout << "Here is the maximum absolute value of each column:"
PartialRedux_maxCoeff.cpp 3 cout << "Here is the maximum of each column:" << endl << m.colwise().maxCoeff() << endl;
PartialRedux_minCoeff.cpp 3 cout << "Here is the minimum of each column:" << endl << m.colwise().minCoeff() << endl;
PartialRedux_norm.cpp 3 cout << "Here is the norm of each column:" << endl << m.colwise().norm() << endl;
  /external/llvm/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
3 # this starting at column 2
  /external/snakeyaml/src/test/resources/issues/
issue67-error1.txt 2 in 'string', line 1, column 1:
6 in 'string', line 1, column 71:
issue67-error2.txt 2 in 'string', line 1, column 1:
6 in 'string', line 1, column 70:
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 28 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 != UNKNOWN_POSITION)
    [all...]
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 22 struct Column {
32 Column(StringRef Str, unsigned Width)
35 Column &set(TrimKind Value) {
40 Column &set(AlignmentKind Value) {
48 raw_ostream &operator<<(raw_ostream &OS, const Column &Value) {
54 void Column::render(raw_ostream &OS) const {
82 static Column column(StringRef Str, unsigned Width) { function
83 return Column(Str, Width);
87 static Column column(StringRef Str, unsigned Width, const T &Value) function
    [all...]
  /frameworks/base/core/java/android/database/
MatrixCursor.java 37 * determines column ordering elsewhere in this cursor
55 * determines column ordering elsewhere in this cursor
62 * Gets value at the given column for the current row.
64 private Object get(int column) {
65 if (column < 0 || column >= columnCount) {
66 throw new CursorIndexOutOfBoundsException("Requested column: "
67 + column + ", # of columns: " + columnCount);
75 return data[mPos * columnCount + column];
82 * @return builder which can be used to set the column values for the ne
    [all...]
CursorWindow.java 71 private static native int nativeGetType(long windowPtr, int row, int column);
72 private static native byte[] nativeGetBlob(long windowPtr, int row, int column);
73 private static native String nativeGetString(long windowPtr, int row, int column);
74 private static native long nativeGetLong(long windowPtr, int row, int column);
75 private static native double nativeGetDouble(long windowPtr, int row, int column);
76 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column,
79 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column);
80 private static native boolean nativePutString(long windowPtr, String value, int row, int column);
81 private static native boolean nativePutLong(long windowPtr, long value, int row, int column);
82 private static native boolean nativePutDouble(long windowPtr, double value, int row, int column);
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootCursorWrapper.java 93 public double getDouble(int column) {
94 return mCursor.getDouble(column);
98 public float getFloat(int column) {
99 return mCursor.getFloat(column);
103 public int getInt(int column) {
104 return mCursor.getInt(column);
108 public long getLong(int column) {
109 return mCursor.getLong(column);
113 public short getShort(int column) {
114 return mCursor.getShort(column);
    [all...]
  /art/tools/ahat/src/
Column.java 20 * Configuration of a Doc table column.
22 class Column {
30 public Column(DocString heading, Align align) {
36 * Construct a left-aligned column with a simple heading.
38 public Column(String heading) {
43 * Construct a column with a simple heading.
45 public Column(String heading, Align align) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
EmptyCursor.java 47 public String getString(int column) {
52 public short getShort(int column) {
57 public int getInt(int column) {
62 public long getLong(int column) {
67 public float getFloat(int column) {
72 public double getDouble(int column) {
77 public boolean isNull(int column) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 32 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem
33 """column - A column """
36 """name - the name of the column """
40 columns = column
60 column._superclassnames = []
61 column._privpropdict = {
64 column._privelemdict = {
88 'ccol' : column,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Table_Suite.py 32 class column(aetools.ComponentItem): class in inherits:aetools.ComponentItem
33 """column - A column """
36 """name - the name of the column """
40 columns = column
60 column._superclassnames = []
61 column._privpropdict = {
64 column._privelemdict = {
88 'ccol' : column,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseDatabaseHelperUpgradeTest.java 42 * The column info returned by PRAGMA table_info()
83 TableColumn column = new TableColumn(); local
84 column.cid = cursor.getInt(cidIndex);
85 column.name = cursor.getString(nameIndex);
86 column.type = cursor.getString(typeIndex);
87 column.notnull = cursor.getInt(notNullIndex) != 0;
88 column.dflt_value = cursor.getString(dfltValueIndex);
89 column.pk = cursor.getInt(pkIndex);
91 addColumn(column);
100 private void addColumn(TableColumn column) {
106 final TableColumn column = mColumns.get(name); local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealMatrix.java 27 * returns the element in the first row, first column of the matrix.</p>
35 * row and column dimensions.
40 * @throws IllegalArgumentException if row or column dimension is not positive
134 * @param startColumn Initial column index
135 * @param endColumn Final column index (inclusive)
148 * @param selectedColumns Array of column indices.
151 * @exception MatrixIndexException if row or column selections are not valid
162 * @param startColumn Initial column index
163 * @param endColumn Final column index (inclusive)
178 * @param selectedColumns Array of column indices
    [all...]
FieldMatrix.java 29 * returns the element in the first row, first column of the matrix.</p>
44 * row and column dimensions.
49 * @throws IllegalArgumentException if row or column dimension is not positive
127 * @param startColumn Initial column index
128 * @param endColumn Final column index (inclusive)
141 * @param selectedColumns Array of column indices.
144 * @exception MatrixIndexException if row or column selections are not valid
155 * @param startColumn Initial column index
156 * @param endColumn Final column index (inclusive)
171 * @param selectedColumns Array of column indices
    [all...]

Completed in 394 milliseconds

1 23 4 5 6 7 8 91011>>