Home
last modified time | relevance | path

Searched full:dimension (Results 1 – 25 of 3680) sorted by relevance

12345678910>>...148

/external/python/google-api-python-client/docs/dyn/
Danalytics_v3.management.customDimensions.html79 <p class="firstline">Get a custom dimension to which the user has access.</p>
82 <p class="firstline">Create a new custom dimension.</p>
88 <p class="firstline">Updates an existing custom dimension. This method supports patch semantics.</p>
91 <p class="firstline">Updates an existing custom dimension.</p>
95 <pre>Get a custom dimension to which the user has access.
98 accountId: string, Account ID for the custom dimension to retrieve. (required)
99 webPropertyId: string, Web property ID for the custom dimension to retrieve. (required)
100 customDimensionId: string, The ID of the custom dimension to retrieve. (required)
105 { # JSON template for Analytics Custom Dimension.
106 "index": 42, # Index of the custom dimension.
[all …]
Ddfareporting_v3_1.reports.compatibleFields.html93 { # Represents a sorted dimension.
95 "name": "A String", # The name of the dimension.
96 "sortOrder": "A String", # An optional sort order for the dimension column.
120 { # Represents a sorted dimension.
122 "name": "A String", # The name of the dimension.
123 "sortOrder": "A String", # An optional sort order for the dimension column.
129 "value": "A String", # The value of the dimension.
130 "dimensionName": "A String", # The name of the dimension.
139 "value": "A String", # The value of the dimension.
140 "dimensionName": "A String", # The name of the dimension.
[all …]
Ddfareporting_v3_3.reports.compatibleFields.html93 { # Represents a sorted dimension.
95 "name": "A String", # The name of the dimension.
96 "sortOrder": "A String", # An optional sort order for the dimension column.
120 { # Represents a sorted dimension.
122 "name": "A String", # The name of the dimension.
123 "sortOrder": "A String", # An optional sort order for the dimension column.
129 "value": "A String", # The value of the dimension.
130 "dimensionName": "A String", # The name of the dimension.
139 "value": "A String", # The value of the dimension.
140 "dimensionName": "A String", # The name of the dimension.
[all …]
Ddfareporting_v3_2.reports.compatibleFields.html93 { # Represents a sorted dimension.
95 "name": "A String", # The name of the dimension.
96 "sortOrder": "A String", # An optional sort order for the dimension column.
120 { # Represents a sorted dimension.
122 "name": "A String", # The name of the dimension.
123 "sortOrder": "A String", # An optional sort order for the dimension column.
129 "value": "A String", # The value of the dimension.
130 "dimensionName": "A String", # The name of the dimension.
139 "value": "A String", # The value of the dimension.
140 "dimensionName": "A String", # The name of the dimension.
[all …]
Ddfareporting_v2_7.reports.compatibleFields.html93 { # Represents a sorted dimension.
95 "name": "A String", # The name of the dimension.
96 "sortOrder": "A String", # An optional sort order for the dimension column.
120 { # Represents a sorted dimension.
122 "name": "A String", # The name of the dimension.
123 "sortOrder": "A String", # An optional sort order for the dimension column.
129 "value": "A String", # The value of the dimension.
130 "dimensionName": "A String", # The name of the dimension.
139 "value": "A String", # The value of the dimension.
140 "dimensionName": "A String", # The name of the dimension.
[all …]
Ddfareporting_v2_8.reports.compatibleFields.html93 { # Represents a sorted dimension.
95 "name": "A String", # The name of the dimension.
96 "sortOrder": "A String", # An optional sort order for the dimension column.
120 { # Represents a sorted dimension.
122 "name": "A String", # The name of the dimension.
123 "sortOrder": "A String", # An optional sort order for the dimension column.
129 "value": "A String", # The value of the dimension.
130 "dimensionName": "A String", # The name of the dimension.
139 "value": "A String", # The value of the dimension.
140 "dimensionName": "A String", # The name of the dimension.
[all …]
Ddfareporting_v2_7.reports.html136 { # Represents a sorted dimension.
138 "name": "A String", # The name of the dimension.
139 "sortOrder": "A String", # An optional sort order for the dimension column.
163 { # Represents a sorted dimension.
165 "name": "A String", # The name of the dimension.
166 "sortOrder": "A String", # An optional sort order for the dimension column.
172 "value": "A String", # The value of the dimension.
173 "dimensionName": "A String", # The name of the dimension.
182 "value": "A String", # The value of the dimension.
183 "dimensionName": "A String", # The name of the dimension.
[all …]
Ddfareporting_v3_1.reports.html136 { # Represents a sorted dimension.
138 "name": "A String", # The name of the dimension.
139 "sortOrder": "A String", # An optional sort order for the dimension column.
163 { # Represents a sorted dimension.
165 "name": "A String", # The name of the dimension.
166 "sortOrder": "A String", # An optional sort order for the dimension column.
172 "value": "A String", # The value of the dimension.
173 "dimensionName": "A String", # The name of the dimension.
182 "value": "A String", # The value of the dimension.
183 "dimensionName": "A String", # The name of the dimension.
[all …]
/external/tensorflow/tensorflow/python/framework/
Dtensor_shape_test.py33 dim = tensor_shape.Dimension(12)
36 self.assertEqual(dim, tensor_shape.Dimension(12))
37 self.assertEqual(tensor_shape.Dimension(15),
38 dim + tensor_shape.Dimension(3))
39 self.assertEqual(tensor_shape.Dimension(15), dim + 3)
40 self.assertEqual(tensor_shape.Dimension(15), 3 + dim)
41 self.assertEqual(tensor_shape.Dimension(9), dim - 3)
42 self.assertEqual(tensor_shape.Dimension(1), 13 - dim)
43 self.assertEqual(tensor_shape.Dimension(24),
44 dim * tensor_shape.Dimension(2))
[all …]
Dtensor_shape.py42 Concretely, `tensor_shape[i]` returned a Dimension instance in V1, but
72 dim = Dimension(None)
101 def dimension_value(dimension): argument
107 When accessing the value of a TensorShape dimension,
122 dimension: Either a `Dimension` instance, an integer, or None.
127 if isinstance(dimension, Dimension):
128 return dimension.value
129 return dimension
141 If you want to retrieve the Dimension instance corresponding to a certain
157 dim = Dimension(None)
[all …]
/external/angle/src/common/
Dvector_utils.h19 template <size_t Dimension, typename Type>
34 template <size_t Dimension, typename Type>
38 using VectorN = Vector<Dimension, Type>;
45 VectorBase(const VectorBase<Dimension, Type2> &other);
53 constexpr size_t size() const { return Dimension; } in size()
89 Type dot(const VectorBase<Dimension, Type> &other) const;
110 Type mData[Dimension];
113 template <size_t Dimension, typename Type>
114 std::ostream &operator<<(std::ostream &ostream, const VectorBase<Dimension, Type> &vector);
181 template <size_t Dimension, typename Type>
[all …]
/external/fonttools/Tests/varLib/data/
DBuild.designspace14 <dimension name="weight" xvalue="0" />
15 <dimension name="contrast" xvalue="0" />
23 <dimension name="weight" xvalue="368" />
24 <dimension name="contrast" xvalue="0" />
29 <dimension name="weight" xvalue="1000" />
30 <dimension name="contrast" xvalue="0" />
35 <dimension name="weight" xvalue="1000" />
36 <dimension name="contrast" xvalue="100" />
41 <dimension name="weight" xvalue="0" />
42 <dimension name="contrast" xvalue="100" />
[all …]
/external/eigen/unsupported/test/
Dcxx11_tensor_image_patch.cpp21 VERIFY_IS_EQUAL(tensor.dimension(0), tensor_row_major.dimension(3)); in test_simple_patch()
22 VERIFY_IS_EQUAL(tensor.dimension(1), tensor_row_major.dimension(2)); in test_simple_patch()
23 VERIFY_IS_EQUAL(tensor.dimension(2), tensor_row_major.dimension(1)); in test_simple_patch()
24 VERIFY_IS_EQUAL(tensor.dimension(3), tensor_row_major.dimension(0)); in test_simple_patch()
29 VERIFY_IS_EQUAL(single_pixel_patch.dimension(0), 2); in test_simple_patch()
30 VERIFY_IS_EQUAL(single_pixel_patch.dimension(1), 1); in test_simple_patch()
31 VERIFY_IS_EQUAL(single_pixel_patch.dimension(2), 1); in test_simple_patch()
32 VERIFY_IS_EQUAL(single_pixel_patch.dimension(3), 3*5); in test_simple_patch()
33 VERIFY_IS_EQUAL(single_pixel_patch.dimension(4), 7); in test_simple_patch()
38 VERIFY_IS_EQUAL(single_pixel_patch_row_major.dimension(0), 7); in test_simple_patch()
[all …]
Dcxx11_tensor_patch.cpp32 VERIFY_IS_EQUAL(no_patch.dimension(0), 1); in test_simple_patch()
33 VERIFY_IS_EQUAL(no_patch.dimension(1), 1); in test_simple_patch()
34 VERIFY_IS_EQUAL(no_patch.dimension(2), 1); in test_simple_patch()
35 VERIFY_IS_EQUAL(no_patch.dimension(3), 1); in test_simple_patch()
36 VERIFY_IS_EQUAL(no_patch.dimension(4), tensor.size()); in test_simple_patch()
38 VERIFY_IS_EQUAL(no_patch.dimension(0), tensor.size()); in test_simple_patch()
39 VERIFY_IS_EQUAL(no_patch.dimension(1), 1); in test_simple_patch()
40 VERIFY_IS_EQUAL(no_patch.dimension(2), 1); in test_simple_patch()
41 VERIFY_IS_EQUAL(no_patch.dimension(3), 1); in test_simple_patch()
42 VERIFY_IS_EQUAL(no_patch.dimension(4), 1); in test_simple_patch()
[all …]
Dcxx11_tensor_volume_patch.cpp15 VERIFY_IS_EQUAL(single_voxel_patch.dimension(0), 4); in test_single_voxel_patch()
16 VERIFY_IS_EQUAL(single_voxel_patch.dimension(1), 1); in test_single_voxel_patch()
17 VERIFY_IS_EQUAL(single_voxel_patch.dimension(2), 1); in test_single_voxel_patch()
18 VERIFY_IS_EQUAL(single_voxel_patch.dimension(3), 1); in test_single_voxel_patch()
19 VERIFY_IS_EQUAL(single_voxel_patch.dimension(4), 2 * 3 * 5); in test_single_voxel_patch()
20 VERIFY_IS_EQUAL(single_voxel_patch.dimension(5), 7); in test_single_voxel_patch()
24 VERIFY_IS_EQUAL(single_voxel_patch_row_major.dimension(0), 7); in test_single_voxel_patch()
25 VERIFY_IS_EQUAL(single_voxel_patch_row_major.dimension(1), 2 * 3 * 5); in test_single_voxel_patch()
26 VERIFY_IS_EQUAL(single_voxel_patch_row_major.dimension(2), 1); in test_single_voxel_patch()
27 VERIFY_IS_EQUAL(single_voxel_patch_row_major.dimension(3), 1); in test_single_voxel_patch()
[all …]
/external/tensorflow/tensorflow/compiler/xla/g3doc/
Dshapes.md14 The dimension numbers are arbitrary labels for convenience. The order of
15 these dimension numbers does not imply a particular minor/major ordering in
18 * By convention, dimensions are listed in increasing order of dimension
20 dimension 0 has size `A`, dimension 1 has size `B` and dimension 2 has size
24 dimension -1 is the last dimension (equivalent to `N-1` for an `N`
26 above, dimension -1 has size `C`, dimension -2 has size `B` and so on.
31 * dimension 0: `y`
32 * dimension 1: `x`
36 * dimension 0: `z`
37 * dimension 1: `y`
[all …]
/external/google-fruit/extras/benchmark/tables/
Dfruit_internal.yml5 dimension: "num_bindings"
10 dimension: "num_classes"
15 dimension: "compiler_name"
43 dimension: "name"
53 dimension: "compile_time"
69 dimension: "name"
79 dimension: "compile_time"
95 dimension: "name"
105 dimension: "incremental_compile_time"
121 dimension: "name"
[all …]
Dfruit_wiki.yml5 dimension: "num_bindings"
10 dimension: "num_classes"
15 dimension: "compiler_name"
30 dimension: "compile_time"
41 dimension: "compile_time"
52 dimension: "startup_time"
63 dimension: "Total per request"
74 dimension: "Total"
92 dimension: "name"
102 dimension: "compile_time"
[all …]
/external/tflite-support/tensorflow_lite_support/cc/task/vision/utils/
Dframe_buffer_common_utils.cc38 const uint8* input, FrameBuffer::Dimension dimension, in CreateFromNV12RawBuffer() argument
41 {input, /*stride=*/{dimension.width, kGrayChannel}}, in CreateFromNV12RawBuffer()
42 {input + dimension.Size(), /*stride=*/{dimension.width, 2}}}; in CreateFromNV12RawBuffer()
43 return FrameBuffer::Create(planes_nv12, dimension, FrameBuffer::Format::kNV12, in CreateFromNV12RawBuffer()
49 const uint8* input, FrameBuffer::Dimension dimension, in CreateFromNV21RawBuffer() argument
52 /*stride=*/{dimension.width, kGrayChannel}}; in CreateFromNV21RawBuffer()
53 return FrameBuffer::Create({input_plane}, dimension, in CreateFromNV21RawBuffer()
61 return buffer1.dimension() == buffer2.dimension(); in AreBufferDimsEqual()
92 int GetFrameBufferByteSize(FrameBuffer::Dimension dimension, in GetFrameBufferByteSize() argument
99 return /*y plane*/ dimension.Size() + in GetFrameBufferByteSize()
[all …]
/external/tensorflow/tensorflow/core/util/
Dtensor_format.h31 // The mnemonics specify the meaning of each tensor dimension sorted from
46 // as NCHW, except that the size of the Channels dimension is divided by 4,
47 // and a new dimension of size 4 is appended, which packs 4 adjacent channel
54 // Similar to NHWC, but the size of the W dimension is divided by 4, and a
55 // new dimension of size 4 is appended, which packs 4 adjacent activations
56 // in the width dimension.
73 // The mnemonics specify the meaning of each tensor dimension sorted
91 // of the Input Channels dimension is divided by 4, and a new dimension of
126 // since it just a component of the width dimension. in GetTensorSpatialDims()
172 // Returns the index of the batch dimension.
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Ddynamic_dimension_inference.cc155 HloInstruction* operand, ShapeIndex index, int64 dimension,
159 ShapeIndex index, int64 dimension, HloInstruction* dynamic_size)>;
162 int64 operand_index, int64 dimension,
167 int64 dimension);
171 int64 dimension);
175 int64 operand_index, int64 dimension);
185 // Pass through a dynamic dimension from the input to the output with the
202 hlo, [&](HloInstruction* operand, ShapeIndex index, int64 dimension, in DefaultAction()
205 "Asked to propagate a dynamic dimension from hlo ", operand->name(), in DefaultAction()
206 "@", index.ToString(), "@", dimension, " to hlo ", hlo->ToString(), in DefaultAction()
[all …]
/external/libxml2/test/schemas/
Dbug306806_0.xml9 <radius dimension='L' Length='inch'> 1.375 </radius>
10 <length dimension='L' Length='inch'> 30.250 </length>
12 <translation dimension='L' Length='inch'> -13.125 0.000 0.000</translation>
13 <rotation dimension='L' Length='degree'> -0.000 90.000 0.000</rotation>
24 <radius dimension='L' Length='inch'> 1.375 </radius>
25 <base1 dimension='L' Length='inch'> 0 0 0 </base1>
26 <base2 dimension='L' Length='inch'> 1.1 1.1 1.1 </base2>
36 <radius dimension='L' Length='inch'> 1.375 </radius>
37 <base1 dimension='L' Length='inch'> 0 0 0 </base1>
38 <base2 dimension='L' Length='inch'> 1.1 1.1 1.1 </base2>
[all …]
/external/llvm-project/flang/test/Semantics/
Dspec-expr.f9012 real, dimension(3) :: realVar1
13 real, dimension(dConst%field) :: realVar2
23 real, dimension(inArg) :: realVar1
24 real, dimension(inoutArg) :: realVar2
26 real, dimension(outArg) :: realVar3
28 real, dimension(optArg) :: realVar4
37 real, dimension(intCommonVar) :: realVar
48 real, dimension(intVar) :: realVar
54 real, dimension(storage_size([1,2])) :: realVar
64 real, dimension(storage_size(dType(1, 2))) :: realArray
[all …]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DArrayCreationLevel.java48 private Expression dimension; field in ArrayCreationLevel
56 public ArrayCreationLevel(int dimension) { in ArrayCreationLevel() argument
57 this(null, new IntegerLiteralExpr("" + dimension), new NodeList<>()); in ArrayCreationLevel()
60 public ArrayCreationLevel(Expression dimension) { in ArrayCreationLevel() argument
61 this(null, dimension, new NodeList<>()); in ArrayCreationLevel()
65 public ArrayCreationLevel(Expression dimension, NodeList<AnnotationExpr> annotations) { in ArrayCreationLevel() argument
66 this(null, dimension, annotations); in ArrayCreationLevel()
73 …public ArrayCreationLevel(TokenRange tokenRange, Expression dimension, NodeList<AnnotationExpr> an… in ArrayCreationLevel() argument
75 setDimension(dimension); in ArrayCreationLevel()
93 * Sets the dimension
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/
Dgen_blit11helper.py39 …:BlitShaderType Blit11::getBlitShaderType(BlitShaderOperation operation, ShaderDimension dimension)
82 switch (dimension)
90 template_get_blitshader_case_dimension = """ case SHADER_{dimension}:
96 "Blit11 {dimension} {shader_comment} pixel shader"));
152 def format_shader_include(dimension, blitshader): argument
154 filename=blitshader[2].replace("*", dimension.lower()))
159 for dimension in supported_dimensions:
160 dimension_cases.append(format_get_blitshader_case_dimension(operation, dimension))
167 def format_get_blitshader_case_dimension(operation, dimension): argument
169 if dimension == "2D" and operation.find("TOI") != -1:
[all …]

12345678910>>...148