Home
last modified time | relevance | path

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

12345678910>>...232

/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/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/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/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/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/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 …]
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 …]
/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/libwebsockets/contrib/
Dcross-esp32.cmake36 -I${IDF_PATH}/components/newlib/platform_include \
37 -I${IDF_PATH}/components/mdns/include \
38 -I${IDF_PATH}/components/heap/include \
39 -I${IDF_PATH}/components/driver/include \
40 -I${IDF_PATH}/components/spi_flash/include \
41 -I${IDF_PATH}/components/nvs_flash/include \
42 -I${IDF_PATH}/components/tcpip_adapter/include \
43 -I${IDF_PATH}/components/lwip/include/lwip/posix \
44 -I${IDF_PATH}/components/lwip/include/lwip \
45 -I${IDF_PATH}/components/lwip/include/lwip/port \
[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/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/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/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/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.java87 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
88 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
90 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
93 public static <T> Predicate<T> and(Iterable<? extends Predicate<? super T>> components) { in and() argument
94 return new AndPredicate<T>(defensiveCopy(components)); in and()
98 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
99 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
101 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
105 public static <T> Predicate<T> and(Predicate<? super T>... components) { in and() argument
106 return new AndPredicate<T>(defensiveCopy(components)); in and()
[all …]
/external/guava/guava/src/com/google/common/base/
DPredicates.java87 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
88 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
90 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
93 public static <T> Predicate<T> and(Iterable<? extends Predicate<? super T>> components) { in and() argument
94 return new AndPredicate<T>(defensiveCopy(components)); in and()
98 * Returns a predicate that evaluates to {@code true} if each of its components evaluates to
99 * {@code true}. The components are evaluated in order, and evaluation will be "short-circuited"
101 * changes to it won't alter the behavior of this predicate. If {@code components} is empty, the
105 public static <T> Predicate<T> and(Predicate<? super T>... components) { in and() argument
106 return new AndPredicate<T>(defensiveCopy(components)); in and()
[all …]
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dfrom_tensors_test.py46 components = (np.array(1), np.array([1, 2, 3]), np.array(37.0))
48 dataset = dataset_ops.Dataset.from_tensors(components)
51 [c.shape for c in components],
54 self.assertDatasetProduces(dataset, expected_output=[components])
66 components = (
70 dataset = dataset_ops.Dataset.from_tensors(components)
78 components = (sparse_tensor.SparseTensorValue(
87 dataset = dataset_ops.Dataset.from_tensors(components)
90 [tensor_shape.TensorShape(c.dense_shape) for c in components],
92 self.assertDatasetProduces(dataset, expected_output=[components])
[all …]
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dtype_vec.hpp128 /// 2 components vector of high single-precision floating-point numbers.
135 /// 2 components vector of medium single-precision floating-point numbers.
142 /// 2 components vector of low single-precision floating-point numbers.
149 /// 2 components vector of high double-precision floating-point numbers.
156 /// 2 components vector of medium double-precision floating-point numbers.
163 /// 2 components vector of low double-precision floating-point numbers.
170 /// 2 components vector of high precision signed integer numbers.
177 /// 2 components vector of medium precision signed integer numbers.
184 /// 2 components vector of low precision signed integer numbers.
191 /// 2 components vector of high precision unsigned integer numbers.
[all …]
/external/dagger2/java/dagger/model/
DComponentPath.java28 /** A path containing a component and all of its ancestor components. */
31 /** Returns a new {@link ComponentPath} from {@code components}. */
32 public static ComponentPath create(Iterable<TypeElement> components) { in create() argument
33 return new AutoValue_ComponentPath(ImmutableList.copyOf(components)); in create()
40 public abstract ImmutableList<TypeElement> components(); in components() method in ComponentPath
47 return components().get(0); in rootComponent()
53 return getLast(components()); in currentComponent()
63 return components().reverse().get(1); in parentComponent()
74 return create(components().subList(0, components().size() - 1)); in parent()
79 return create(ImmutableList.<TypeElement>builder().addAll(components()).add(child).build()); in childPath()
[all …]
/external/dagger2/java/dagger/hilt/processor/internal/
DComponents.java31 /** Helper methods for defining components and the component hierarchy. */
32 public final class Components { class
48 /** Returns the {@link dagger.hilt.InstallIn} components for a given element. */
50 ImmutableSet<ClassName> components; in getComponents() local
53 components = getHiltInstallInComponents(elements, element); in getComponents()
79 return components; in getComponents()
82 public static AnnotationSpec getInstallInAnnotationSpec(ImmutableSet<ClassName> components) { in getInstallInAnnotationSpec() argument
83 Preconditions.checkArgument(!components.isEmpty()); in getInstallInAnnotationSpec()
85 components.forEach(component -> builder.addMember("value", "$T.class", component)); in getInstallInAnnotationSpec()
95 ImmutableSet<TypeElement> components = in getHiltInstallInComponents() local
[all …]
/external/skia/src/sksl/ir/
DSkSLSwizzle.h27 const ComponentArray& components) in Swizzle()
29 &base->type().componentType().toCompound(context, components.size(), 1)) in Swizzle()
31 , fComponents(components) { in Swizzle()
32 SkASSERT(this->components().size() >= 1 && this->components().size() <= 4); in Swizzle()
56 const ComponentArray& components() const { in components() function
66 this->components())); in clone()
71 for (int x : this->components()) { in description()
78 Swizzle(const Type* type, std::unique_ptr<Expression> base, const ComponentArray& components) in Swizzle()
81 , fComponents(components) { in Swizzle()
82 SkASSERT(this->components().size() >= 1 && this->components().size() <= 4); in Swizzle()

12345678910>>...232