Searched defs:components (Results 151 - 175 of 224) sorted by relevance

123456789

/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dglsl_types.h186 * this function gets the scalar type of the individual components. For
197 * individual components. For structs and arrays of structs, this function
237 unsigned components() const function in struct:glsl_type
243 * Calculate the number of components slots required to hold this type
H A Dir.cpp148 /* Either all the vector components are assigned or the variable is some
181 /* If the RHS is a vector type, assume that all components of the vector
617 * value_list must be a 1-for-1 match with the structure components. Each
626 value_list->move_nodes_to(& this->components);
638 * the components. For matrices, the scalar fills the components of the
648 /* Vector or scalar - fill all components */
652 for (unsigned i = 0; i < type->components(); i++)
656 for (unsigned i = 0; i < type->components(); i++)
660 for (unsigned i = 0; i < type->components();
1372 const unsigned components[4] = { x, y, z, w }; local
[all...]
/external/chromium_org/third_party/skia/src/gpu/gl/
H A DGrGLPathRendering.cpp299 void GrGLPathRendering::enablePathTexGen(int unitIdx, PathTexGenComponents components, argument
301 SkASSERT(components >= kS_PathTexGenComponents &&
302 components <= kSTR_PathTexGenComponents);
306 components == fHWPathTexGenSettings[unitIdx].fNumComponents &&
308 3 * components * sizeof(GrGLfloat))) {
314 fHWPathTexGenSettings[unitIdx].fNumComponents = components;
315 GL_CALL(PathTexGen(GR_GL_TEXTURE0 + unitIdx, GR_GL_OBJECT_LINEAR, components, coefficients));
318 3 * components * sizeof(GrGLfloat));
321 void GrGLPathRendering::enablePathTexGen(int unitIdx, PathTexGenComponents components, argument
324 SkASSERT(components >
369 setProgramPathFragmentInputTransform(GrGLuint program, GrGLint location, GrGLenum genMode, GrGLint components, const SkMatrix& matrix) argument
[all...]
/external/chromium_org/url/
H A Durl_canon.h272 // append slashes which will be needed before any authority components for most
290 // The components for the username and password refer to ranges in the
292 // is legal as long as the two components don't overlap.
334 // components in the input text, from 1 to 4. If |family| is not IPV4,
496 // canonicalizing individual components.
577 // component replacement (different strings for different components) can be
582 // components identify offsets within these strings, so that they can all be
590 // Constructor normally used by callers wishing to replace components. This
592 // override the components they want to replace.
604 // Constructor normally used internally to initialize all the components t
731 const Parsed& components() const { return components_; } function in class:url::Replacements
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fDefaultVertexAttributeTests.cpp404 const int components = (glu::isDataTypeMatrix(m_dataType)) ? (glu::getDataTypeMatrixNumRows(m_dataType)) : (glu::getDataTypeScalarSize(m_dataType)); local
426 if (components == 1)
428 else if (components == 2)
430 else if (components == 3)
432 else if (components == 4)
482 const int components = (glu::isDataTypeMatrix(m_dataType)) ? (glu::getDataTypeMatrixNumRows(m_dataType)) : (glu::getDataTypeScalarSize(m_dataType)); local
484 if (components == 1)
486 else if (components == 2)
488 else if (components == 3)
490 else if (components
[all...]
/external/mesa3d/src/glsl/
H A Dglsl_types.h186 * this function gets the scalar type of the individual components. For
197 * individual components. For structs and arrays of structs, this function
237 unsigned components() const function in struct:glsl_type
243 * Calculate the number of components slots required to hold this type
H A Dir.cpp148 /* Either all the vector components are assigned or the variable is some
181 /* If the RHS is a vector type, assume that all components of the vector
617 * value_list must be a 1-for-1 match with the structure components. Each
626 value_list->move_nodes_to(& this->components);
638 * the components. For matrices, the scalar fills the components of the
648 /* Vector or scalar - fill all components */
652 for (unsigned i = 0; i < type->components(); i++)
656 for (unsigned i = 0; i < type->components(); i++)
660 for (unsigned i = 0; i < type->components();
1372 const unsigned components[4] = { x, y, z, w }; local
[all...]
/external/chromium_org/base/files/
H A Dfile_path.cc122 // extension components of '.tar.gz' and '.tar.Z' respectively.
221 void FilePath::GetComponents(std::vector<StringType>* components) const {
222 DCHECK(components);
223 if (!components)
225 components->clear();
233 // Capture path components.
253 *components = std::vector<StringType>(ret_val.rbegin(), ret_val.rend());
562 std::vector<StringType> components; local
563 GetComponents(&components);
565 std::vector<StringType>::const_iterator it = components
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_service_autofill_unittest.cc43 #include "components/autofill/core/browser/autofill_test_utils.h"
44 #include "components/autofill/core/browser/personal_data_manager.h"
45 #include "components/autofill/core/browser/webdata/autofill_change.h"
46 #include "components/autofill/core/browser/webdata/autofill_entry.h"
47 #include "components/autofill/core/browser/webdata/autofill_profile_syncable_service.h"
48 #include "components/autofill/core/browser/webdata/autofill_table.h"
49 #include "components/autofill/core/browser/webdata/autofill_webdata_service.h"
50 #include "components/signin/core/browser/signin_manager.h"
51 #include "components/sync_driver/data_type_controller.h"
52 #include "components/webdat
550 ProfileSyncComponentsFactoryMock* components = local
[all...]
/external/chromium_org/chrome/installer/util/
H A Dinstall_util.cc397 std::vector<base::FilePath::StringType> components; local
398 exe_dir.GetComponents(&components);
401 // path to our executable and one of the components will be the drive letter.
402 DCHECK(!components.empty());
405 for (ComponentsIterator current = components.rbegin(), parent = current + 1;
406 parent != components.rend(); current = parent++) {
/external/chromium_org/components/policy/core/common/
H A Dpolicy_loader_win_unittest.cc5 #include "components/policy/core/common/policy_loader_win.h"
32 #include "components/policy/core/common/async_policy_provider.h"
33 #include "components/policy/core/common/configuration_policy_provider_test.h"
34 #include "components/policy/core/common/external_data_fetcher.h"
35 #include "components/policy/core/common/policy_bundle.h"
36 #include "components/policy/core/common/policy_map.h"
37 #include "components/policy/core/common/preg_parser_win.h"
38 #include "components/policy/core/common/schema_map.h"
420 // components to their policy.
425 const base::DictionaryValue* components local
526 const base::DictionaryValue* components = NULL; local
[all...]
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dplugin_instance.cc308 PP_URLComponents_Dev* components) {
415 PP_URLComponents_Dev* components) {
432 PP_URLComponents_Dev* components) {
438 PP_URLComponents_Dev* components) {
307 GetDocumentURL(PP_Instance instance, PP_URLComponents_Dev* components) argument
412 ResolveRelativeToDocument( PP_Instance instance, PP_Var relative, PP_URLComponents_Dev* components) argument
431 GetPluginInstanceURL(PP_Instance instance, PP_URLComponents_Dev* components) argument
437 GetPluginReferrerURL(PP_Instance instance, PP_URLComponents_Dev* components) argument
/external/chromium_org/storage/browser/fileapi/
H A Dobfuscated_file_util.cc352 std::vector<base::FilePath::StringType> components; local
353 VirtualPath::GetComponents(url.path(), &components);
356 for (index = 0; index < components.size(); ++index) {
357 base::FilePath::StringType name = components[index];
365 if (!recursive && components.size() - index > 1)
368 for (; index < components.size(); ++index) {
370 file_info.name = components[index];
H A Dsandbox_directory_database.cc449 std::vector<base::FilePath::StringType> components; local
450 VirtualPath::GetComponents(path, &components);
453 for (iter = components.begin(); iter != components.end(); ++iter) {
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-layout-gsub-table.hh678 Supplier<GlyphID> &components, /* Starting from second */
684 if (unlikely (!component.serialize (c, components, num_components))) return TRACE_RETURN (false);
676 serialize(hb_serialize_context_t *c, GlyphID ligature, Supplier<GlyphID> &components, unsigned int num_components ) argument
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/
H A Degl_dri2.c1162 EGLint components; member in struct:wl_drm_components_descriptor
1465 *value = format->components;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dmipmap.c153 * \param comps number of components per pixel (1..4)
779 * \param comps number of components per pixel (1..4)
1703 * \param comps components per texel (1, 2, 3 or 4)
2029 GLint components; local
2041 * Then, get number of components, choose temporary image datatype,
2046 components = _mesa_format_num_components(temp_format);
2128 _mesa_generate_mipmap_level(target, temp_datatype, components, border,
H A Dpack.c337 * Get indexes of color components for a basic color format, such as
5861 GLint components = _mesa_components_in_format(format); local
5865 components = 1;
5867 if (bytesPerPixel <= 0 || components <= 0)
5870 bytesPerComp = bytesPerPixel / components;
5874 compsPerRow = components * width;
6025 * As above, but GLuint components.
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc144 // Split a string using a character delimiter. Append the components
192 // Split a string using a character delimiter. Append the components
232 // This merges a vector of string components with delim inserted
233 // as separaters between components.
264 void JoinStrings(const vector<string>& components, argument
267 JoinStringsIterator(components.begin(), components.end(), delim, result);
/external/deqp/framework/common/
H A DtcuCommandLine.cpp567 // Match a list of pattern components to a list of path components. A pattern
569 // more whole path components.
604 const vector<string> components = de::splitString(caseName, '.'); local
612 components.begin(), components.end(), allowPrefix))
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsub-table.hh678 Supplier<GlyphID> &components, /* Starting from second */
684 if (unlikely (!component.serialize (c, components, num_components))) return TRACE_RETURN (false);
676 serialize(hb_serialize_context_t *c, GlyphID ligature, Supplier<GlyphID> &components, unsigned int num_components ) argument
/external/mesa3d/src/egl/drivers/dri2/
H A Degl_dri2.c1162 EGLint components; member in struct:wl_drm_components_descriptor
1465 *value = format->components;
/external/mesa3d/src/mesa/main/
H A Dmipmap.c146 * \param comps number of components per pixel (1..4)
772 * \param comps number of components per pixel (1..4)
1696 * \param comps components per texel (1, 2, 3 or 4)
2022 GLint components; local
2034 * Then, get number of components, choose temporary image datatype,
2039 components = _mesa_format_num_components(temp_format);
2121 _mesa_generate_mipmap_level(target, temp_datatype, components, border,
H A Dpack.c337 * Get indexes of color components for a basic color format, such as
5861 GLint components = _mesa_components_in_format(format); local
5865 components = 1;
5867 if (bytesPerPixel <= 0 || components <= 0)
5870 bytesPerComp = bytesPerPixel / components;
5874 compsPerRow = components * width;
6025 * As above, but GLuint components.
/external/proguard/src/proguard/gui/
H A DProGuardGUI.java502 // Collect all components that are followed by text fields and make
920 * Sets the preferred sizes of the given components to the maximum of their
923 private void setCommonPreferredSize(List components) argument
927 for (int index = 0; index < components.size(); index++)
929 JComponent component = (JComponent)components.get(index);
938 // Set the size that we found as the preferred size for all components.
939 for (int index = 0; index < components.size(); index++)
941 JComponent component = (JComponent)components.get(index);

Completed in 2226 milliseconds

123456789