/external/chromium_org/third_party/sqlite/src/test/ |
tkt3527.test | 23 CREATE TABLE Element ( 43 INSERT INTO Element VALUES(1,'Elem1'); 44 INSERT INTO Element VALUES(2,'Elem2'); 45 INSERT INTO Element VALUES(3,'Elem3'); 46 INSERT INTO Element VALUES(4,'Elem4'); 47 INSERT INTO Element VALUES(5,'Elem5'); 55 CAST(Element.Code AS VARCHAR(50)) AS ElemId, 56 Element.Code AS ElemCode, 57 Element.Name AS ElemName, 64 FROM Element JOIN ElemAnd ON ElemAnd.CodeAnd=Element.Cod [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
ElementHasAttributeNS.java | 24 import org.w3c.dom.Element; 33 * name and namespace URI is specified on this element or has a default value, 36 * Retreive the first employee element node. Invoke the hasAttributeNS method to 76 Element element; local 81 element = (Element) elementList.item(0); 82 state = element 88 Element element; local 101 Element element; local [all...] |
HasAttribute.java | 3 import org.w3c.dom.Element; 10 * The "hasAttribute()" method for an Element should return true if the element 11 * has an attribute with the given name. Retrieve the first "address" element 12 * and the "hasAttribute()" method should return false since the element does 52 Element testNode; 56 testNode = (Element) elementList.item(4); 65 // Element testNode; 69 // testNode = (Element) elementList.item(0); 76 Element testNode [all...] |
ElementGetAttributeNodeNS.java | 3 import org.w3c.dom.Element; 11 * namespace URI. Create a new element node and add 2 new attribute nodes to it 52 Element element; local 64 element = doc.createElementNS("namespaceURI", "root"); 67 element.setAttributeNodeNS(attribute1); 70 element.setAttributeNodeNS(attribute2); 71 attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Level2", 89 Element element; local [all...] |
/external/protobuf/src/google/protobuf/ |
repeated_field.h | 71 template <typename Element> 79 const Element& Get(int index) const; 80 Element* Mutable(int index); 81 void Set(int index, const Element& value); 82 void Add(const Element& value); 83 Element* Add(); 84 // Remove the last element in the array. 85 // We don't provide a way to remove any element other than the last 87 // that should have been O(n). If you want to remove an element other 101 void AddAlreadyReserved(const Element& value) [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
BlockingDeque.java | 12 * for the deque to become non-empty when retrieving an element, and wait for 13 * space to become available in the deque when storing an element. 27 * <td ALIGN=CENTER COLSPAN = 5> <b>First Element (Head)</b></td> 58 * <td ALIGN=CENTER COLSPAN = 5> <b>Last Element (Tail)</b></td> 147 * <td>{@link #element() element()}</td> 160 * actions subsequent to the access or removal of that element from 180 * Inserts the specified element at the front of this deque if it is 186 * @param e the element to add 189 * @throws NullPointerException if the specified element is nul 542 E element(); method in interface:BlockingDeque [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiModelTreeLabelProvider.java | 41 * Returns the element's logo with a fallback on the android logo. 44 public Image getImage(Object element) { 48 if (element instanceof ElementDescriptor) { 49 desc = (ElementDescriptor) element; 50 } else if (element instanceof UiElementNode) { 51 node = (UiElementNode) element; 73 public String getText(Object element) { 74 if (element instanceof ElementDescriptor) { 75 ElementDescriptor desc = (ElementDescriptor) element; 77 } else if (element instanceof UiElementNode) [all...] |
/external/openfst/src/include/fst/ |
partition.h | 45 struct Element { 46 Element() : value(0), next(0), prev(0) {} 47 Element(T v) : value(v), next(0), prev(0) {} 50 Element* next; 51 Element* prev; 68 // Initialize just creates num_states of elements. All element 69 // operations are then done by simply disconnecting the element from 82 elements_[i] = new Element(i); 106 // use the Move() method move an element from once class to another. 108 Element* element = elements_[element_id] local 125 Element* element = elements_[element_id]; local [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
partition.h | 40 struct Element { 41 Element() : value(0), next(0), prev(0) {} 42 Element(T v) : value(v), next(0), prev(0) {} 45 Element* next; 46 Element* prev; 63 // Initialize just creates num_states of elements. All element 64 // operations are then done by simply disconnecting the element from 77 elements_[i] = new Element(i); 101 // use the Move() method move an element from once class to another. 103 Element* element = elements_[element_id] local 120 Element* element = elements_[element_id]; local [all...] |
/external/chromium_org/v8/test/webkit/ |
array-every.js | 29 function isBigEnough(element, index, array) { 30 return (element >= 10); 50 debug("3.1 Array Element Removal"); 51 function isBigEnoughAndPop(element, index, array) { 53 return (element >= 10); 59 debug("3.2 Array Element Changing"); 60 function isBigEnoughAndChange(element, index, array) { 62 return (element >= 10); 68 debug("3.3 Array Element Addition"); 69 function isBigEnoughAndPush(element, index, array) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
SingletonImmutableList.java | 30 * Implementation of {@link ImmutableList} with exactly one element. 38 final transient E element; field in class:SingletonImmutableList 40 SingletonImmutableList(E element) { 41 this.element = checkNotNull(element); 47 return element; 51 return element.equals(object) ? 0 : -1; 55 return Iterators.singletonIterator(element); 59 return element.equals(object) ? 0 : -1; 81 return element; [all...] |
/frameworks/rs/ |
rsElement.h | 36 // An element is a group of Components that occupies one cell in a structure. 37 class Element : public ObjectBase { 49 const Element **fields; 85 const Element * getField(uint32_t idx) const {return mFields[idx].e.get();} 99 static Element *createFromStream(Context *rsc, IStream *stream); 101 static ObjectBaseRef<const Element> createRef(Context *rsc, 106 static ObjectBaseRef<const Element> createRef(Context *rsc, size_t count, 107 const Element **, 112 static const Element* create(Context *rsc, 117 ObjectBaseRef<const Element> elem = createRef(rsc, dt, dk, isNorm, vecSize) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
OutlineLabelProvider.java | 33 import org.w3c.dom.Element; 44 public Image getImage(Object element) { 45 if (element instanceof Element) { 46 Element e = (Element) element; 59 return super.getImage(element); 63 public String getText(Object element) { 64 String text = super.getText(element); [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_simple_list.h | 41 * Remove an element from list. 43 * \param elem element to remove. 54 * Insert an element to the list head. 57 * \param elem element to insert. 68 * Insert an element to the list tail. 71 * \param elem element to insert. 82 * Move an element to the list head. 85 * \param elem element to move. 94 * Move an element to the list tail. 97 * \param elem element to move [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
simple_list.h | 50 * Remove an element from list. 52 * \param elem element to remove. 61 * Insert an element to the list head. 64 * \param elem element to insert. 75 * Insert an element to the list tail. 78 * \param elem element to insert. 89 * Move an element to the list head. 92 * \param elem element to move. 101 * Move an element to the list tail. 104 * \param elem element to move [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultisetSetCountUnconditionallyTester.java | 31 @Override void setCountCheckReturnValue(E element, int count) { 33 getMultiset().count(element), setCount(element, count)); 36 @Override void setCountNoCheckReturnValue(E element, int count) { 37 setCount(element, count); 40 private int setCount(E element, int count) { 41 return getMultiset().setCount(element, count);
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_simple_list.h | 41 * Remove an element from list. 43 * \param elem element to remove. 54 * Insert an element to the list head. 57 * \param elem element to insert. 68 * Insert an element to the list tail. 71 * \param elem element to insert. 82 * Move an element to the list head. 85 * \param elem element to move. 94 * Move an element to the list tail. 97 * \param elem element to move [all...] |
/external/mesa3d/src/mesa/main/ |
simple_list.h | 50 * Remove an element from list. 52 * \param elem element to remove. 61 * Insert an element to the list head. 64 * \param elem element to insert. 75 * Insert an element to the list tail. 78 * \param elem element to insert. 89 * Move an element to the list head. 92 * \param elem element to move. 101 * Move an element to the list tail. 104 * \param elem element to move [all...] |
/packages/inputmethods/LatinIME/java/res/xml/ |
keyboard_layout_set_emoji.xml | 23 <Element 26 <Element 29 <Element 32 <Element 35 <Element 38 <Element 41 <Element
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/templates/ |
addNdkSupport.xml | 13 <element value="jni"/>
16 <element value="obj"/>
17 <element value="libs"/>
23 <element>
26 </element>
27 <element>
30 </element>
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
text_measure.js | 11 * class has a dummy span element. When measuring the width of text, it sets 12 * the text to the element and obtains the element's size by 16 * @param {HTMLElement} element Element that has styles of measured text. The 17 * width of text is measures like as it is rendered in this element. 19 var TextMeasure = function(element) { 20 var doc = element.ownerDocument; 26 var styles = window.getComputedStyle(element, '');
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
nested-plug-ins.html | 2 function toggleDisplay(element, button) 4 if (element.style.display == "none") 5 element.style.display = ""; 7 element.style.display = "none"; 10 function toggleVisibility(element, button) 12 if (element.style.visibility == "hidden") 13 element.style.visibility = ""; 15 element.style.visibility = "hidden"; 20 Play with the display and visibility toggles. Make sure that turning an inner element visible does not show it if it has a hidden or
|
/external/chromium_org/tools/perf/page_sets/ |
calendar_forward_backward.json | 15 { "action": "wait", "condition": "element", "selector": "div[class~=\"navForward\"]" }, 21 { "action": "wait", "condition": "element", "selector": "div[class~=\"navForward\"]" }, 24 { "action": "wait", "condition": "element", "selector": "div[class~=\"navForward\"]" }, 27 { "action": "wait", "condition": "element", "selector": "div[class~=\"navForward\"]" }, 30 { "action": "wait", "condition": "element", "selector": "div[class~=\"navBack\"]" }, 33 { "action": "wait", "condition": "element", "selector": "div[class~=\"navBack\"]" }, 36 { "action": "wait", "condition": "element", "selector": "div[class~=\"navBack\"]" }, 39 { "action": "wait", "condition": "element", "selector": "div[class~=\"navBack\"]" }, 42 { "action": "wait", "condition": "element", "selector": "div[class~=\"navForward\"]" }
|
/external/chromium_org/tools/telemetry/telemetry/page/actions/ |
media_action.js | 9 // or audio tag element that can be found. 40 window.__registerHTML5ErrorEvents = function(element) { 46 element.addEventListener('error', onError); 47 element.addEventListener('abort', onError); 50 window.__registerHTML5EventCompleted = function(element, event_name) { 51 // Logs |even_name| on element when completed. 53 element[e.type + '_completed'] = true; 54 element.removeEventListener(event_name, logEventHappened); 56 element.addEventListener(event_name, logEventHappened);
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
NodeExtension.java | 19 * A class which represents a common element within the pubsub defined
28 private PubSubElementType element;
field in class:NodeExtension 32 * Constructs a <tt>NodeExtension</tt> with an element name specified
35 * @param elem Defines the element name and namespace
40 element = elem;
45 * Constructs a <tt>NodeExtension</tt> with an element name specified
48 * @param elem Defines the element name and namespace
67 return element.getElementName();
72 return element.getNamespace().getXmlns();
|