Home
last modified time | relevance | path

Searched full:components (Results 1 – 25 of 5900) sorted by relevance

12345678910>>...236

/external/pigweed/pw_build_mcuxpresso/py/tests/
Dcomponents_test.py14 """Components Tests."""
20 from pw_build_mcuxpresso import components
28 <components>
31 </components>
36 (component, base_path) = components.get_component(root, 'test')
45 <components>
48 </components>
53 (component, base_path) = components.get_component(root, 'test')
62 <components>
65 </components>
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/gtc/
Dtype_aligned.hpp71 /// 2 components vector of high single-precision floating-point numbers.
75 /// 2 components vector of medium single-precision floating-point numbers.
79 /// 2 components vector of low single-precision floating-point numbers.
83 /// 2 components vector of high double-precision floating-point numbers.
87 /// 2 components vector of medium double-precision floating-point numbers.
91 /// 2 components vector of low double-precision floating-point numbers.
95 /// 2 components vector of high precision signed integer numbers.
99 /// 2 components vector of medium precision signed integer numbers.
103 /// 2 components vector of low precision signed integer numbers.
107 /// 2 components vector of high precision unsigned integer numbers.
[all …]
/external/python/cpython2/Lib/
Dmacurl2path.py24 components = pathname.split('/')
27 while i < len(components):
28 if components[i] == '.':
29 del components[i]
30 elif components[i] == '..' and i > 0 and \
31 components[i-1] not in ('', '..'):
32 del components[i-1:i+1]
34 elif components[i] == '' and i > 0 and components[i-1] != '':
35 del components[i]
38 if not components[0]:
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/assets/css/
Dmain.scss30 "common/components/button",
31 "common/components/image",
32 "common/components/card",
33 "common/components/gallery",
34 "common/components/hero",
35 "common/components/menu",
36 "common/components/modal",
37 "common/components/toc",
38 "common/components/item",
39 "common/components/swiper",
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/assets/css/
Dmain.scss30 "common/components/button",
31 "common/components/image",
32 "common/components/card",
33 "common/components/gallery",
34 "common/components/hero",
35 "common/components/menu",
36 "common/components/modal",
37 "common/components/toc",
38 "common/components/item",
39 "common/components/swiper",
[all …]
/external/libchrome/libchrome_tools/uprev/
Dlazytree.py56 def _remove(self, components): argument
57 """Removes components from self tree.
60 components: the path to remove, relative to self. Each element means
65 if len(components) == 1:
66 del self._files[components[0]]
70 dirname, components = components[0], components[1:]
72 subdir._remove(components)
82 components = path.split(b'/')
83 self._remove(components)
85 def _get(self, components): argument
[all …]
/external/python/cpython2/PC/VS7.1/
Dpython.iss89 Name: normal; Description: Select desired components; Flags: iscustom
91 [Components]
99 Name: extensions; Description: Register file associations (.py, .pyw, .pyc, .pyo); Components: main…
103 ; Unknown: By the time Components (and other attrs) are added to these lines, they're
110 Source: *.ico; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
112 Source: python.exe; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
113 Source: pythonw.exe; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
114 Source: w9xpopen.exe; DestDir: {app}; CopyMode: alwaysoverwrite; Components: main
117 Source: DLLs\tcl83.dll; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: tk
118 Source: DLLs\tk83.dll; DestDir: {app}\DLLs; CopyMode: alwaysoverwrite; Components: tk
[all …]
/external/llvm/docs/
DLLVMBuild.rst22 as to how the source code and various components are organized. The
31 Clang, and LLDB) is organized into *components*, which define the
75 *components*. Every component is typically grouped into its own
80 LLVM primarily uses the following types of components:
82 - *Libraries* - Library components define a distinct API which can be
94 Components are described using ``LLVMBuild.txt`` files in the directories
147 Each file may define multiple components. Each component is described by a
149 name is ignored, but each section name must be unique. Typically components
150 are just number in order for files with multiple components
160 Components **may not** define any properties other than those expected
[all …]
/external/fonttools/Tests/mtiLib/data/mti/
Dgsubligature.ttx.GSUB12 <Ligature components="J" glyph="IJ"/>
15 <Ligature components="Jsmall" glyph="IJsmall"/>
18 <Ligature components="f,b" glyph="ffb"/>
19 <Ligature components="f,h" glyph="ffh"/>
20 <Ligature components="f,i" glyph="ffi"/>
21 <Ligature components="f,k" glyph="ffk"/>
22 <Ligature components="f,l" glyph="ffl"/>
23 <Ligature components="f,t" glyph="fft"/>
24 <Ligature components="b" glyph="fb"/>
25 <Ligature components="f" glyph="ff"/>
[all …]
/external/oj-libjdwp/src/share/back/
DArrayReferenceImpl.c73 jboolean *components; in writeBooleanComponents() local
75 components = newComponents(out, length, sizeof(jboolean)); in writeBooleanComponents()
76 if (components != NULL) { in writeBooleanComponents()
78 JNI_FUNC_PTR(env,GetBooleanArrayRegion)(env, array, index, length, components); in writeBooleanComponents()
80 (void)outStream_writeBoolean(out, components[i]); in writeBooleanComponents()
82 deleteComponents(components); in writeBooleanComponents()
90 jbyte *components; in writeByteComponents() local
92 components = newComponents(out, length, sizeof(jbyte)); in writeByteComponents()
93 if (components != NULL) { in writeByteComponents()
95 JNI_FUNC_PTR(env,GetByteArrayRegion)(env, array, index, length, components); in writeByteComponents()
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dcompatibility.hpp64 …typedef tvec2<bool, highp> bool2; //!< \brief boolean type with 2 components. (From GLM_GTX_co…
65 …typedef tvec3<bool, highp> bool3; //!< \brief boolean type with 3 components. (From GLM_GTX_co…
66 …typedef tvec4<bool, highp> bool4; //!< \brief boolean type with 4 components. (From GLM_GTX_co…
69 …typedef tmat2x2<bool, highp> bool2x2; //!< \brief boolean matrix with 2 x 2 components. (From GL…
70 …typedef tmat2x3<bool, highp> bool2x3; //!< \brief boolean matrix with 2 x 3 components. (From GL…
71 …typedef tmat2x4<bool, highp> bool2x4; //!< \brief boolean matrix with 2 x 4 components. (From GL…
72 …typedef tmat3x2<bool, highp> bool3x2; //!< \brief boolean matrix with 3 x 2 components. (From GL…
73 …typedef tmat3x3<bool, highp> bool3x3; //!< \brief boolean matrix with 3 x 3 components. (From GL…
74 …typedef tmat3x4<bool, highp> bool3x4; //!< \brief boolean matrix with 3 x 4 components. (From GL…
75 …typedef tmat4x2<bool, highp> bool4x2; //!< \brief boolean matrix with 4 x 2 components. (From GL…
[all …]
/external/python/cpython2/Lib/plat-riscos/
Drourl2path.py23 components = string.split(url, '/')
24 if not components[0]:
25 if '$' in components:
26 del components[0]
28 components[0] = '$'
31 while i < len(components):
32 if components[i] == '.':
33 del components[i]
34 elif components[i] == '..' and i > 0 and \
35 components[i-1] not in ('', '..'):
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/
Dfwd.hpp305 /// Low precision 8 bit signed integer vector of 2 components type.
309 /// Low precision 8 bit signed integer vector of 3 components type.
313 /// Low precision 8 bit signed integer vector of 4 components type.
322 /// Medium precision 8 bit signed integer vector of 2 components type.
326 /// Medium precision 8 bit signed integer vector of 3 components type.
330 /// Medium precision 8 bit signed integer vector of 4 components type.
339 /// High precision 8 bit signed integer vector of 2 components type.
343 /// High precision 8 bit signed integer vector of 3 components type.
347 /// High precision 8 bit signed integer vector of 4 components type.
366 /// Default precision 8 bit signed integer vector of 2 components type.
[all …]
/external/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 …]
/external/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 …]
/external/fonttools/Tests/feaLib/data/
Dspec5d1.ttx46 <Ligature components="fraction,two" glyph="onehalf"/>
47 <Ligature components="fraction,two.oldstyle" glyph="onehalf"/>
48 <Ligature components="slash,two" glyph="onehalf"/>
49 <Ligature components="slash,two.oldstyle" glyph="onehalf"/>
52 <Ligature components="fraction,two" glyph="onehalf"/>
53 <Ligature components="fraction,two.oldstyle" glyph="onehalf"/>
54 <Ligature components="slash,two" glyph="onehalf"/>
55 <Ligature components="slash,two.oldstyle" glyph="onehalf"/>
65 <Ligature components="fraction,two" glyph="onehalf"/>
66 <Ligature components="fraction,two.oldstyle" glyph="onehalf"/>
[all …]
/external/python/dateutil/dateutil/parser/
Disoparser.py100 Support for fractional components other than seconds is part of the
120 Unspecified components default to their lowest value.
134 components, pos = self._parse_isodate(dt_str)
138 components += self._parse_isotime(dt_str[pos + 1:])
140 raise ValueError('String contains unknown ISO components')
142 if len(components) > 3 and components[3] == 24:
143 components[3] = 0
144 return datetime(*components) + timedelta(days=1)
146 return datetime(*components)
159 components, pos = self._parse_isodate(datestr)
[all …]
/external/webrtc/sdk/
DBUILD.gn293 "objc/components/audio/RTCNativeAudioSessionDelegateAdapter.h",
294 "objc/components/audio/RTCNativeAudioSessionDelegateAdapter.mm",
315 "objc/components/audio/RTCAudioSession+Configuration.mm",
316 "objc/components/audio/RTCAudioSession+Private.h",
317 "objc/components/audio/RTCAudioSession.h",
318 "objc/components/audio/RTCAudioSession.mm",
319 "objc/components/audio/RTCAudioSessionConfiguration.h",
320 "objc/components/audio/RTCAudioSessionConfiguration.m",
380 "objc/components/video_frame_buffer/RTCCVPixelBuffer.h",
381 "objc/components/video_frame_buffer/RTCCVPixelBuffer.mm",
[all …]
/external/skia/src/sksl/ir/
DSkSLSwizzle.cpp101 static std::string mask_string(const ComponentArray& components) { in mask_string() argument
103 for (int8_t component : components) { in mask_string()
111 ComponentArray components) { in optimize_constructor_swizzle() argument
116 int swizzleSize = components.size(); in optimize_constructor_swizzle()
161 for (int8_t c : components) { in optimize_constructor_swizzle()
184 for (int8_t c : components) { in optimize_constructor_swizzle()
203 // Since we know this argument uses components, it should already have at least one in optimize_constructor_swizzle()
238 ComponentArray components; in Convert() local
241 case '0': components.push_back(SwizzleComponent::ZERO); break; in Convert()
242 case '1': components.push_back(SwizzleComponent::ONE); break; in Convert()
[all …]
/external/dagger2/javatests/dagger/hilt/android/processor/internal/aggregateddeps/
DTestInstallInTest.java51 + "components,replaces") in testMissingValues()
65 "import dagger.hilt.components.SingletonComponent;", in testEmptyComponentValues()
79 "@TestInstallIn(components = {}, replaces = InstallInModule.class)", in testEmptyComponentValues()
87 "@TestInstallIn, 'components' class is invalid or missing: " in testEmptyComponentValues()
89 + "components={}, replaces={test.InstallInModule.class})"); in testEmptyComponentValues()
101 "import dagger.hilt.components.SingletonComponent;", in testEmptyReplacesValues()
104 "@TestInstallIn(components = SingletonComponent.class, replaces = {})", in testEmptyReplacesValues()
114 + "components={dagger.hilt.components.SingletonComponent.class}, replaces={})"); in testEmptyReplacesValues()
126 "import dagger.hilt.components.SingletonComponent;", in testMissingModuleAnnotation()
137 "import dagger.hilt.components.SingletonComponent;", in testMissingModuleAnnotation()
[all …]
/external/deqp/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 …]
/external/libxkbcommon/src/
Dstate.c97 * allows us to report which components of the state have changed.
99 struct state_components components; member
136 xkb_mod_mask_t active_mods = state->components.mods & type->mods.mask; in get_entry_for_key_state()
211 return XkbWrapGroupIntoRange(state->components.group, key->num_groups, in xkb_state_key_get_layout()
276 filter->priv = state->components.base_group; in xkb_filter_group_set_new()
278 state->components.base_group = filter->action.group.group; in xkb_filter_group_set_new()
280 state->components.base_group += filter->action.group.group; in xkb_filter_group_set_new()
302 state->components.base_group = filter->priv; in xkb_filter_group_set_func()
305 state->components.locked_group = 0; in xkb_filter_group_set_func()
315 state->components.locked_group = filter->action.group.group; in xkb_filter_group_lock_new()
[all …]
/external/guava/android/guava/src/com/google/common/base/
DPredicates.java89 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
90 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
92 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
96 Iterable<? extends Predicate<? super T>> components) { in and() argument
97 return new AndPredicate<T>(defensiveCopy(components)); in and()
101 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
102 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
104 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
108 public static <T extends @Nullable Object> Predicate<T> and(Predicate<? super T>... components) { in and() argument
109 return new AndPredicate<T>(defensiveCopy(components)); in and()
[all …]
/external/guava/guava/src/com/google/common/base/
DPredicates.java89 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
90 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
92 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
96 Iterable<? extends Predicate<? super T>> components) { in and() argument
97 return new AndPredicate<T>(defensiveCopy(components)); in and()
101 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
102 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
104 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
108 public static <T extends @Nullable Object> Predicate<T> and(Predicate<? super T>... components) { in and() argument
109 return new AndPredicate<T>(defensiveCopy(components)); in and()
[all …]
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dfrom_tensors_test.py54 components = (np.array(1), np.array([1, 2, 3]), np.array(37.0))
56 dataset = dataset_ops.Dataset.from_tensors(components)
59 [c.shape for c in components],
62 self.assertDatasetProduces(dataset, expected_output=[components])
74 components = (
78 dataset = dataset_ops.Dataset.from_tensors(components)
86 components = (sparse_tensor.SparseTensorValue(
95 dataset = dataset_ops.Dataset.from_tensors(components)
98 [tensor_shape.TensorShape(c.dense_shape) for c in components],
100 self.assertDatasetProduces(dataset, expected_output=[components])
[all …]

12345678910>>...236