HomeSort by relevance Sort by last modified time
    Searched full:columns (Results 76 - 100 of 2476) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
ps_util.py 39 def GetPsOutputWithPlatformBackend(platform_backend, columns, pid):
45 columns: A list of require columns, e.g., ['pid', 'pss'].
50 for c in columns:
  /external/clang/lib/Format/
FormatToken.cpp 93 // Find the best ColumnFormat, i.e. the best number of columns to use.
118 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
150 // In C++11 braced list style, we should not format in columns unless they
224 for (unsigned Columns = 1; Columns <= MaxItems; ++Columns) {
226 Format.Columns = Columns;
227 Format.ColumnSizes.resize(Columns);
228 MinSizeInColumn.assign(Columns, UINT_MAX)
    [all...]
  /external/kernel-headers/original/uapi/linux/
vt.h 48 unsigned short v_cols; /* number of columns */
55 unsigned short v_cols; /* number of columns */
58 unsigned short v_vcol; /* number of pixel columns on screen */
59 unsigned short v_ccol; /* number of pixel columns per character */
  /external/mesa3d/src/glsl/builtins/tools/
generate_outerProductGLSL.py 16 gen(2,3) # mat2x3 means 2 columns, 3 rows
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
vt.h 48 unsigned short v_cols; /* number of columns */
55 unsigned short v_cols; /* number of columns */
58 unsigned short v_vcol; /* number of pixel columns on screen */
59 unsigned short v_ccol; /* number of pixel columns per character */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
vt.h 48 unsigned short v_cols; /* number of columns */
55 unsigned short v_cols; /* number of columns */
58 unsigned short v_vcol; /* number of pixel columns on screen */
59 unsigned short v_ccol; /* number of pixel columns per character */
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 20 /** \internal expression type of a block of whole columns */
26 /** \internal expression type of a block of whole columns */
45 * \param blockCols the number of columns in the block
73 * \param cCols the number of columns in the corner
94 * \tparam CCols the number of columns in the corner
117 * \tparam CCols number of columns in corner as specified at compile-time
119 * \param cCols number of columns in corner as specified at run-time
122 * and the number of columns is specified at run-time, or vice versa. The compile-time and run-time
124 * \a CRows is \a Dynamic, and the same for the number of columns.
149 * \param cCols the number of columns in the corne
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
type_mat.hpp 60 /// 2 columns of 2 components matrix of low precision floating-point numbers.
67 /// 2 columns of 2 components matrix of medium precision floating-point numbers.
74 /// 2 columns of 2 components matrix of high precision floating-point numbers.
81 /// 2 columns of 2 components matrix of low precision floating-point numbers.
88 /// 2 columns of 2 components matrix of medium precision floating-point numbers.
95 /// 2 columns of 2 components matrix of high precision floating-point numbers.
107 /// 2 columns of 3 components matrix of low precision floating-point numbers.
114 /// 2 columns of 3 components matrix of medium precision floating-point numbers.
121 /// 2 columns of 3 components matrix of high precision floating-point numbers.
133 /// 2 columns of 4 components matrix of low precision floating-point numbers
    [all...]
  /art/tools/ahat/src/
HtmlDoc.java 81 public void table(Column... columns) {
82 if (columns.length == 0) {
83 throw new IllegalArgumentException("No columns specified");
86 mCurrentTableColumns = columns;
88 for (int i = 0; i < columns.length - 1; i++) {
89 ps.format("<th>%s</th>", columns[i].heading.html());
94 ps.format("<th align=\"left\">%s</th>", columns[columns.length - 1].heading.html());
  /developers/samples/android/content/WidgetData/Application/src/main/java/com/example/android/widgetdata/
WeatherDataProvider.java 49 public static class Columns {
90 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
124 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
127 data.degrees = values.getAsInteger(Columns.TEMPERATURE);
  /development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/
WeatherDataProvider.java 54 public static class Columns {
95 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
129 new String[]{ Columns.ID, Columns.DAY, Columns.TEMPERATURE });
132 data.degrees = values.getAsInteger(Columns.TEMPERATURE);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
posix_platform_backend.py 47 def GetPsOutput(self, columns, pid=None):
52 columns: A list of require columns, e.g., ['pid', 'pss'].
56 return ps_util.GetPsOutputWithPlatformBackend(self, columns, pid)
58 def _GetTopOutput(self, pid, columns):
63 columns: A list of require columns, e.g., ['idlew', 'vsize'].
67 ','.join(columns)])
  /external/chromium-trace/catapult/tracing/tracing/ui/extras/chrome/cc/
raster_task_view.html 53 var columns = [
100 columns.push({
110 if (columns.length == 1)
113 colWidthPercentage = (100 / (columns.length - 1)).toFixed(3) + '%';
115 for (var i = 1; i < columns.length; i++)
116 columns[i].width = colWidthPercentage;
118 this.$.content.tableColumns = columns;
119 this.$.content.sortColumnIndex = columns.length - 1;
  /external/eigen/Eigen/src/SparseLU/
SparseLU_Structs.h 63 * U-columns outside the rectangular supernodes. The row
81 ScalarVector lusup; // nonzero values of L ordered by columns
87 ScalarVector ucol; // nonzero values of U ordered by columns
88 IndexVector usub; // row indices of U columns in ucol
91 Index n; // Number of columns in the matrix
98 Index panel_size; // a panel consists of at most <panel_size> consecutive columns
99 Index relax; // To control degree of relaxing supernodes. If the number of nodes (columns)
101 // as one supernode regardless of the row structures of those columns
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/table/
Table.java 31 private final List<Column> columns; field in class:Table
36 * Create a new table without any columns yet.
39 this.columns = new ArrayList<Table.Column>();
59 columns.add(new Column(columns.size(), header, style, renderer,
103 for (final Column c : columns) {
112 for (final Column c : columns) {
124 for (final Column c : columns) {
  /external/mesa3d/src/glsl/tests/
uniform_initializer_utils.h 37 unsigned columns, unsigned rows,
42 unsigned columns, unsigned rows, unsigned array_size,
  /frameworks/base/core/java/android/provider/
OpenableColumns.java 23 * These are standard columns for openable URIs. Providers that serve openable
24 * URIs <em>must</em> support at least these columns when queried.
  /packages/apps/Contacts/res/values/
integers.xml 18 <!-- Determines the number of columns in a ContactTileRow in the favorites tab -->
21 <!-- Determines the number of columns in a ContactTileRow -->
  /packages/apps/ContactsCommon/src/com/android/contacts/common/database/
EmptyCursor.java 32 public EmptyCursor(String[] columns) {
33 this.mColumns = columns;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
GroupsListLoader.java 27 public static final String[] COLUMNS = new String[] {
36 super(context, Groups.CONTENT_URI, COLUMNS, null, null, Groups.TITLE);
  /prebuilts/go/darwin-x86/src/text/tabwriter/
example_test.go 16 // Format in tab-separated columns with a tab stop of 8.
23 // Format right-aligned in space-separated columns of minimal width 5
  /prebuilts/go/linux-x86/src/text/tabwriter/
example_test.go 16 // Format in tab-separated columns with a tab stop of 8.
23 // Format right-aligned in space-separated columns of minimal width 5
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
FixedGridLayout.java 29 * The number of rows and columns is determined at runtime. Each
78 int columns = (r - l) / cellWidth; local
79 if (columns < 0) {
80 columns = 1;
96 if (i >= (columns-1)) {
  /development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
FixedGridLayout.java 32 * The number of rows and columns is determined at runtime. Each
89 int columns = (r - l) / cellWidth; local
90 if (columns < 0) {
91 columns = 1;
107 if (i >= (columns-1)) {
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tile.c 60 unsigned columns = MIN2(tile_width, width - col); local
61 memcpy(dst2, src2, columns * sizeof(uint8_t));
91 unsigned columns = MIN2(tile_width, width - col); local
92 memcpy(dst2, src2, columns * sizeof(uint16_t));
122 unsigned columns = MIN2(tile_width, width - col); local
123 memcpy(dst2, src2, columns * sizeof(uint16_t));
153 unsigned columns = MIN2(tile_width, width - col); local
154 memcpy(dst2, src2, columns * sizeof(uint32_t));
184 unsigned columns = MIN2(tile_width, width - col); local
185 memcpy(dst2, src2, columns * sizeof(uint64_t))
276 unsigned columns = MIN2(tile_width, width - col); local
309 unsigned columns = MIN2(tile_width, width - col); local
342 unsigned columns = MIN2(tile_width, width - col); local
375 unsigned columns = MIN2(tile_width, width - col); local
408 unsigned columns = MIN2(tile_width, width - col); local
    [all...]

Completed in 640 milliseconds

1 2 34 5 6 7 8 91011>>