/external/chromium_org/content/public/renderer/ |
history_item_serialization.cc | 102 state->http_body.elements.resize(http_body.elementCount()); 106 ToExplodedHttpBodyElement(element, &state->http_body.elements[i]); 150 for (size_t i = 0; i < state.http_body.elements.size(); ++i) 151 AppendHTTPBodyElement(state.http_body.elements[i], &http_body);
|
/external/chromium_org/mojo/system/ |
data_pipe.cc | 33 MojoResult DataPipe::ProducerWriteData(const void* elements, 53 memcpy(buffer, elements, num_elements_to_write * element_size_); 128 MojoResult DataPipe::ConsumerReadData(void* elements, 155 memcpy(elements, buffer, num_elements_to_read * element_size_);
|
dispatcher.cc | 54 MojoResult Dispatcher::WriteData(const void* elements, 61 return WriteDataImplNoLock(elements, num_elements, flags); 82 MojoResult Dispatcher::ReadData(void* elements, 89 return ReadDataImplNoLock(elements, num_elements, flags); 186 MojoResult Dispatcher::WriteDataImplNoLock(const void* /*elements*/, 213 MojoResult Dispatcher::ReadDataImplNoLock(void* /*elements*/,
|
/external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/ |
model.py | 76 def __init__(self, elements): 77 self.elements = elements 175 for value in node.elements:
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
loop.js | 5 // This file performs actions on media elements. 19 throw new Error('Can not play non HTML5 media elements.');
|
seek.js | 5 // This file performs actions on media elements. 14 throw new Error('Can not seek non HTML5 media elements.');
|
/external/chromium_org/win8/metro_driver/ |
toast_notification_handler.cc | 43 mswr::ComPtr<winxml::Dom::IXmlNodeList> elements; local 47 &elements); 51 elements->get_Length(&count); 57 hr = elements->Item(index, node);
|
/external/guava/guava/src/com/google/common/collect/ |
ImmutableSortedMultisetFauxverideShim.java | 143 * Comparable} elements.</b> Proper calls will resolve to the version in {@code 151 public static <E> ImmutableSortedMultiset<E> copyOf(E[] elements) { 165 * The result is that ImmutableSortedMultiset.copyOf() may be called on non-Comparable elements.
|
ImmutableSortedSetFauxverideShim.java | 138 * non-{@code Comparable} elements.</b> Proper calls will resolve to the 145 @Deprecated public static <E> ImmutableSortedSet<E> copyOf(E[] elements) { 162 * non-Comparable elements. We have not discovered a better solution. In
|
Multiset.java | 31 * may have duplicate elements. A multiset is also sometimes called a 34 * <p>Elements of a multiset that are equal to one another (see "Note on 51 * #elementSet} contains the distinct elements of the multiset "with duplicates 60 * given initial elements. This is simply a refinement of {@code Collection}'s 122 * implementation does not permit null elements. Note that if {@code 152 * implementation does not permit null elements. Note that if {@code 173 * implementation does not permit null elements. Note that if {@code 182 * Returns the set of distinct elements contained in this multiset. The 184 * either is immediately reflected in the other. The order of the elements in 193 * elements in the multiset: {@code elementSet().size()} [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractMapTester.java | 60 protected void expectMissingKeys(K... elements) { 61 for (K element : elements) { 67 protected void expectMissingValues(V... elements) { 68 for (V element : elements) {
|
AbstractIteratorTester.java | 153 + actual + "' not found. Remaining elements: " + expected); 161 * elements and a set of features to support (from the enclosing 177 // TODO: track seen elements when order isn't guaranteed 182 * The elements to be returned by future calls to {@code next()}, with the 187 * The elements to be returned by future calls to {@code previous()}, with 313 List<E> elements = new ArrayList<E>(); local 314 Helpers.addAll(elements, previousElements); 315 Helpers.addAll(elements, Helpers.reverse(nextElements)); 316 return elements; 349 * expected elements passed to the constructor in the given order. Warning: i 414 List<E> elements = reference.getElements(); local [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListRemoveAllTester.java | 42 collection = getSubjectGenerator().create(arrayAndDuplicate.elements);
|
ListRemoveTester.java | 40 collection = getSubjectGenerator().create(arrayAndDuplicate.elements);
|
/external/kernel-headers/original/linux/ |
mempool.h | 16 int min_nr; /* nr of elements at *elements */ 17 int curr_nr; /* Current nr of elements at *elements */ 18 void **elements; member in struct:mempool_s
|
/external/libffi/testsuite/libffi.call/ |
struct1.c | 36 ts1_type.elements = ts1_type_elements;
|
struct2.c | 35 ts2_type.elements = ts2_type_elements;
|
struct4.c | 35 ts4_type.elements = ts4_type_elements;
|
struct5.c | 33 ts5_type.elements = ts5_type_elements;
|
struct6.c | 33 ts6_type.elements = ts6_type_elements;
|
struct7.c | 35 ts7_type.elements = ts7_type_elements;
|
struct9.c | 34 ts9_type.elements = ts9_type_elements;
|
/external/mesa3d/src/gallium/tools/trace/ |
model.py | 76 def __init__(self, elements): 77 self.elements = elements 175 for value in node.elements:
|
/libcore/luni/src/main/java/java/io/ |
SequenceInputStream.java | 57 e = inVector.elements(); 62 * Constructs a new SequenceInputStream using the elements returned from 69 * if any of the elements in {@code e} is {@code null}.
|
/external/chromium_org/content/common/ |
page_state_serialization_unittest.cc | 64 ExpectEquality(a.elements, b.elements); 121 http_body->elements.push_back(e1); 129 http_body->elements.push_back(e2); 166 frame_state->http_body.elements.push_back(e1); 171 frame_state->http_body.elements.push_back(e2); 176 frame_state->http_body.elements.push_back(e3);
|