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

<<21222324252627282930>>

  /frameworks/support/v7/gridlayout/tests/res/layout/
make_view_gone_test.xml 31 android:text="column 1, weight 2" />
38 android:text="column 2, weight 1" />
use_default_margin_test.xml 38 android:text="column 1, with weight of 2"/>
47 android:text="column 2, with weight of 1"/>
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerException.java 219 int column = locator.getColumnNumber(); local
231 if (0 != column) {
232 sbuffer.append("; Column#: ");
233 sbuffer.append(column);
252 int column = locator.getColumnNumber(); local
264 if (0 != column) {
265 sbuffer.append("; Column#: ");
266 sbuffer.append(column);
  /packages/apps/Calendar/res/values-w960dp-h527dp/
dimens.xml 31 <!-- minimum size of hours column in day/week view -->
33 <!-- margins size of hours column in day/week view -->
  /toolchain/binutils/binutils-2.25/gas/config/
te-sun3.h 43 * comment-column: 0
44 * fill-column: 131
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/lns/
lns-common-1.d 11 \[0x.*\] Set column to 3
15 \[0x.*\] Set column to 0
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lns/
lns-common-1-alt.d 11 \[0x.*\] Set column to 3
19 \[0x.*\] Set column to 0
lns-common-1.d 10 \[0x.*\] Set column to 3
14 \[0x.*\] Set column to 0
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 97 // Pulling the relevant value from the cursor requires knowing the column index to pull
122 // The data type can be determined using the mime type column.
133 for(String column : cursor.getColumnNames()) {
134 Log.d(TAG, column + column + ": " +
135 cursor.getString(cursor.getColumnIndex(column)) + "\n");
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java 97 // Pulling the relevant value from the cursor requires knowing the column index to pull
122 // The data type can be determined using the mime type column.
133 for(String column : cursor.getColumnNames()) {
134 Log.d(TAG, column + column + ": " +
135 cursor.getString(cursor.getColumnIndex(column)) + "\n");
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
ContactablesLoaderCallbacks.java 97 // Pulling the relevant value from the cursor requires knowing the column index to pull
122 // The data type can be determined using the mime type column.
133 for(String column : cursor.getColumnNames()) {
134 Log.d(TAG, column + column + ": " +
135 cursor.getString(cursor.getColumnIndex(column)) + "\n");
  /external/eigen/Eigen/src/SparseLU/
SparseLU_column_dfs.h 66 * \brief Performs a symbolic factorization on column jcol and decide the supernode boundary
68 * A supernode representative is the last column of a supernode.
76 * \param jcol Current column
78 * \param maxsuper Maximum number of column allowed in a supernode
84 * \param marker marker[i] == jj, if i was visited during dfs of current column jj;
124 { // Do nothing for column 0
  /external/google-breakpad/src/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/guava/guava/src/com/google/common/collect/
HashBasedTable.java 33 * <p>The views returned by {@link #column}, {@link #columnKeySet()}, and {@link
38 * <p>Lookups by row key are often faster than lookups by column key, because
40 * column(columnKey).get(rowKey)} still runs quickly, since the row key is
41 * provided. However, {@code column(columnKey).size()} takes longer, since an
82 * @param expectedCellsPerRow the expected number of column key / value
101 * @throws NullPointerException if any of the row keys, column keys, or values
  /external/llvm/test/Transforms/InstCombine/
debuginfo.ll 47 !16 = !DILocation(line: 78, column: 28, scope: !1)
48 !18 = !DILocation(line: 78, column: 40, scope: !1)
49 !20 = !DILocation(line: 78, column: 54, scope: !1)
50 !21 = !DILocation(line: 80, column: 3, scope: !22)
51 !22 = distinct !DILexicalBlock(line: 80, column: 3, file: !27, scope: !23)
52 !23 = distinct !DILexicalBlock(line: 79, column: 1, file: !27, scope: !1)
  /external/protobuf/gtest/scripts/
pump.py 89 """Represents a position (line and column) in a text file."""
91 def __init__(self, line=-1, column=-1):
93 self.column = column
96 return self.line == rhs.line and self.column == rhs.column
103 self.line == rhs.line and self.column < rhs.column)
118 return '%s(%s)' % (self.line + 1, self.column)
121 return Cursor(self.line, self.column + offset
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
TwoColumnOutput.java 42 * output writers, one of which ends up writing to the left column and
49 /** &gt; 0; the left column width */
60 * @param leftWidth &gt; 0; width of the left column, in characters
61 * @param rightWidth &gt; 0; width of the right column, in characters
85 * @param leftWidth &gt;= 1; width of the left column, in characters
86 * @param rightWidth &gt;= 1; width of the right column, in characters
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
StreamReader.java 41 private int column = 0; field in class:StreamReader
104 return new Mark(name, this.index, this.line, this.column, this.buffer, this.pointer);
127 this.column = 0;
129 this.column++;
175 this.column += length;
206 return column;
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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...]
  /frameworks/support/v4/kitkat/android/support/v4/provider/
DocumentsContractApi19.java 142 private static String queryForString(Context context, Uri self, String column,
148 c = resolver.query(self, new String[] { column }, null, null, null);
162 private static int queryForInt(Context context, Uri self, String column,
164 return (int) queryForLong(context, self, column, defaultValue);
167 private static long queryForLong(Context context, Uri self, String column,
173 c = resolver.query(self, new String[] { column }, null, null, null);
  /libcore/luni/src/main/java/org/xml/sax/
Locator.java 109 * Return the column number where the current document event ends.
119 * not correspond to the column in a text editor's display. </p>
121 * <p>The return value is an approximation of the column number
127 * event. The first column in each line is column 1.</p>
129 * @return The column number, or -1 if none is available.
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/enterprise/
EnterpriseContactsCursorWrapper.java 122 public int getInt(int column) {
123 return (int) getLong(column);
127 public long getLong(int column) {
128 long result = super.getLong(column);
129 if (ArrayUtils.contains(contactIdIndices, column)) {
132 final String columnName = getColumnName(column);
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
OpenHelper.java 147 private static String getCursorString(Cursor cursor, String column) {
148 return cursor.getString(cursor.getColumnIndexOrThrow(column));
151 private static Uri getCursorUri(Cursor cursor, String column) {
152 return Uri.parse(getCursorString(cursor, column));
155 private static File getCursorFile(Cursor cursor, String column) {
156 return new File(cursor.getString(cursor.getColumnIndexOrThrow(column)));
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
SearchDialogBase.py 54 l.grid(row=self.row, column=0, sticky="nw")
56 e.grid(row=self.row, column=1, sticky="nwe")
63 l.grid(row=self.row, column=0, sticky="nw")
65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe")
74 b.grid(pady=1,row=rows,column=0,sticky="ew")
137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
SearchDialogBase.py 54 l.grid(row=self.row, column=0, sticky="nw")
56 e.grid(row=self.row, column=1, sticky="nwe")
63 l.grid(row=self.row, column=0, sticky="nw")
65 f.grid(row=self.row, column=1, columnspan=1, sticky="nwe")
74 b.grid(pady=1,row=rows,column=0,sticky="ew")
137 f.grid(row=0,column=2,padx=2,pady=2,ipadx=2,ipady=2)

Completed in 943 milliseconds

<<21222324252627282930>>