Searched defs:elements (Results 151 - 175 of 607) sorted by relevance

1234567891011>>

/external/mesa3d/src/glsl/
H A Dlink_uniform_initializers.cpp53 const unsigned int elements)
55 for (unsigned int i = 0; i < elements; i++) {
123 const unsigned int elements = val->array_elements[0]->type->components(); local
131 elements);
133 idx += elements;
50 copy_constant_to_storage(union gl_constant_value *storage, const ir_constant *val, const enum glsl_base_type base_type, const unsigned int elements) argument
/external/mesa3d/src/glsl/tests/
H A Dset_uniform_initializer_tests.cpp96 * \param type Type for the elements of the actual storage slot
105 const unsigned elements = MAX2(1, array_size); local
106 const unsigned data_components = elements * type->components();
322 /* The constant value generated may have more array elements than the
325 * elements are not used. In this case, the type of the uniform will be
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DBooleanArrayListTest.java223 // Force a resize by getting up to 11 elements.
447 private static BooleanArrayList newImmutableBooleanArrayList(boolean... elements) { argument
449 for (boolean element : elements) {
H A DDoubleArrayListTest.java223 // Force a resize by getting up to 11 elements.
451 private static DoubleArrayList newImmutableDoubleArrayList(double... elements) { argument
453 for (double element : elements) {
H A DFloatArrayListTest.java223 // Force a resize by getting up to 11 elements.
451 private static FloatArrayList newImmutableFloatArrayList(int... elements) { argument
453 for (int element : elements) {
H A DIntArrayListTest.java223 // Force a resize by getting up to 11 elements.
451 private static IntArrayList newImmutableIntArrayList(int... elements) { argument
453 for (int element : elements) {
H A DLongArrayListTest.java223 // Force a resize by getting up to 11 elements.
451 private static LongArrayList newImmutableLongArrayList(long... elements) { argument
453 for (long element : elements) {
/external/skia/src/gpu/
H A DGrReducedClip.h19 * This class takes a clip stack and produces a reduced set of elements that are equivalent to
27 * If hasIBounds() is true, this is the bounding box within which the clip elements are valid.
37 * Indicates whether ibounds() are defined. They will always be defined if the elements() are
43 * If nonempty, this is a set of "exclusive" windows within which the clip elements are NOT
51 * Populated with a minimal list of elements required to fully implement the clip.
53 const ElementList& elements() const { return fElements; } function in class:GrReducedClip
56 * If elements() are nonempty, uniquely identifies the list of elements within ibounds().
62 * Indicates whether antialiasing is required to process any of the clip elements.
/external/v8/src/builtins/
H A Dbuiltins-internal.cc64 // Load the {object}s elements.
110 Node* elements = assembler->LoadElements(object); local
111 elements = assembler->TryGrowElementsCapacity(
112 object, elements, FAST_DOUBLE_ELEMENTS, key, &runtime);
113 assembler->Return(elements);
130 Node* elements = assembler->LoadElements(object); local
131 elements = assembler->TryGrowElementsCapacity(object, elements, FAST_ELEMENTS,
133 assembler->Return(elements);
/external/ImageMagick/MagickCore/
H A Dlinked-list.c37 % storing and retrieving large numbers of data elements. It is loosely based
73 elements;
121 if (list_info->elements == list_info->capacity)
131 if (list_info->elements == 0)
136 list_info->elements++;
153 % ClearLinkedList() clears all the elements from the linked-list.
192 list_info->elements=0;
279 if (list_info->elements == 0)
358 return(list_info->elements);
401 if (index >= list_info->elements)
71 elements; member in struct:_LinkedListInfo
[all...]
/external/curl/src/
H A Dtool_urlglob.h38 char **elements; member in struct:__anon3660::__anon3661::__anon3662
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DComponentValidator.java64 private final Elements elements; field in class:ComponentValidator
71 private ComponentValidator(Elements elements, argument
75 this.elements = elements;
83 private ComponentValidator(Elements elements, argument
88 this.elements = elements;
96 static ComponentValidator createForComponent(Elements elements, argument
101 return new ComponentValidator(elements,
108 static ComponentValidator createForSubcomponent(Elements elements, argument
[all...]
H A DInjectBindingRegistry.java59 private final Elements elements; field in class:InjectBindingRegistry
113 && elements.getTypeElement(factoryName.canonicalName()) == null
138 InjectBindingRegistry(Elements elements, argument
143 this.elements = elements;
H A DProvisionBinding.java67 private final Elements elements; field in class:ProvisionBinding.Factory
72 Factory(Elements elements, Types types, Key.Factory keyFactory, argument
74 this.elements = elements;
145 if (!types.isSameType(elements.getTypeElement(Object.class.getCanonicalName()).asType(),
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
H A DDependencyRequestMapperTest.java51 private Elements elements; field in class:DependencyRequestMapperTest
58 this.elements = compilationRule.getElements();
59 this.keyFactory = new Key.Factory(types, elements);
60 this.dependencyRequestFactory = new DependencyRequest.Factory(elements, keyFactory);
65 elements.getTypeElement(ProvidesMethodModule.class.getCanonicalName());
73 elements.getTypeElement(ProducesMethodModule.class.getCanonicalName());
H A DKeyTest.java57 private Elements elements; field in class:KeyTest
63 this.elements = compilationRule.getElements();
64 this.keyFactory = new Key.Factory(types, elements);
85 TypeMirror stringType = elements.getTypeElement(String.class.getCanonicalName()).asType();
87 elements.getTypeElement(ProvidesMethodModule.class.getCanonicalName());
105 TypeMirror stringType = elements.getTypeElement(String.class.getCanonicalName()).asType();
107 elements.getTypeElement(TestQualifier.class.getCanonicalName());
109 elements.getTypeElement(QualifiedProvidesMethodModule.class.getCanonicalName());
121 elements.getTypeElement(QualifiedProvidesMethodModule.class.getCanonicalName());
127 TypeMirror type = elements
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DVersionTrackerTask.java35 private Hashtable elements; field in class:VersionTrackerTask
66 elements = new Hashtable();
136 elements.put(element,element+"_"+version);
146 Enumeration keys = elements.keys();
150 writer.println(key.toString()+"="+elements.get(key).toString());
/external/guava/guava/src/com/google/common/collect/
H A DConcurrentHashMultiset.java47 * {@code Multiset} operations (exceptions where noted). Null elements are not supported.
91 * Creates a new {@code ConcurrentHashMultiset} containing the specified elements, using
94 * <p>This implementation is highly efficient when {@code elements} is itself a {@link Multiset}.
96 * @param elements the elements that the multiset should contain
98 public static <E> ConcurrentHashMultiset<E> create(Iterable<? extends E> elements) { argument
100 Iterables.addAll(multiset, elements);
131 * Creates an instance using {@code countMap} to store elements and their counts.
136 * @param countMap backing map for storing the elements in the multiset and
559 * @serialData the ConcurrentMap of elements an
[all...]
H A DConstraints.java42 * constraint. Any operations that add new elements to the collection will
44 * existing elements satisfy the constraint.
49 * @param constraint the constraint that validates added elements
74 @Override public boolean addAll(Collection<? extends E> elements) { argument
75 return delegate.addAll(checkElements(elements, constraint));
81 * constraint. Any operations that add new elements to the set will call the
83 * elements satisfy the constraint.
88 * @param constraint the constraint that validates added elements
112 @Override public boolean addAll(Collection<? extends E> elements) { argument
113 return delegate.addAll(checkElements(elements, constrain
161 addAll(Collection<? extends E> elements) argument
208 addAll(Collection<? extends E> elements) argument
211 addAll(int index, Collection<? extends E> elements) argument
296 checkElements( Collection<E> elements, Constraint<? super E> constraint) argument
[all...]
H A DFilteredKeyMultimap.java161 public boolean addAll(int index, Collection<? extends V> elements) { argument
162 checkNotNull(elements);
H A DForwardingList.java70 public boolean addAll(int index, Collection<? extends E> elements) { argument
71 return delegate().addAll(index, elements);
144 int index, Iterable<? extends E> elements) {
145 return Lists.addAllImpl(this, index, elements);
143 standardAddAll( int index, Iterable<? extends E> elements) argument
H A DImmutableCollection.java33 * An immutable collection. Does not permit null elements.
36 * #asList()} method, which returns a list view of the collection's elements.
53 * Returns an unmodifiable iterator across the elements in this collection.
220 throw new AssertionError("cannot store more than MAX_VALUE elements");
250 * Adds each element of {@code elements} to the {@code ImmutableCollection}
256 * @param elements the elements to add
258 * @throws NullPointerException if {@code elements} is null or contains a
261 public Builder<E> add(E... elements) { argument
262 for (E element : elements) {
280 addAll(Iterable<? extends E> elements) argument
299 addAll(Iterator<? extends E> elements) argument
346 add(E... elements) argument
355 addAll(Iterable<? extends E> elements) argument
[all...]
H A DImmutableSet.java39 * iteration order. Does not permit null elements.
81 // Casting to any type is safe because the set will never hold any elements.
98 * Returns an immutable set containing the given elements, in order. Repeated
109 * Returns an immutable set containing the given elements, in order. Repeated
120 * Returns an immutable set containing the given elements, in order. Repeated
131 * Returns an immutable set containing the given elements, in order. Repeated
142 * Returns an immutable set containing the given elements, in order. Repeated
152 Object[] elements = new Object[paramCount + others.length];
153 elements[0] = e1;
154 elements[
178 construct(int n, Object... elements) argument
271 copyOf(E[] elements) argument
299 copyOf(Iterable<? extends E> elements) argument
312 copyOf(Iterator<? extends E> elements) argument
359 copyOf(Collection<? extends E> elements) argument
418 final Object[] elements; field in class:ImmutableSet.SerializedForm
419 SerializedForm(Object[] elements) argument
493 add(E... elements) argument
507 addAll(Iterable<? extends E> elements) argument
521 addAll(Iterator<? extends E> elements) argument
[all...]
H A DMultiset.java31 * may have duplicate elements. A multiset is also sometimes called a
51 * #elementSet} contains the distinct elements of the multiset "with duplicates
60 * given initial elements. This is simply a refinement of {@code Collection}'s
126 * implementation does not permit null elements. Note that if {@code
156 * implementation does not permit null elements. Note that if {@code
177 * implementation does not permit null elements. Note that if {@code
186 * Returns the set of distinct elements contained in this multiset. The
188 * either is immediately reflected in the other. The order of the elements in
197 * elements in the multiset: {@code elementSet().size()}.
199 * @return a view of the set of distinct elements i
373 containsAll(Collection<?> elements) argument
[all...]
H A DObjectArrays.java67 * @param first the first array of elements to concatenate
68 * @param second the second array of elements to concatenate
83 * @param array the array of elements to append
86 * elements of {@code array} occupying the remaining elements.
98 * @param array the array of elements to prepend
119 * Returns an array containing all of the elements in the specified
126 * the array has more elements than the collection), the element in the array
129 * the caller knows that the collection does not contain any null elements.
131 * <p>This method returns the elements i
198 copyAsObjectArray(Object[] elements, int offset, int length) argument
208 fillArray(Iterable<?> elements, Object[] array) argument
[all...]

Completed in 369 milliseconds

1234567891011>>