HomeSort by relevance Sort by last modified time
    Searched refs:Columns (Results 26 - 50 of 76) sorted by null

12 3 4

  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherWidgetProvider.java 126 values.put(WeatherDataProvider.Columns.TEMPERATURE,
194 int tempColIndex = c.getColumnIndex(WeatherDataProvider.Columns.TEMPERATURE);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 52 public static class Columns {
276 new String[] { Columns.DATA },
  /prebuilts/go/darwin-x86/src/database/sql/driver/
driver.go 143 // statement is aware of its own columns' types and can convert from
155 // Columns returns the names of the columns. The number of
156 // columns of the result is inferred from the length of the
159 Columns() []string
166 // size as the Columns() are wide.
  /prebuilts/go/linux-x86/src/database/sql/driver/
driver.go 143 // statement is aware of its own columns' types and can convert from
155 // Columns returns the names of the columns. The number of
156 // columns of the result is inferred from the length of the
159 Columns() []string
166 // size as the Columns() are wide.
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_fax.cpp 76 int columns,
83 b1 = FindBit(ref_buf, columns, a0 + 1, !first_bit);
84 if (b1 >= columns) {
85 b1 = b2 = columns;
89 b1 = FindBit(ref_buf, columns, b1 + 1, first_bit);
92 if (b1 >= columns) {
93 b1 = b2 = columns;
96 b2 = FindBit(ref_buf, columns, b1 + 1, first_bit);
99 void FaxFillBits(uint8_t* dest_buf, int columns, int startpos, int endpos) {
106 if (endpos >= columns) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mmcobj.h 115 typedef struct Columns Columns;
179 typedef Columns *PCOLUMNS;
180 typedef Columns **PPCOLUMNS;
    [all...]
d3d10shader.h 152 UINT Columns;
d3d11shader.h 96 UINT Columns;
d3dx9shader.h 110 UINT Columns;
360 WORD Columns;
dbgeng.h 245 STDMETHOD(GetOutputWidth)(THIS_ PULONG Columns) PURE;
246 STDMETHOD(SetOutputWidth)(THIS_ ULONG Columns) PURE;
316 STDMETHOD(GetOutputWidth)(THIS_ PULONG Columns) PURE;
317 STDMETHOD(SetOutputWidth)(THIS_ ULONG Columns) PURE;
378 STDMETHOD(GetOutputWidth)(THIS_ PULONG Columns) PURE;
379 STDMETHOD(SetOutputWidth)(THIS_ ULONG Columns) PURE;
443 STDMETHOD(GetOutputWidth)(THIS_ PULONG Columns) PURE;
444 STDMETHOD(SetOutputWidth)(THIS_ ULONG Columns) PURE;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
d3d11shader.idl 86 UINT Columns;
d3d10shader.idl 119 UINT Columns;
  /frameworks/base/core/java/android/provider/
BrowserContract.java 35 * for the supported URIS and columns.
69 * Generic columns for use by sync adapters. The specific functions of
70 * these columns are private to the sync adapter. Other clients of the API
71 * should not attempt to either read or write these columns.
108 * Columns that appear when each row of a table belongs to a specific
506 public static final class SyncState implements SyncStateContract.Columns {
CalendarContract.java 45 * definitions for the supported URIs and data columns.
196 * Generic columns for use by sync adapters. The specific functions of these
197 * columns are private to the sync adapter. Other clients of the API should
198 * not attempt to either read or write this column. These columns are
267 * Columns for Sync information used by Calendars and Events tables. These
333 * Columns specific to the Calendars Uri that other Uris can query.
594 * columns but are restricted to a single account at a time. Calendars are
642 * <h3>Calendar Columns</h3> The following Calendar columns are writable by
650 * The following Calendars columns are writable only by a sync adapte
    [all...]
ContactsContract.java 56 * definitions for the supported URIs and columns. These APIs supersede
349 * {@link #ACCOUNT_TYPE} columns (nulls are allowed). Since directory IDs are assigned
398 * It supports the same semantics as {@link #CONTENT_URI} and returns the same columns.
655 public interface SyncStateColumns extends SyncStateContract.Columns {
663 public static final class SyncState implements SyncStateContract.Columns {
717 public static final class ProfileSyncState implements SyncStateContract.Columns {
765 * Generic columns for use by sync adapters. The specific functions of
766 * these columns are private to the sync adapter. Other clients of the API
785 * Columns that appear when each row of a table belongs to a specific
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp 3588 ExprP<Vec3> columns[3]; local
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 3639 ExprP<Vec3> columns[3]; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 
  /external/clang/lib/Format/
FormatToken.h 136 /// line for multi-line tokens) in columns.
137 /// We need this to correctly measure number of columns a token spans.
140 /// \brief Contains the width in columns of the last line of a multi-line
492 /// a specific number of columns.
494 /// \brief The number of columns to use.
495 unsigned Columns;
  /prebuilts/tools/common/m2/repository/net/sf/jopt-simple/jopt-simple/4.9/
jopt-simple-4.9.jar 
  /prebuilts/tools/common/offline-m2/net/sf/jopt-simple/jopt-simple/4.9/
jopt-simple-4.9.jar 
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 81 // columns used to duplicate an event row
121 // columns used to duplicate a reminder row
126 // columns used to duplicate an attendee row
136 // columns used to duplicate an extended property row
370 + SyncStateContract.Columns.ACCOUNT_NAME + ","
371 + SyncStateContract.Columns.ACCOUNT_TYPE + ","
372 + SyncStateContract.Columns.DATA
517 // IMPORTANT: when adding new columns, be sure to update ALLOWED_IN_EXCEPTION and
572 // SYNC_DATAX columns are available for use by sync adapters
635 // SYNC_DATAX columns are available for use by sync adapter
3103 String[] columns = { local
    [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql.go     [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql.go     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_parser.h 836 int Columns,

Completed in 2159 milliseconds

12 3 4