HomeSort by relevance Sort by last modified time
    Searched defs:element (Results 26 - 50 of 1193) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava-gwt/src/com/google/common/collect/
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
  /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);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
InstructionWriter.java 349 for (Number element: elements) {
350 writer.write(element.byteValue());
354 for (Number element: elements) {
355 writer.writeShort(element.shortValue());
359 for (Number element: elements) {
360 writer.writeInt(element.intValue());
364 for (Number element: elements) {
365 writer.writeLong(element.longValue());
383 for (SwitchElement element: elements) {
384 writer.writeInt(element.getKey())
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
AnnotationPool.java 61 for (AnnotationElement element: annotation.getElements()) {
62 stringPool.intern(element.getName());
63 DexPool.internEncodedValue(element.getValue(), stringPool, typePool, fieldPool, methodPool);
  /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_org/content/browser/loader/
upload_data_stream_builder.cc 27 const ResourceRequestBody::Element& element)
28 : net::UploadBytesElementReader(element.bytes(), element.length()),
30 DCHECK_EQ(ResourceRequestBody::Element::TYPE_BYTES, element.type());
48 const ResourceRequestBody::Element& element)
50 element.path(),
51 element.offset()
105 const ResourceRequestBody::Element& element = (*body->elements())[i]; local
114 const ResourceRequestBody::Element& element = *resolved_elements[i]; local
    [all...]
  /external/chromium_org/content/renderer/
history_serialization.cc 34 void ToExplodedHttpBodyElement(const WebHTTPBody::Element& input,
37 case WebHTTPBody::Element::TypeData:
40 case WebHTTPBody::Element::TypeFile:
46 case WebHTTPBody::Element::TypeFileSystemURL:
52 case WebHTTPBody::Element::TypeBlob:
58 void AppendHTTPBodyElement(const ExplodedHttpBodyElement& element,
60 switch (element.type) {
61 case WebHTTPBody::Element::TypeData:
62 http_body->appendData(element.data);
64 case WebHTTPBody::Element::TypeFile
106 WebHTTPBody::Element element; local
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl_unittest.cc 36 WebHTTPBody::Element element; local
37 while (body.elementAt(i++, element)) {
38 if (element.type == WebHTTPBody::Element::TypeData) {
39 result.append(element.data.data(), element.data.size());
41 NOTREACHED() << "unexpected element type encountered!";
  /external/chromium_org/courgette/
ensemble.cc 16 Element::Element(ExecutableType kind,
22 Element::~Element() {}
24 std::string Element::Name() const {
50 Element* element = new Element(type, this, region); local
51 owned_elements_.push_back(element);
52 elements_.push_back(element);
    [all...]
  /external/chromium_org/ppapi/shared_impl/
array_var.cc 40 const PP_Var& element = elements_[index].get(); local
41 if (PpapiGlobals::Get()->GetVarTracker()->AddRefVar(element))
42 return element;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXSlider.cpp 101 return element()->getAttribute(attribute);
117 HTMLInputElement* input = element();
128 HTMLInputElement* AXSlider::element() const function in class:WebCore::AXSlider
  /external/chromium_org/third_party/WebKit/Source/core/animation/
EffectInputTest.cpp 12 #include "core/dom/Element.h"
24 , element(document->createElement("foo", ASSERT_NO_EXCEPTION))
31 RefPtrWillBePersistent<Element> element; member in class:__anon14929::AnimationEffectInputTest
53 RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
73 RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
96 RefPtrWillBeRawPtr<AnimationEffect> animationEffect = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
120 RefPtrWillBeRawPtr<AnimationEffect> animationEffect ALLOW_UNUSED = EffectInput::convert(element.get(), jsKeyframes, exceptionState);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCanvasValue.cpp 67 void CSSCanvasValue::canvasDestroyed(HTMLCanvasElement* element)
69 ASSERT_UNUSED(element, element == m_element);
76 if (HTMLCanvasElement* elt = element(&renderer->document()))
81 HTMLCanvasElement* CSSCanvasValue::element(Document* document) function in class:WebCore::CSSCanvasValue
93 HTMLCanvasElement* elt = element(&renderer->document());

Completed in 2024 milliseconds

12 3 4 5 6 7 8 91011>>