/external/chromium_org/v8/test/mjsunit/ |
array-iteration.js | 202 var o = { element: 42 }; 204 assertTrue(a.some(function(n) { return this.element == n; }, o)); 206 assertFalse(a.some(function(n) { return this.element == n; }, o));
|
/external/guava/guava-gwt/src/com/google/common/collect/ |
SingletonImmutableList_CustomFieldSerializer.java | 37 Object element = reader.readObject(); local 38 return new SingletonImmutableList<Object>(element); 43 writer.writeObject(instance.element);
|
SingletonImmutableSet_CustomFieldSerializer.java | 36 Object element = reader.readObject(); local 37 return new SingletonImmutableSet<Object>(element); 42 writer.writeObject(instance.element);
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
SingletonImmutableList.java | 33 E element; field in class:SingletonImmutableList 35 SingletonImmutableList(E element) { 36 super(Collections.singletonList(checkNotNull(element))); 37 this.element = element;
|
SingletonImmutableSet.java | 35 E element; field in class:SingletonImmutableSet 37 SingletonImmutableSet(E element) { 38 super(Collections.singleton(checkNotNull(element))); 39 this.element = element;
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_draw.c | 56 const struct pipe_vertex_element *element = local 59 &vertex_buffers[element->vertex_buffer_index]; 72 format_desc = util_format_description(element->src_format); 85 if (element->src_offset >= buffer_size) { 90 buffer_size -= element->src_offset; 104 if (element->instance_divisor == 0) { 111 assert((info->start_instance + info->instance_count)/element->instance_divisor
|
/external/v8/test/mjsunit/ |
array-iteration.js | 202 var o = { element: 42 }; 204 assertTrue(a.some(function(n) { return this.element == n; }, o)); 206 assertFalse(a.some(function(n) { return this.element == n; }, o));
|
/frameworks/rs/cpu_ref/linkloader/utils/ |
traits.h | 27 Type element; member in struct:TypeTraits::AlignmentTest 32 enum { align = offsetof(AlignmentTest, element) };
|
/libcore/luni/src/main/java/java/util/ |
AbstractQueue.java | 18 * {@link #element element} are based on {@link #offer offer}, {@link 46 * Inserts the specified element into this queue if it is possible to do so 54 * @param e the element to add 56 * @throws IllegalStateException if the element cannot be added at this 58 * @throws ClassCastException if the class of the specified element 60 * @throws NullPointerException if the specified element is null and 62 * @throws IllegalArgumentException if some property of this element 102 public E element() { method in class:AbstractQueue 130 * and adds each element returned by the iterator to thi [all...] |
Queue.java | 44 * <td>{@link #element element()}</td> 55 * element which would be removed by a call to {@link #remove() } or 61 * <p>The {@link #offer offer} method inserts an element if possible, 64 * add an element only by throwing an unchecked exception. The 71 * Exactly which element is removed from the queue is a 78 * <p>The {@link #element()} and {@link #peek()} methods return, but do 96 * element-based versions of methods <tt>equals</tt> and 98 * from class <tt>Object</tt>, because element-based equality is not 116 * Inserts the specified element into this queue if it is possible to do s 179 E element(); method in interface:Queue [all...] |
/external/apache-http/src/org/apache/http/impl/auth/ |
RFC2617Scheme.java | 76 for (HeaderElement element : elements) { 77 this.params.put(element.getName(), element.getValue());
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
elementsetattributens05.java | 36 * Invoke the setAttributeNS method on a new Element object with null namespaceURI and a 67 Element element; local 71 element = doc.createElementNS("http://www.w3.org/DOM/Test/L2", "dom:elem"); 76 element.setAttributeNS(nullNS, "dom:root", "test");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LinearLayoutWeightFix.java | 31 import org.w3c.dom.Element; 53 if (node instanceof Element && node.getParentNode() instanceof Element) { 54 Element element = (Element) node; local 55 Element parent = (Element) node.getParentNode(); 63 element.setAttributeNS(ANDROID_URI, dimension, VALUE_ZERO_DP);
|
SetScrollViewSizeFix.java | 30 import org.w3c.dom.Element; 52 if (node instanceof Element && node.getParentNode() instanceof Element) { 53 Element element = (Element) node; local 54 Element parent = (Element) node.getParentNode(); 58 element.setAttributeNS(ANDROID_URI, attributeName, VALUE_WRAP_CONTENT);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_elementnormalize2.java | 31 * Add an empty text node to an existing attribute node, normalize the containing element 60 Element root; 62 Element element; local 73 element = (Element) elementList.item(0); 74 attrNode = element.getAttributeNode("title"); 76 element.normalize(); 77 attrNode = element.getAttributeNode("title");
|
/cts/tools/dex-tools/src/dex/reader/ |
TypeFormatter.java | 94 for (Object element : elements) { 98 builder.append(element.toString());
|
/cts/tools/signature-tools/src/signature/model/impl/ |
SigAnnotation.java | 60 for (IAnnotationElement element : getElements()) { 62 builder.append(element.toString());
|
/external/checkpolicy/ |
queue.h | 20 queue_element_t element; member in struct:queue_node 39 Applies the specified function f to each element in the 42 In addition to passing the element to f, queue_map 53 then the element will be removed from the queue and the g 54 function will be applied to the element.
|
/external/chromium/chrome/browser/autofill/ |
autofill_xml_parser.cc | 45 const std::string& element = qname.LocalPart(); local 46 if (element.compare("autofillqueryresponse") == 0) { 69 } else if (element.compare("field") == 0) { 119 const std::string &element = qname.LocalPart(); local 120 if (element.compare("autofilluploadresponse") == 0) {
|
/external/chromium/chrome/browser/sync/sessions/ |
ordered_commit_set.cc | 56 Projection::iterator element = std::lower_bound(p.begin(), p.end(), local 58 if (element != p.end()) 59 p.erase(element, p.end());
|
/external/chromium/net/base/ |
upload_data_stream_unittest.cc | 64 std::vector<UploadData::Element> elements; 65 UploadData::Element element; local 66 element.SetToFilePath(temp_file_path); 67 element.SetContentLength(kFakeSize); 68 elements.push_back(element); 91 std::vector<UploadData::Element> elements; 92 UploadData::Element element; local 93 element.SetToFilePathRange(file_path, 1, 2, time) [all...] |
/external/chromium_org/ash/wm/ |
window_animations_unittest.cc | 94 gfx::AnimationContainerElement* element = local 97 element->Step(base::TimeTicks::Now() +
|
/external/chromium_org/chrome/browser/safe_browsing/ |
signature_util_win.cc | 76 CERT_CHAIN_ELEMENT* element = simple_chain->rgpElement[k]; local 78 element->pCertContext->pbCertEncoded, 79 element->pCertContext->cbCertEncoded);
|
/external/chromium_org/content/browser/loader/ |
upload_data_stream_builder.cc | 28 const ResourceRequestBody::Element& element) 29 : net::UploadBytesElementReader(element.bytes(), element.length()), 31 DCHECK_EQ(ResourceRequestBody::Element::TYPE_BYTES, element.type()); 49 const ResourceRequestBody::Element& element) 51 element.path(), 52 element.offset() 106 const ResourceRequestBody::Element& element = (*body->elements())[i]; local 115 const ResourceRequestBody::Element& element = *resolved_elements[i]; local [all...] |
/external/chromium_org/content/public/renderer/ |
history_item_serialization.cc | 32 void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input, 35 case WebHTTPBody::Element::TypeData: 38 case WebHTTPBody::Element::TypeFile: 44 case WebHTTPBody::Element::TypeFileSystemURL: 50 case WebHTTPBody::Element::TypeBlob: 56 void AppendHTTPBodyElement(const ExplodedHttpBodyElement& element, 58 switch (element.type) { 59 case WebHTTPBody::Element::TypeData: 60 http_body->appendData(element.data); 62 case WebHTTPBody::Element::TypeFile 104 WebHTTPBody::Element element; local [all...] |