HomeSort by relevance Sort by last modified time
    Searched refs:columns (Results 1 - 25 of 629) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/sksl/ir/
SkSLType.cpp 28 if (this->columns() == other.columns()) {
34 if (this->columns() == other.columns() && this->rows() == other.rows()) {
50 const Type& Type::toCompound(const Context& context, int columns, int rows) const {
52 if (columns == 1 && rows == 1) {
58 switch (columns) {
62 default: ABORT("unsupported vector column count (%d)", columns);
65 switch (columns) {
69 default: ABORT("unsupported matrix column count (%d)", columns);
    [all...]
  /external/skqp/src/sksl/ir/
SkSLType.cpp 18 if (this->columns() == other.columns()) {
24 if (this->columns() == other.columns() && this->rows() == other.rows()) {
49 const Type& Type::toCompound(const Context& context, int columns, int rows) const {
51 if (columns == 1 && rows == 1) {
57 switch (columns) {
61 default: ABORT("unsupported vector column count (%d)", columns);
64 switch (columns) {
68 default: ABORT("unsupported matrix column count (%d)", columns);
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Callback.java 10 * public void columns(String cols[]) {
46 public void columns(String coldata[]); method in interface:Callback
49 * Reports type names of the columns of the query result.
  /external/icu/icu4c/source/common/
propsvec.cpp 32 int32_t columns; /* number of columns, plus two for start & limit values */ member in struct:UPropsVectors
44 upvec_open(int32_t columns, UErrorCode *pErrorCode) {
52 if(columns<1) {
56 columns+=2; /* count range start and limit columns */
59 v=(uint32_t *)uprv_malloc(UPVEC_INITIAL_ROWS*columns*4);
68 pv->columns=columns;
74 uprv_memset(row, 0, pv->rows*columns*4)
97 int32_t columns, i, start, limit, prevRow; local
160 int32_t columns; local
296 int32_t columns; local
317 int32_t i, count, columns; local
338 int32_t i, columns, valueColumns, rows, count; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
NonSquareMatrixException.java 36 * @param columns number of columns of the faulty matrix
38 public NonSquareMatrixException(final int rows, final int columns) {
39 super(LocalizedFormats.NON_SQUARE_MATRIX, rows, columns);
DefaultRealMatrixChangingVisitor.java 35 public void start(int rows, int columns,
DefaultRealMatrixPreservingVisitor.java 35 public void start(int rows, int columns,
RealMatrixChangingVisitor.java 35 * @param columns number of columns of the matrix
41 void start(int rows, int columns,
  /external/mesa3d/src/compiler/glsl/tests/
uniform_initializer_utils.h 38 unsigned columns, unsigned rows,
43 unsigned columns, unsigned rows, unsigned array_size,
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
PropsVectors.java 42 private int columns; // number of columns, plus two for start field in class:PropsVectors
65 // The returned index is a multiple of columns, and therefore
73 index = prevRow * columns;
79 index += columns;
84 index += columns;
93 index += columns;
111 index = columns * mid;
125 index = start * columns;
151 columns = numOfColumns + 2; // count range start and limit column
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
PropsVectors.java 40 private int columns; // number of columns, plus two for start field in class:PropsVectors
63 // The returned index is a multiple of columns, and therefore
71 index = prevRow * columns;
77 index += columns;
82 index += columns;
91 index += columns;
109 index = columns * mid;
123 index = start * columns;
149 columns = numOfColumns + 2; // count range start and limit column
    [all...]
  /external/junit-params/src/main/java/junitparams/internal/
InvokeParameterisedMethod.java 41 Object[] columns = null; local
43 columns = Utils.splitAtCommaOrPipe(params);
44 columns = castParamsUsingConverters(columns);
50 return columns;
94 private Object[] castParamsUsingConverters(Object[] columns) throws ConversionFailedException {
97 if (testMethodParamsHasVarargs(columns, expectedParameterTypes)) {
98 columns = columnsWithVarargs(columns, expectedParameterTypes);
102 verifySameSizeOfArrays(columns, expectedParameterTypes)
    [all...]
  /external/grpc-grpc/tools/profiling/microbenchmarks/
bm2bq.py 27 columns = [] variable
33 columns.append((row['name'], row['type'].lower()))
44 print ',\n'.join('%s:%s' % (k, t.upper()) for k, t in columns)
57 writer = csv.DictWriter(sys.stdout, [c for c, t in columns])
61 for name, sql_type in columns:
  /external/perfetto/src/trace_processor/
storage_schema.cc 25 StorageSchema::StorageSchema(Columns columns,
27 : columns_(std::move(columns)), primary_keys_(std::move(primary_keys)) {}
30 std::vector<Table::Column> columns; local
33 columns.emplace_back(i++, col->name(), col->GetType(), col->hidden());
38 return Table::Schema(std::move(columns), std::move(primary_keys));
  /development/tools/repo_diff/service/repodiff/persistence/filesystem/
csv_test.go 14 func(columns []string) {
16 assert.Equal(t, 9, len(columns), "Fixture CSV Column Count")
27 func(columns []string) {},
56 func(columns []string) {
57 assert.Equal(t, 2, len(columns), "Initial CSV ColumnCount")
58 reconstituted = append(reconstituted, columns)
  /external/squashfs-tools/squashfs-tools/
progressbar.c 49 int columns; variable
62 "columns\n");
63 columns = 80;
65 columns = winsize.ws_col;
93 static void progress_bar(long long current, long long max, int columns)
104 hashes = (current * (columns - used)) / max;
105 spaces = columns - used - hashes;
107 if((current > max) || (columns - used < 0))
146 progress_bar(cur_uncompressed, estimated_uncompressed, columns);
170 columns);
    [all...]
  /external/tensorflow/tensorflow/lite/tools/accuracy/
csv_writer.h 28 // columns. This supports a very limited set of CSV spec and doesn't do any
37 CSVWriter(const std::vector<string>& columns, std::ofstream* output_stream)
38 : num_columns_(columns.size()), output_stream_(output_stream) {
39 TF_CHECK_OK(WriteRow(columns, output_stream_));
  /external/toolchain-utils/crosperf/
column_chart.py 13 self.columns = []
18 for i in range(len(self.columns)):
19 if column_name == self.columns[i][1]:
24 self.columns.append((column_type, name))
31 for column in self.columns:
35 for column in range(len(self.columns)):
  /external/ImageMagick/coders/
label.c 127 if ((image->columns != 0) && (image->rows != 0))
145 if ((image->columns == 0) && (image->rows == 0))
147 image->columns=(size_t) floor(metrics.width+draw_info->stroke_width+0.5);
152 (((image->columns == 0) || (image->rows == 0)) ||
176 if ((image->columns != 0) && (image->rows != 0))
178 if ((width >= image->columns) && (height >= image->rows))
182 if (((image->columns != 0) && (width >= image->columns)) ||
206 if ((image->columns != 0) && (image->rows != 0))
208 if ((width < image->columns) && (height < image->rows)
    [all...]
hdr.c 199 image->columns=0;
208 while (isgraph(c) && (image->columns == 0) && (image->rows == 0))
364 image->columns=(size_t) width;
381 if ((image->columns == 0) && (image->rows == 0))
388 if ((image->columns == 0) || (image->rows == 0))
393 image->compression=(image->columns < 8) || (image->columns > 0x7ffff) ?
400 status=SetImageExtent(image,image->columns,image->rows,exception);
406 pixels=(unsigned char *) AcquireQuantumMemory(image->columns,4*
410 (void) memset(pixels,0,4*image->columns*sizeof(*pixels))
    [all...]
psd-private.h 32 columns; member in struct:_PSDInfo
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/common/db/
SelectionBuilder.java 61 * can be used to create new columns based on arbitrary (SQL-based) criteria. In advanced usage,
200 * <p>Map columns from a secondary table onto the current result set. References to the column
257 * Assumes that incoming columns are non-null.
261 * @param columns User supplied projection (column list).
263 private void mapColumns(String[] columns) {
264 for (int i = 0; i < columns.length; i++) {
265 final String target = mProjectionMap.get(columns[i]);
267 columns[i] = target;
289 * @param columns Database projection (column list) to return, must be non-NULL.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy)
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/db/
SelectionBuilder.java 61 * can be used to create new columns based on arbitrary (SQL-based) criteria. In advanced usage,
200 * <p>Map columns from a secondary table onto the current result set. References to the column
257 * Assumes that incoming columns are non-null.
261 * @param columns User supplied projection (column list).
263 private void mapColumns(String[] columns) {
264 for (int i = 0; i < columns.length; i++) {
265 final String target = mProjectionMap.get(columns[i]);
267 columns[i] = target;
289 * @param columns Database projection (column list) to return, must be non-NULL.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy)
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.common/db/
SelectionBuilder.java 61 * can be used to create new columns based on arbitrary (SQL-based) criteria. In advanced usage,
200 * <p>Map columns from a secondary table onto the current result set. References to the column
257 * Assumes that incoming columns are non-null.
261 * @param columns User supplied projection (column list).
263 private void mapColumns(String[] columns) {
264 for (int i = 0; i < columns.length; i++) {
265 final String target = mProjectionMap.get(columns[i]);
267 columns[i] = target;
289 * @param columns Database projection (column list) to return, must be non-NULL.
296 public Cursor query(SQLiteDatabase db, String[] columns, String orderBy)
    [all...]
  /art/tools/class2greylist/src/com/android/class2greylist/
AnnotationPropertyWriter.java 42 // Sort columns by name and print header row.
43 List<String> columns = new ArrayList<>(mColumns); local
44 columns.sort(Comparator.naturalOrder());
45 mOutput.println(columns.stream().collect(Collectors.joining(",")));
47 // Sort contents according to columns and print.
49 mOutput.println(columns.stream().map(column -> row.getOrDefault(column, ""))

Completed in 2318 milliseconds

1 2 3 4 5 6 7 8 91011>>