Home
last modified time | relevance | path

Searched refs:components (Results 1 – 25 of 2596) sorted by relevance

12345678910>>...104

/third_party/node/deps/npm/node_modules/uri-js/dist/esnext/
Duri.js91 function _normalizeComponentEncoding(components, protocol) { argument
96 if (components.scheme)
97components.scheme = String(components.scheme).replace(protocol.PCT_ENCODED, decodeUnreserved).toLo…
98 if (components.userinfo !== undefined)
99components.userinfo = String(components.userinfo).replace(protocol.PCT_ENCODED, decodeUnreserved).…
100 if (components.host !== undefined)
101components.host = String(components.host).replace(protocol.PCT_ENCODED, decodeUnreserved).toLowerC…
102 if (components.path !== undefined)
103components.path = String(components.path).replace(protocol.PCT_ENCODED, decodeUnreserved).replace(…
104 if (components.query !== undefined)
[all …]
/third_party/node/deps/npm/node_modules/uri-js/dist/esnext/schemes/
Dhttp.js4 parse: function (components, options) { argument
6 if (!components.host) {
7 components.error = components.error || "HTTP URIs must have a host.";
9 return components;
11 serialize: function (components, options) { argument
12 const secure = String(components.scheme).toLowerCase() === "https";
14 if (components.port === (secure ? 443 : 80) || components.port === "") {
15 components.port = undefined;
18 if (!components.path) {
19 components.path = "/";
[all …]
/third_party/node/deps/npm/node_modules/uri-js/dist/es5/
Duri.all.js782 function _normalizeComponentEncoding(components, protocol) { argument
787 …if (components.scheme) components.scheme = String(components.scheme).replace(protocol.PCT_ENCODED,…
788 …if (components.userinfo !== undefined) components.userinfo = String(components.userinfo).replace(p…
789 …if (components.host !== undefined) components.host = String(components.host).replace(protocol.PCT_…
790 …if (components.path !== undefined) components.path = String(components.path).replace(protocol.PCT_…
791 …if (components.query !== undefined) components.query = String(components.query).replace(protocol.P…
792 …if (components.fragment !== undefined) components.fragment = String(components.fragment).replace(p…
793 return components;
871 var components = {};
878 components.scheme = matches[1];
[all …]
/third_party/mindspore/tests/mindspore_test_framework/pipeline/gradient/
Dcompare_gradient.py18 from ...components.executor.check_gradient_wrt_inputs import CheckGradientWrtInputsEC
19 from ...components.executor.check_gradient_wrt_params import CheckGradientWrtParamsEC
20 from ...components.executor.check_jacobian_wrt_inputs import CheckJacobianWrtInputsEC
21 from ...components.executor.exec_gradient import IdentityBackwardEC
22 from ...components.expect_result_policy.cartesian_product_on_id_for_expect_result import IdCartesia…
23 from ...components.facade.me_facade import MeFacadeFC
24 from ...components.function.get_function_from_config import IdentityBC
25 from ...components.function.run_gradient_wrt_inputs import RunBackwardBlockWrtInputsBC
26 from ...components.function.run_gradient_wrt_params import RunBackwardBlockWrtParamsBC
27 from ...components.function_inputs_policy.cartesian_product_on_id_for_function_inputs import IdCart…
[all …]
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeFilePath.cpp50 FilePath::FilePath (const std::vector<std::string>& components) in FilePath() argument
52 for (size_t ndx = 0; ndx < components.size(); ndx++) in FilePath()
56 m_path += components[ndx]; in FilePath()
60 void FilePath::split (std::vector<std::string>& components) const in split()
62 components.clear(); in split()
68 components.push_back(separator + separator); in split()
70 components.push_back(separator); in split()
79 components.push_back(m_path.substr(curCompStart, pos - curCompStart)); in split()
86 components.push_back(m_path.substr(curCompStart, pos - curCompStart)); in split()
89 FilePath FilePath::join (const std::vector<std::string>& components) in join() argument
[all …]
/third_party/skia/src/sksl/ir/
DSkSLSwizzle.cpp100 static String mask_string(const ComponentArray& components) { in mask_string() argument
102 for (int8_t component : components) { in mask_string()
110 ComponentArray components) { in optimize_constructor_swizzle() argument
115 int swizzleSize = components.size(); in optimize_constructor_swizzle()
160 for (int8_t c : components) { in optimize_constructor_swizzle()
183 for (int8_t c : components) { in optimize_constructor_swizzle()
239 ComponentArray components; in Convert() local
242 case '0': components.push_back(SwizzleComponent::ZERO); break; in Convert()
243 case '1': components.push_back(SwizzleComponent::ONE); break; in Convert()
244 case 'x': components.push_back(SwizzleComponent::X); break; in Convert()
[all …]
DSkSLSwizzle.h26 const ComponentArray& components) in Swizzle()
28 &base->type().componentType().toCompound(context, components.size(), 1)) in Swizzle()
30 , fComponents(components) { in Swizzle()
31 SkASSERT(this->components().size() >= 1 && this->components().size() <= 4); in Swizzle()
59 const ComponentArray& components() const { in components() function
69 this->components())); in clone()
74 for (int x : this->components()) { in description()
81 Swizzle(const Type* type, std::unique_ptr<Expression> base, const ComponentArray& components) in Swizzle()
84 , fComponents(components) { in Swizzle()
85 SkASSERT(this->components().size() >= 1 && this->components().size() <= 4); in Swizzle()
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/
Dtype_trait.hpp46 static length_t const components = 0; member
59 components = 1 enumerator
71 components = 2 enumerator
83 components = 3 enumerator
95 components = 4 enumerator
107 components = 2, enumerator
121 components = 2, enumerator
135 components = 2, enumerator
149 components = 3, enumerator
163 components = 3, enumerator
[all …]
/third_party/mindspore/tests/mindspore_test_framework/pipeline/forward/
Dcompare_forward.py18 from ...components.executor.exec_forward import IdentityEC
19 from ...components.expect_result_policy.cartesian_product_on_id_for_expect_result import IdCartesia…
20 from ...components.facade.me_facade import MeFacadeFC
21 from ...components.function.init_params_with_rand_and_run_block import RunBlockWithRandParamBC
22 from ...components.function.run_block import RunBlockBC
23 from ...components.function_inputs_policy.cartesian_product_on_group_for_function_inputs import \
25 from ...components.function_inputs_policy.cartesian_product_on_id_for_function_inputs import IdCart…
26 from ...components.inputs.generate_inputs_from_shape import GenerateFromShapeDC
27 from ...components.inputs.load_inputs_from_npy import LoadFromNpyDC
28 from ...components.verifier.compare_forward import CompareWithVC
[all …]
Dverify_shapetype.py18 from ...components.executor.exec_forward import IdentityEC
19 from ...components.expect_result_policy.cartesian_product_on_group_for_expect_result \
21 from ...components.function.get_function_from_config import IdentityBC
22 from ...components.function_inputs_policy.cartesian_product_on_group_for_function_inputs \
24 from ...components.inputs.get_inputs_from_config import IdentityDC
25 from ...components.verifier.verify_shapetype import ShapeTypeVC
/third_party/libwebsockets/contrib/
Dcross-esp32.cmake38 -I${IDF_PATH}/components/newlib/platform_include \
39 -I${IDF_PATH}/components/mdns/include \
40 -I${IDF_PATH}/components/heap/include \
41 -I${IDF_PATH}/components/driver/include \
42 -I${IDF_PATH}/components/spi_flash/include \
43 -I${IDF_PATH}/components/nvs_flash/include \
44 -I${IDF_PATH}/components/tcpip_adapter/include \
45 -I${IDF_PATH}/components/lwip/include/lwip/posix \
46 -I${IDF_PATH}/components/lwip/include/lwip \
47 -I${IDF_PATH}/components/lwip/include/lwip/port \
[all …]
/third_party/typescript/tests/baselines/reference/
DsymbolLinkDeclarationEmitModuleNamesImportRef.types3 …: import("tests/cases/compiler/Folder/node_modules/styled-components/typings/styled-components").I…
6 …> import("tests/cases/compiler/Folder/node_modules/styled-components/typings/styled-components").I…
9 …: import("tests/cases/compiler/Folder/node_modules/styled-components/typings/styled-components").I…
13 export declare const styles: import("styled-components").InterpolationValue[];
14 …: import("tests/cases/compiler/Folder/node_modules/styled-components/typings/styled-components").I…
16 === tests/cases/compiler/Folder/node_modules/styled-components/typings/styled-components.d.ts ===
/third_party/node/deps/npm/node_modules/sshpk/lib/
Didentity.js39 assert.arrayOfObject(opts.components, 'options.components');
40 this.components = opts.components;
42 this.components.forEach(function (c) {
56 if (this.components.length === 1 &&
64 this.components.length === this.componentLookup.dc.length) {
72 this.components.length ===
115 return (this.components.map(function (c) {
133 this.components.forEach(function (c) {
185 if (other.components.length !== this.components.length)
187 for (var i = 0; i < this.components.length; ++i) {
[all …]
/third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/
Dflutter_app.gni14 # Defines JIT runtime components to be further distributed in one package.
16 # Takes a set of flutter components and puts them into one fuchsia package with
18 # components parameter isn't specified, in which we will create one default
23 # components (required)
24 # [list of scopes] Defines the components in the package. Either main_dart
25 # or components must be defined, but not both.
49 # components must be defined, but not both.
54 # Only compatible when components is not specified (use
55 # components.dart_package_name).
60 if (!defined(invoker.components)) {
[all …]
/third_party/flutter/engine/flutter/shell/platform/fuchsia/dart_runner/
Ddart_app.gni12 # Defines JIT runtime components to be further distributed in one package.
14 # Takes a set of dart components and puts them into one fuchsia package with
16 # components parameter isn't specified, in which we will create one default
21 # components (required)
22 # [list of scopes] Defines the components in the package. Either main_dart
23 # or components must be defined, but not both.
47 # components must be defined, but not both.
52 # Only compatible when components is not specified (use
53 # components.dart_package_name).
58 if (!defined(invoker.components)) {
[all …]
/third_party/cef/patch/patches/
Dviz_osr_2575.patch1 diff --git components/viz/host/host_display_client.cc components/viz/host/host_display_client.cc
3 --- components/viz/host/host_display_client.cc
4 +++ components/viz/host/host_display_client.cc
31 diff --git components/viz/host/host_display_client.h components/viz/host/host_display_client.h
33 --- components/viz/host/host_display_client.h
34 +++ components/viz/host/host_display_client.h
56 diff --git components/viz/host/layered_window_updater_impl.cc components/viz/host/layered_window_up…
58 --- components/viz/host/layered_window_updater_impl.cc
59 +++ components/viz/host/layered_window_updater_impl.cc
69 diff --git components/viz/host/layered_window_updater_impl.h components/viz/host/layered_window_upd…
[all …]
/third_party/mesa3d/src/compiler/glsl/tests/
Dcopy_constant_to_storage_tests.cpp77 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components(); in int_test()
79 val->type->components(), in int_test()
85 val->type->components(), in int_test()
97 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components(); in uint_test()
99 val->type->components(), in uint_test()
105 val->type->components(), in uint_test()
117 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components(); in float_test()
119 val->type->components(), in float_test()
125 val->type->components(), in float_test()
137 const unsigned red_zone_size = ARRAY_SIZE(storage) - val->type->components(); in bool_test()
[all …]
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/include/
DSceneStore.h232 list<T> components;
241 for (typename list<T>::iterator it = components.begin(); it != components.end(); ++it) in toStringMapTree()
366 complexWrapper->components.push_back(&value); in addToComplexWrapper()
388 map<string, WrapperHelper*> components;\
411 if(components.find(type) != components.end())\
413 ComplexWrapper<T*>* obj = static_cast<ComplexWrapper<T*>* >(components[type]);\
415 vector<T*>* temp = new vector<T*>(obj->components.begin(), obj->components.end());\
417 *count = obj->components.size();\
426 if(components.find(type) != components.end())\
428 ComplexWrapper<T*>* obj = static_cast<ComplexWrapper<T*>* >(components[type]);\
[all …]
/third_party/typescript/src/harness/
DvpathUtil.ts64 …function validateComponents(components: string[], flags: ValidationFlags, hasTrailingSeparator: bo…
65 const hasRoot = !!components[0];
66 const hasDirname = components.length > 2;
67 const hasBasename = components.length > 1;
68 const hasExtname = hasBasename && extRegExp.test(components[components.length - 1]);
95 if (invalidRootComponentRegExp.test(components[0])) return false;
96 for (let i = 1; i < components.length; i++) {
97 if (invalidComponentRegExp.test(components[i])) return false;
104 const components = parse(path); constant
106 if (!validateComponents(components, flags, trailing)) throw vfs.createIOError("ENOENT");
[all …]
/third_party/mesa3d/src/gallium/frontends/va/
Dpicture_mjpeg.c42 context->desc.mjpeg.picture_parameter.components[i].component_id = in vlVaHandlePictureParameterBufferMJPEG()
43 mjpeg->components[i].component_id; in vlVaHandlePictureParameterBufferMJPEG()
44 context->desc.mjpeg.picture_parameter.components[i].h_sampling_factor = in vlVaHandlePictureParameterBufferMJPEG()
45 mjpeg->components[i].h_sampling_factor; in vlVaHandlePictureParameterBufferMJPEG()
46 context->desc.mjpeg.picture_parameter.components[i].v_sampling_factor = in vlVaHandlePictureParameterBufferMJPEG()
47 mjpeg->components[i].v_sampling_factor; in vlVaHandlePictureParameterBufferMJPEG()
48 context->desc.mjpeg.picture_parameter.components[i].quantiser_table_selector = in vlVaHandlePictureParameterBufferMJPEG()
49 mjpeg->components[i].quantiser_table_selector; in vlVaHandlePictureParameterBufferMJPEG()
51 sf = mjpeg->components[i].h_sampling_factor << 4 | mjpeg->components[i].v_sampling_factor; in vlVaHandlePictureParameterBufferMJPEG()
105 context->desc.mjpeg.slice_parameter.components[i].component_selector = in vlVaHandleSliceParameterBufferMJPEG()
[all …]
/third_party/flutter/engine/flutter/fml/
Dfile.cc12 const std::vector<std::string>& components, in CreateDirectory() argument
15 FML_DCHECK(index <= components.size()); in CreateDirectory()
17 const char* file_path = components[index].c_str(); in CreateDirectory()
25 if (index == components.size() - 1) { in CreateDirectory()
29 return CreateDirectory(directory, components, permission, index + 1); in CreateDirectory()
33 const std::vector<std::string>& components, in CreateDirectory() argument
39 if (components.size() == 0) { in CreateDirectory()
43 return CreateDirectory(base_directory, components, permission, 0); in CreateDirectory()
/third_party/libwebsockets/lib/
DCMakeLists.txt41 include_directories($ENV{IDF_PATH}/components/freertos/include
42 $ENV{IDF_PATH}/components/esp_hw_support/include/soc/
43 $ENV{IDF_PATH}/components/esp_common/include
44 $ENV{IDF_PATH}/components/esp_timer/include
45 $ENV{IDF_PATH}/components/soc/include
46 $ENV{IDF_PATH}/components/soc/src/esp32/include
47 $ENV{IDF_PATH}/components/lwip/port/esp32/include
48 $ENV{IDF_PATH}/components/lwip/lwip/src/include
49 $ENV{IDF_PATH}/components/lwip/port/esp32/include
51 $ENV{IDF_PATH}/components/esp_rom/include
[all …]
/third_party/boost/libs/function_types/test/decomposition/
Dcomponents.cpp29 mpl::equal< ft::components<func>::types, mpl::vector<C> >
33 mpl::equal< ft::components<func_ptr>::types, mpl::vector<C,int> >
37 mpl::equal< ft::components<func_ref>::types, mpl::vector<C,int,int> >
41 mpl::equal< ft::components<mem_func_ptr>::types, mpl::vector<C,C &> >
45 mpl::equal< ft::components<c_mem_func_ptr>::types, mpl::vector<C,C const &,int> >
49 mpl::equal< ft::components<v_mem_func_ptr>::types, mpl::vector<C,C volatile &,int,int> >
53 …mpl::equal< ft::components<cv_mem_func_ptr>::types, mpl::vector<C,C const volatile &,int,int,int> >
57 mpl::equal< ft::components<mem_ptr>::types, mpl::vector<int &,C&> >
/third_party/spirv-tools/source/opt/
Dvector_dce.cpp72 MarkExtractUseAsLive(current_inst, current_item.components, in FindLiveComponents()
87 MarkUsesAsLive(current_inst, current_item.components, live_components, in FindLiveComponents()
111 new_item.components = live_elements; in MarkExtractUseAsLive()
113 new_item.components.Set(current_inst->GetSingleWordInOperand(1)); in MarkExtractUseAsLive()
136 new_item.components = current_item.components; in MarkInsertUsesAsLive()
137 new_item.components.Clear(insert_position); in MarkInsertUsesAsLive()
142 if (current_item.components.Get(insert_position)) { in MarkInsertUsesAsLive()
149 new_item_for_obj.components.Set(0); in MarkInsertUsesAsLive()
161 new_item.components = current_item.components; in MarkInsertUsesAsLive()
187 if (current_item.components.Get(in_op - 2)) { in MarkVectorShuffleUsesAsLive()
[all …]
/third_party/python/Lib/
Dnturl2path.py27 components = url.split('/')
29 return urllib.parse.unquote('\\'.join(components))
35 components = comp[1].split('/')
37 for comp in components:
68 components = p.split('\\')
69 return urllib.parse.quote('/'.join(components))
76 components = comp[1].split('\\')
78 for comp in components:

12345678910>>...104