Searched refs:elements (Results 201 - 225 of 999) sorted by relevance

1234567891011>>

/external/chromium_org/ui/gfx/animation/
H A Danimation_container.cc59 // We notify the observer after updating all the elements. If all the elements
62 // ourself here to make sure we're still valid after running all the elements.
69 // Make a copy of the elements to iterate over so that if any elements are
71 Elements elements = elements_; local
73 for (Elements::const_iterator i = elements.begin();
74 i != elements.end(); ++i) {
/external/guava/guava/src/com/google/common/collect/
H A DEnumMultiset.java42 * Creates a new {@code EnumMultiset} containing the specified elements.
44 * <p>This implementation is highly efficient when {@code elements} is itself a {@link
47 * @param elements the elements that the multiset should contain
48 * @throws IllegalArgumentException if {@code elements} is empty
50 public static <E extends Enum<E>> EnumMultiset<E> create(Iterable<E> elements) { argument
51 Iterator<E> iterator = elements.iterator();
54 Iterables.addAll(multiset, elements);
75 * elements, the first element, its count, the second element, its
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
/external/hamcrest/library/src/org/hamcrest/collection/
H A DIsCollectionContaining.java56 public static <T> Matcher<Iterable<T>> hasItems(T... elements) { argument
58 = new ArrayList<Matcher<? extends Iterable<T>>>(elements.length);
59 for (T element : elements) {
/external/junit/src/org/junit/internal/matchers/
H A DIsCollectionContaining.java58 public static <T> Matcher<Iterable<T>> hasItems(T... elements) { argument
60 = new ArrayList<Matcher<? extends Iterable<T>>>(elements.length);
61 for (T element : elements) {
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRRewriteRuleElementStream.h38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset
40 Elements elements; variable
49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements; variable
60 elements:(NSArray *)theElements;
64 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRRewriteRuleElementStream.h38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset
40 Elements elements; variable
49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements; variable
60 elements:(NSArray *)theElements;
64 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRRewriteRuleElementStream.h38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset
40 Elements elements; variable
49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements; variable
60 elements:(NSArray *)theElements;
64 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java47 /** Add all elements from incoming set to this set. Can limit
57 IntSet complement(IntSet elements); argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1EncodableVector.java21 for (Enumeration en = other.v.elements(); en.hasMoreElements();)
/external/ceres-solver/include/ceres/
H A Dordered_groups.h49 // contain an arbitrary number of elements.
108 // Bulk remove elements. The return value indicates the number of
109 // elements successfully removed.
110 int Remove(const vector<T>& elements) { argument
111 if (NumElements() == 0 || elements.size() == 0) {
116 for (int i = 0; i < elements.size(); ++i) {
117 num_removed += Remove(elements[i]);
170 // Number of groups with one or more elements.
175 // The first group with one or more elements. Calling this when
176 // there are no groups with non-zero elements wil
[all...]
/external/chromium_org/mojo/public/cpp/system/
H A Ddata_pipe.h68 const void* elements,
71 return MojoWriteData(data_pipe_producer.value(), elements, num_bytes, flags);
88 void* elements,
91 return MojoReadData(data_pipe_consumer.value(), elements, num_bytes, flags);
67 WriteDataRaw(DataPipeProducerHandle data_pipe_producer, const void* elements, uint32_t* num_bytes, MojoWriteDataFlags flags) argument
87 ReadDataRaw(DataPipeConsumerHandle data_pipe_consumer, void* elements, uint32_t* num_bytes, MojoReadDataFlags flags) argument
/external/chromium_org/mojo/system/
H A Ddata_pipe_consumer_dispatcher.cc54 UserPointer<void> elements,
63 DVLOG_IF(2, !elements.IsNull())
64 << "Discard mode: ignoring non-null |elements|";
71 DVLOG_IF(2, !elements.IsNull())
72 << "Query mode: ignoring non-null |elements|";
77 elements, num_bytes, (flags & MOJO_READ_DATA_FLAG_ALL_OR_NONE));
53 ReadDataImplNoLock( UserPointer<void> elements, UserPointer<uint32_t> num_bytes, MojoReadDataFlags flags) argument
/external/chromium_org/third_party/skia/src/gpu/
H A DGrClipMaskManager.h122 const GrReducedClip::ElementList& elements,
125 // Creates an alpha mask of the clip. The mask is a rasterization of elements through the
129 const GrReducedClip::ElementList& elements,
134 const GrReducedClip::ElementList& elements,
148 bool useSWOnlyPath(const GrReducedClip::ElementList& elements);
/external/doclava/res/assets/templates/components/
H A Dapi_filter.cs7 <!-- option elements added by buildApiLevelSelector() -->
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DListEqualsTester.java39 "A List should equal any other List containing the same elements.",
48 "A List should not equal another List containing different elements.",
64 ArrayList<E> elements = new ArrayList<E>(getSampleElements());
65 elements.set(elements.size() / 2, null);
66 collection = getSubjectGenerator().create(elements.toArray());
/external/skia/src/gpu/
H A DGrClipMaskManager.h118 const GrReducedClip::ElementList& elements,
121 // Creates an alpha mask of the clip. The mask is a rasterization of elements through the
125 const GrReducedClip::ElementList& elements,
130 const GrReducedClip::ElementList& elements,
144 bool useSWOnlyPath(const GrReducedClip::ElementList& elements);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DInputLayoutCache.cpp115 programBinary->getActiveAttribute(ilKey.elementCount, 0, NULL, &attributeSize, &ilKey.elements[ilKey.elementCount].glslElementType, NULL);
117 ilKey.elements[ilKey.elementCount].desc.SemanticName = semanticName;
118 ilKey.elements[ilKey.elementCount].desc.SemanticIndex = sortedSemanticIndices[i];
119 ilKey.elements[ilKey.elementCount].desc.Format = vertexFormatInfo.nativeFormat;
120 ilKey.elements[ilKey.elementCount].desc.InputSlot = i;
121 ilKey.elements[ilKey.elementCount].desc.AlignedByteOffset = 0;
122 ilKey.elements[ilKey.elementCount].desc.InputSlotClass = inputClass;
123 ilKey.elements[ilKey.elementCount].desc.InstanceDataStepRate = attributes[i].divisor;
145 descs[j] = ilKey.elements[j].desc;
/external/chromium_org/third_party/skia/bench/
H A Dcheck_bench_regressions.py21 # Indices for getting elements from bench expectation files.
111 elements = expectation.strip().split(',')
112 if not elements[0] or elements[0].startswith('#'):
114 if len(elements) != 5:
117 bench_entry = elements[0] + ',' + elements[1]
122 expectations[bench_entry] = (float(elements[LB_IDX]),
123 float(elements[UB_IDX]),
124 float(elements[EXPECTED_ID
[all...]
/external/skia/bench/
H A Dcheck_bench_regressions.py21 # Indices for getting elements from bench expectation files.
111 elements = expectation.strip().split(',')
112 if not elements[0] or elements[0].startswith('#'):
114 if len(elements) != 5:
117 bench_entry = elements[0] + ',' + elements[1]
122 expectations[bench_entry] = (float(elements[LB_IDX]),
123 float(elements[UB_IDX]),
124 float(elements[EXPECTED_ID
[all...]
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Darray_internal.h148 // Validation information for elements. It is either another specialization of
149 // ArrayValidateParams (if elements are arrays) or NoValidateParams.
153 // that number of elements.
155 // Whether the elements are nullable.
174 ElementType* elements,
179 ElementType* elements,
185 const ElementType* elements,
201 ElementType* elements,
205 ElementType* elements,
210 const ElementType* elements,
173 EncodePointersAndHandles(const ArrayHeader* header, ElementType* elements, std::vector<Handle>* handles) argument
178 DecodePointersAndHandles(const ArrayHeader* header, ElementType* elements, std::vector<Handle>* handles) argument
184 ValidateElements(const ArrayHeader* header, const ElementType* elements, BoundsChecker* bounds_checker) argument
209 ValidateElements(const ArrayHeader* header, const ElementType* elements, BoundsChecker* bounds_checker) argument
239 EncodePointersAndHandles(const ArrayHeader* header, ElementType* elements, std::vector<Handle>* handles) argument
246 DecodePointersAndHandles(const ArrayHeader* header, ElementType* elements, std::vector<Handle>* handles) argument
254 ValidateElements(const ArrayHeader* header, const ElementType* elements, BoundsChecker* bounds_checker) argument
267 EncodePointersAndHandles(const ArrayHeader* header, ElementType* elements, std::vector<Handle>* handles) argument
274 DecodePointersAndHandles(const ArrayHeader* header, ElementType* elements, std::vector<Handle>* handles) argument
282 ValidateElements(const ArrayHeader* header, const ElementType* elements, BoundsChecker* bounds_checker) argument
[all...]
/external/smack/src/org/apache/harmony/javax/security/auth/
H A DSubject.java527 private LinkedList<SST> elements; field in class:Subject.SecureSet
562 elements = new LinkedList<SST>();
566 // all collection elements are verified before adding
578 if (trust || !elements.contains(o)) {
579 elements.add(o);
607 if (!elements.contains(o)) {
608 elements.add(o);
623 return new SecureIterator(elements.iterator()) {
637 return new SecureIterator(elements.iterator());
651 return elements
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dutilities.js273 var elements = this.parseSequence_(sequence);
274 for (var i = 0; i < elements.length; ++i) {
275 if (!Array.isArray(elements[i])) { // Skip over expected value arrays.
277 this.updatedExpectations_(expected, elements[i]);
278 if (Array.isArray(elements[i + 1] && elements[i + 1][0]))
279 expected = this.adjustExpectations_([], elements[i + 1], 0);
281 expected = this.adjustExpectations_(expected, elements, i + 1);
283 if (elements[i].match(/^-?[\d.][\d.=]*$/))
284 this.testNumber_(controller, elements[
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DQueuesTest.java94 int elements = drain(q, buf, 100, Long.MAX_VALUE, TimeUnit.NANOSECONDS, interruptibly);
95 assertEquals(100, elements);
138 // asking to drain zero elements
163 int elements = Queues.drain(q, buf, -1, Long.MAX_VALUE, TimeUnit.NANOSECONDS);
164 assertEquals(elements, 0);
203 int elements =
205 // so when this drains all elements, we know the thread has also been interrupted in between
207 assertEquals(100, elements);
268 final int elements; field in class:QueuesTest.Producer
270 Producer(BlockingQueue<Object> q, int elements) { argument
[all...]
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpOptions.java102 HeaderElement[] elements = header.getElements();
103 for (HeaderElement element : elements) {

Completed in 809 milliseconds

1234567891011>>