HomeSort by relevance Sort by last modified time
    Searched full:element (Results 226 - 250 of 13053) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
chio.h 5 /* changer element types */
6 #define CHET_MT 0 /* media transport element (robot) */
7 #define CHET_ST 1 /* storage element (media slots) */
8 #define CHET_IE 2 /* import/export element */
9 #define CHET_DT 3 /* data transfer element (tape/cdrom/whatever) */
21 * query vendor-specific element types
23 * accessing elements works by specifing type and unit of the element.
29 int cp_curpicker; /* current transport element */
50 * move a medium from one element to another
53 int cm_fromtype; /* type/unit of source element */
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multiset.java 35 * element equivalence", below) are referred to as <i>occurrences</i> of the
36 * same single element. The total number of occurrences of an element in a
37 * multiset is called the <i>count</i> of that element (the terms "frequency"
39 * of an element is represented as an {@code int}, a multiset may never contain
40 * more than {@link Integer#MAX_VALUE} occurrences of any one element.
44 * #count}, which returns the count of an element. There are five new
46 * or remove multiple occurrences of an element at once, or to set the count of
47 * an element to a specific value. These modification operations are optional,
53 * Multiset.Entry} instances, each providing both a distinct element and th
    [all...]
  /libcore/luni/src/main/java/java/util/
Deque.java 14 * A linear collection that supports element insertion and removal at
23 * examine the element. Each of these methods exists in two forms:
38 * <td ALIGN=CENTER COLSPAN = 2> <b>First Element (Head)</b></td>
39 * <td ALIGN=CENTER COLSPAN = 2> <b>Last Element (Tail)</b></td>
100 * <td>{@link java.util.Queue#element element()}</td>
155 * element-based versions of the <tt>equals</tt> and <tt>hashCode</tt>
167 * Inserts the specified element at the front of this deque if it is
172 * @param e the element to add
173 * @throws IllegalStateException if the element cannot be added at thi
434 E element(); method in interface:Deque
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.mm 50 std::vector<BookmarkNodeData::Element>& elements) {
73 BookmarkNodeData::Element e = BookmarkNodeData::Element(new_node.get());
82 std::vector<BookmarkNodeData::Element>& elements) {
91 std::vector<BookmarkNodeData::Element>& elements) {
111 BookmarkNodeData::Element element;
112 element.is_url = true;
113 element.url = GURL(url);
114 element.title = title
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h 50 class Element;
77 String elementRenderTreeAsText(Element*, ExceptionState&);
95 ShadowRoot* ensureShadowRoot(Element* host, ExceptionState&);
96 ShadowRoot* shadowRoot(Element* host, ExceptionState&);
97 ShadowRoot* youngestShadowRoot(Element* host, ExceptionState&);
98 ShadowRoot* oldestShadowRoot(Element* host, ExceptionState&);
105 String shadowPseudoId(Element*, ExceptionState&);
106 void setShadowPseudoId(Element*, const String&, ExceptionState&);
112 PassRefPtr<Element> createContentElement(ExceptionState&);
113 bool isValidContentSelect(Element* insertionPoint, ExceptionState&)
    [all...]
  /libcore/luni/src/main/java/java/text/
CollationElementIterator.java 24 * result of each iteration is a 32-bit collation element that defines the
30 * "ca": the first collation element is collation_element('c') and second
31 * collation element is collation_element('a').
34 * collation element for the two characters 'c' and 'h':
36 * "cha": the first collation element is collation_element('ch') and the second
43 * "&#92;u0086b": the first collation element is collation_element('a'), the
44 * second one is collation_element('e'), and the third collation element is
65 * specified collation element. Returns {@code 1} if there is no expansion
66 * with this collation element as the last element
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ClearObjectTest.java 20 import android.renderscript.Element;
64 Element element = Element.BOOLEAN(mRS); local
65 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
66 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
67 ms_clear.set_element(element);
80 Type type= new Type.Builder(mRS, Element.I8(mRS)).setX(1).create();
81 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
82 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/
manifest.json 4 "description": "Extends the Developer Tools, adding a sidebar that displays the jQuery data associated with the selected DOM element.",
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
CheckedRadioButtons.cpp 187 void CheckedRadioButtons::addButton(HTMLInputElement* element)
189 ASSERT(element->isRadioButton());
190 if (element->name().isEmpty())
196 OwnPtr<RadioButtonGroup>& group = m_nameToGroupMap->add(element->name().impl(), PassOwnPtr<RadioButtonGroup>()).iterator->value;
199 group->add(element);
202 void CheckedRadioButtons::updateCheckedState(HTMLInputElement* element)
204 ASSERT(element->isRadioButton());
205 if (element->name().isEmpty())
210 RadioButtonGroup* group = m_nameToGroupMap->get(element->name().impl());
212 group->updateCheckedState(element);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pt_fetch.c 91 key.element[nr].type = TRANSLATE_ELEMENT_INSTANCE_ID;
92 key.element[nr].input_format = PIPE_FORMAT_R32_USCALED;
93 key.element[nr].output_format = PIPE_FORMAT_R32_USCALED;
94 key.element[nr].output_offset = dst_offset;
98 key.element[nr].type = TRANSLATE_ELEMENT_NORMAL;
99 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format;
100 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index;
101 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
102 key.element[nr].instance_divisor = draw->pt.vertex_element[ei].instance_divisor;
103 key.element[nr].output_format = PIPE_FORMAT_R32G32B32A32_SINT
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrReducedClip.cpp 11 typedef SkClipStack::Element Element;
40 // The clip established by the element list might be cached based on the last
90 SkNEW_INSERT_AT_LLIST_HEAD(result, Element, (isectRect, SkRegion::kReplace_Op, doAA));
138 // element.
165 const Element* element = iter.prev(); local
166 if (NULL == element) {
170 if (SkClipStack::kEmptyGenID == element->getGenID()) {
174 if (SkClipStack::kWideOpenGenID == element->getGenID())
367 Element* element = result->headIter().get(); local
    [all...]
  /external/chromium_org/tools/perf/page_sets/
plus_alt_posts_photos.json 14 { "action": "wait", "condition": "element", "text": "Barack Obama" },
15 { "action": "wait", "condition": "element", "selector": "span[guidedhelpid=\"posts_tab_profile\"][class*=\"s6U8x\"]" }
19 { "action": "wait", "condition": "element", "selector": "span[guidedhelpid=\"posts_tab_profile\"][class*=\"s6U8x\"]" },
22 { "action": "wait", "condition": "element", "selector": "span[guidedhelpid=\"photos_tab_profile\"][class*=\"s6U8x\"]" },
  /external/chromium_org/ui/keyboard/resources/
api_adapter.js 6 * Queries the document for an element with a matching id.
8 * the element being sought.
9 * @return {?Element} The element with that id.
  /external/clang/test/Sema/
static-init.c 6 static int b = f; // expected-error {{initializer element is not a compile-time constant}}
8 float r = (float) (intptr_t) &r; // expected-error {{initializer element is not a compile-time constant}}
22 struct foo x = {(intptr_t) u}; // expected-error {{initializer element is not a compile-time constant}}
23 struct foo y = {(char) u}; // expected-error {{initializer element is not a compile-time constant}}
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pt_fetch.c 91 key.element[nr].type = TRANSLATE_ELEMENT_INSTANCE_ID;
92 key.element[nr].input_format = PIPE_FORMAT_R32_USCALED;
93 key.element[nr].output_format = PIPE_FORMAT_R32_USCALED;
94 key.element[nr].output_offset = dst_offset;
98 key.element[nr].type = TRANSLATE_ELEMENT_NORMAL;
99 key.element[nr].input_format = draw->pt.vertex_element[ei].src_format;
100 key.element[nr].input_buffer = draw->pt.vertex_element[ei].vertex_buffer_index;
101 key.element[nr].input_offset = draw->pt.vertex_element[ei].src_offset;
102 key.element[nr].instance_divisor = draw->pt.vertex_element[ei].instance_divisor;
103 key.element[nr].output_format = PIPE_FORMAT_R32G32B32A32_SINT
    [all...]
  /external/proguard/src/proguard/classfile/editor/
ElementValuesEditor.java 27 * This class can add and delete element values to and from a given target
28 * annotation default attribute, annotation, or array element value. Element
43 * Creates a new ElementValuesEditor that will edit element values in the
58 * Creates a new ElementValuesEditor that will edit element values in the
59 * given target array element value.
80 // Try to replace an existing element value.
86 // Otherwise append the element value.
97 // Try to replace an existing element value.
103 // Otherwise append the element value
    [all...]
  /external/skia/src/gpu/
GrReducedClip.cpp 11 typedef SkClipStack::Element Element;
40 // The clip established by the element list might be cached based on the last
90 SkNEW_INSERT_AT_LLIST_HEAD(result, Element, (isectRect, SkRegion::kReplace_Op, doAA));
138 // element.
165 const Element* element = iter.prev(); local
166 if (NULL == element) {
170 if (SkClipStack::kEmptyGenID == element->getGenID()) {
174 if (SkClipStack::kWideOpenGenID == element->getGenID())
367 Element* element = result->headIter().get(); local
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttributeNS.java 24 import org.w3c.dom.Element;
32 * The "hasAttributeNS()" method for an Element should return false if the
33 * element does not have an attribute with the given local name and/or a
34 * namespace URI specified on this element or does not have a default value.
35 * Retrieve the first "address" element and the "hasAttributeNS()" method should
36 * return false since the element has "nomatch" as the local name and
78 Element testNode;
82 testNode = (Element) elementList.item(0);
91 Element testNode;
95 testNode = (Element) elementList.item(0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceLabelProvider.java 65 public Image getImage(Object element) {
74 public String getText(Object element) {
75 return getColumnText(element, 0);
89 public boolean isLabelProperty(Object element, String property) {
99 public Image getColumnImage(Object element, int columnIndex) {
101 if (element instanceof ResourceItem) {
102 ResourceItem item = (ResourceItem)element;
112 public String getColumnText(Object element, int columnIndex) {
115 if (element instanceof ResourceType) {
116 return ((ResourceType)element).getDisplayName()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
color1-expected-completion45.txt 2 <selector ></selector> : Required. This must be the root element. Contains one or more <item> elements.
  /prebuilts/devtools/repository/
sdk-repository-6.xsd 47 - There's a new element <min-platform-tools-rev> in <tool>. The tool package now
52 - <extra> element now has a <project-files> element that contains 1 or
55 - <platform> element now has a mandatory <layoutlib> that indicates the API
59 - <extra> now has an <old-paths> element, a ;-separated list of old paths that
73 <xsd:element name="sdk-repository" type="sdk:repositoryType" />
82 <xsd:element name="platform" type="sdk:platformType" />
83 <xsd:element name="system-image" type="sdk:systemImageType" />
84 <xsd:element name="source" type="sdk:sourceType" />
85 <xsd:element name="tool" type="sdk:toolType" /
    [all...]
sdk-repository-8.xsd 47 - There's a new element <min-platform-tools-rev> in <tool>. The tool package now
52 - <extra> element now has a <project-files> element that contains 1 or
55 - <platform> element now has a mandatory <layoutlib> that indicates the API
59 - <extra> now has an <old-paths> element, a ;-separated list of old paths that
73 - For <tool> and <platform-tool> packages, the <revision> element becomes a
74 a "full revision" element with <major>, <minor>, <micro> and <preview> sub-elements.
75 - The <beta-rc> element is no longer supported, it is replaced by
77 - <min-tools-rev> and <min-platform-tools-rev> also become a full revision element.
86 <xsd:element name="sdk-repository" type="sdk:repositoryType" /
    [all...]
  /external/chromium_org/chrome/browser/resources/sync_file_system_internals/
dump_database.js 21 * Creates an element named |elementName| containing the content |text|.
22 * @param {string} elementName Name of the new element to be created.
23 * @param {string} text Text to be contained in the new element.
24 * @return {HTMLElement} The newly created HTML element.
27 var element = document.createElement(elementName);
28 element.appendChild(document.createTextNode(text));
29 return element;
35 * @param {HTMLElement} header The table header element to be fillied by
37 * @param {HTMLElement} body The table body element to be filled by this
40 * The first element must have metadata of the entry
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
nodehasattributes01.java 34 * The method hasAttributes returns whether this node (if it is an element) has any attributes.
35 * Retreive an element node without attributes. Verify if hasAttributes returns false.
36 * Retreive another element node with attributes. Verify if hasAttributes returns true.
64 Element element; local
69 element = (Element) elementList.item(0);
70 hasAttributes = element.hasAttributes();
73 element = (Element) elementList.item(0)
    [all...]

Completed in 595 milliseconds

1 2 3 4 5 6 7 8 91011>>