HomeSort by relevance Sort by last modified time
    Searched refs:components (Results 126 - 150 of 1210) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/autotest/client/common_lib/cros/tendo/
buffet_dbus_helper.py 60 components = name.split('_')
61 name = ''.join(x.title() for x in components)
  /external/icu/icu4c/source/extra/uconv/
resfiles.mk 8 # the character separating components of a filename.
  /external/libchrome/base/
version.h 33 // Initializes from a vector of components, like {1, 2, 3, 4}. Call IsValid()
35 explicit Version(std::vector<uint32_t> components);
60 const std::vector<uint32_t>& components() const { return components_; } function in class:base::Version
  /external/mesa3d/src/compiler/glsl/
opt_structure_splitting.cpp 27 * If a structure is only ever referenced by its components, then
28 * split those components out to individual variables so they can be
52 this->components = NULL;
67 ir_variable **components; member in class:__anon29247::variable_entry
165 /* We'll split copies of a structure to copies of components, so don't
244 *deref = new(entry->mem_ctx) ir_dereference_variable(entry->components[i]);
277 new_lhs = new(mem_ctx) ir_dereference_variable(lhs_entry->components[i]);
285 new_rhs = new(mem_ctx) ir_dereference_variable(rhs_entry->components[i]);
335 * components.
342 entry->components = ralloc_array(mem_ctx
    [all...]
  /external/mesa3d/src/compiler/glsl/tests/
uniform_initializer_utils.cpp 81 for (unsigned i = 0; i < type->components(); i++) {
116 for (unsigned i = 0; i < type->components(); i++) {
209 verify_data(storage + (i * element_type->components()), 0,
213 const unsigned components = element_type->components(); local
217 storage_array_size * components,
222 for (unsigned i = 0; i < val->type->components(); i++) {
254 val->type->components(),
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
CommandSetNode.java 45 for (Node node : components) {
55 for (Node node : components) {
ConstantSetNode.java 42 components.addAll(addons);
63 for (Node node : components) {
75 // for (Iterator it = components.iterator(); it.hasNext();) {
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
batch_dataset_op_test.py 45 components = np.random.randint(12, size=(100,)).astype(np.int32)
47 dataset_ops.Dataset.from_tensor_slices(components)
57 for start in range(0, len(components), 4):
60 for i, c in enumerate(components[start:start + 4])
63 [c for c in components[start:start + 4] for _ in range(c)],
66 len(components) - start), 12],
73 components = np.random.randint(5, size=(40,)).astype(np.int32)
75 dataset_ops.Dataset.from_tensor_slices(components)
85 for start in range(0, len(components), 4):
88 for i, c in enumerate(components[start:start + 4]
    [all...]
dataset_constructor_op_test.py 35 components = (array_ops.placeholder(dtypes.int32),
38 dataset = dataset_ops.Dataset.from_tensors(components)
77 components = (variable_array, np.array([1, 2, 3]), np.array(37.0))
79 return dataset_ops.Dataset.from_tensors(components)
82 # Equal length components
90 def _build_tensor_slices_dataset(self, components):
91 return dataset_ops.Dataset.from_tensor_slices(components)
94 # Equal length components
95 components = (np.tile(np.array([[1], [2], [3], [4]]), 20),
105 self.run_core_tests(lambda: self._build_tensor_slices_dataset(components),
    [all...]
zip_dataset_op_test.py 31 components = [
38 for component in components
43 # Equal length components
47 # Variable length components
  /frameworks/native/cmds/lshal/
utils.h 58 std::string join(const A &components, const std::string &separator) {
61 for (const auto &component : components) {
  /hardware/libhardware/modules/camera/3_4/
format_metadata_factory_test.cpp 96 PartialMetadataSet components; local
98 std::inserter(components, components.end())),
101 for (auto& component : components) {
161 PartialMetadataSet components; local
163 std::inserter(components, components.end())),
167 for (auto& component : components) {
  /external/guice/extensions/struts2/lib/
struts2-core-2.2.1.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
version.py 68 dot-separated numeric components, with an optional "pre-release" tag
70 followed by a number. If the numeric components of two version
170 # 3) recognize the numeric components may have leading zeroes
173 # string is split up into a tuple of integer and string components, and
234 version numbers, the numeric components will be compared
235 numerically, and the alphabetic components lexically. The following
273 components = filter(lambda x: x and x != '.',
275 for i in range(len(components)):
277 components[i] = int(components[i])
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealVectorFormat.java 33 * Formats a vector in components list format "{v0; v1; ...; vk-1}".
35 * any user-defined strings. The number format for components can be configured.</p>
78 /** The format used for components. */
84 * "{", "}", and "; " and the default number format for components.</p>
91 * Create an instance with a custom number format for components.
92 * @param format the custom format for components.
111 * for components.
115 * @param format the custom format for components.
154 * Get the format separator between components.
162 * Get the components format
289 List<Number> components = new ArrayList<Number>(); local
    [all...]
  /external/flatbuffers/src/
idl_gen_fbs.cpp 49 for (auto it = name_space.components.begin();
50 it != name_space.components.end(); ++it) {
51 if (it != name_space.components.begin()) schema += ".";
65 ns.components[ns.components.size() - 1 - i] += "_";
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/
DemoUtility.java 57 Component[] components = cont.getComponents(); local
58 for (int i = 0; i < components.length; ++i) {
63 if (components[i] instanceof Label) {
64 switch (((Label)components[i]).getAlignment()) {
70 gridbag.setConstraints(components[i], c);
  /external/libmojo/mojo/common/
common_custom_types_struct_traits.cc 23 StructTraits<common::mojom::VersionDataView, base::Version>::components( function in class:mojo::StructTraits
25 return version.components();
32 std::vector<uint32_t> components; local
33 if (!data.ReadComponents(&components))
36 *out = base::Version(base::Version(std::move(components)));
  /external/libxcam/xcore/
v4l2_buffer_proxy.cpp 92 info.components = 2;
99 info.components = 3;
108 info.components = 1;
118 info.components = 1;
127 info.components = 1;
  /external/python/cpython2/Lib/distutils/
version.py 68 dot-separated numeric components, with an optional "pre-release" tag
70 followed by a number. If the numeric components of two version
170 # 3) recognize the numeric components may have leading zeroes
173 # string is split up into a tuple of integer and string components, and
234 version numbers, the numeric components will be compared
235 numerically, and the alphabetic components lexically. The following
273 components = filter(lambda x: x and x != '.',
275 for i in range(len(components)):
277 components[i] = int(components[i]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
version.py 68 dot-separated numeric components, with an optional "pre-release" tag
70 followed by a number. If the numeric components of two version
170 # 3) recognize the numeric components may have leading zeroes
173 # string is split up into a tuple of integer and string components, and
234 version numbers, the numeric components will be compared
235 numerically, and the alphabetic components lexically. The following
273 components = filter(lambda x: x and x != '.',
275 for i in range(len(components)):
277 components[i] = int(components[i]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
version.py 68 dot-separated numeric components, with an optional "pre-release" tag
70 followed by a number. If the numeric components of two version
170 # 3) recognize the numeric components may have leading zeroes
173 # string is split up into a tuple of integer and string components, and
234 version numbers, the numeric components will be compared
235 numerically, and the alphabetic components lexically. The following
273 components = filter(lambda x: x and x != '.',
275 for i in range(len(components)):
277 components[i] = int(components[i]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
version.py 68 dot-separated numeric components, with an optional "pre-release" tag
70 followed by a number. If the numeric components of two version
170 # 3) recognize the numeric components may have leading zeroes
173 # string is split up into a tuple of integer and string components, and
234 version numbers, the numeric components will be compared
235 numerically, and the alphabetic components lexically. The following
273 components = filter(lambda x: x and x != '.',
275 for i in range(len(components)):
277 components[i] = int(components[i]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
version.py 68 dot-separated numeric components, with an optional "pre-release" tag
70 followed by a number. If the numeric components of two version
170 # 3) recognize the numeric components may have leading zeroes
173 # string is split up into a tuple of integer and string components, and
234 version numbers, the numeric components will be compared
235 numerically, and the alphabetic components lexically. The following
273 components = filter(lambda x: x and x != '.',
275 for i in range(len(components)):
277 components[i] = int(components[i]
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_vector_splitting.cpp 27 * If a vector is only ever referenced by its components, then
28 * split those components out to individual variables so they can be
63 ir_variable *components[4]; member in class:variable_entry
242 ir_variable *var = entry->components[swiz->mask.x];
268 new_lhs = new(mem_ctx) ir_dereference_variable(lhs->components[i]);
277 new(mem_ctx) ir_dereference_variable(rhs->components[rhs_chan]);
312 ir->lhs = new(mem_ctx) ir_dereference_variable(lhs->components[elem]);
354 * components.
370 entry->components[i] = new(entry->mem_ctx) ir_variable(type, name,
383 entry->components[i]->data.has_initializer = true
    [all...]

Completed in 704 milliseconds

1 2 3 4 56 7 8 91011>>