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

<<11121314151617181920>>

  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 174 const UXMLElement *element; local
199 while((element = testCase->nextChildElement(ec)) != NULL) {
200 UnicodeString tag = element->getTagName();
202 // TODO: make sure that each element is only used once.
204 fontName = getCString(element->getAttribute(name_attr));
205 fontVer = getCString(element->getAttribute(ver_attr));
206 fontCksum = getCString(element->getAttribute(cksum_attr));
209 text = element->getText(TRUE);
212 glyphs = element->getText(TRUE);
214 indices = element->getText(TRUE)
    [all...]
  /external/icu/icu4c/source/tools/gensprep/
store.c 240 const UHashElement* element = NULL; local
260 while( (element = uhash_nextElement(hashTable, &pos))!=NULL){
262 codepoint = element->key.integer;
263 value = (ValueStruct*)element->value.pointer;
  /external/ipsec-tools/src/include-glibc/sys/
queue.h 50 * added to the list after an existing element or at the head of the list.
61 * to the list after an existing element, at the head of the list, or at the
70 * so that an arbitrary element can be removed without a need to
72 * or after an existing element or at the head of the list. A list
77 * linked so that an arbitrary element can be removed without a need to
79 * after an existing element, at the head of the list, or at the end of
111 struct type *slh_first; /* first element */ \
119 struct type *sle_next; /* next element */ \
172 struct type *stqh_first;/* first element */ \
173 struct type **stqh_last;/* addr of last next element */ \
426 struct quehead *element = (struct quehead *)a, local
438 struct quehead *element = (struct quehead *)a; local
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
sigcontext32.h 22 __u32 element[4]; member in struct:_xmmreg
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapObject.java 434 Object element = properties.elementAt(index); local
435 if (element instanceof PropertyInfo) {
436 PropertyInfo p = (PropertyInfo) element;
451 propertyInfo.value = element;
503 * element.
554 * element.
580 * Adds a SoapObject the properties array. This is a sub element to
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vs.h 70 struct draw_variant_element element[PIPE_MAX_ATTRIBS]; member in struct:draw_vs_variant_key
  /external/mesa3d/src/glsl/
lower_variable_index_to_cond_assign.cpp 28 * conditional moves of each element into a temporary.
35 * element of the array is conditionally assigned to a temporary by comparing
44 * temporary is conditionally assigned to each element of the canonical form
207 ir_dereference *element = this->rvalue->clone(mem_ctx, NULL); local
210 element->accept(&r);
218 ? new(mem_ctx) ir_assignment(element, variable, condition, write_mask)
219 : new(mem_ctx) ir_assignment(variable, element, condition);
252 /* If the array access is a read, read the first element of this subregion
257 * first element of the subregion to be written possibly *in addition* to
  /external/objenesis/tck/src/org/objenesis/tck/
TextReporter.java 198 Result element = (Result) it.next(); local
199 log.println("--- Candidate '" + element.candidateDescription + "', Instantiator '"
200 + element.objenesisDescription + "' ---");
201 element.exception.printStackTrace(log);
  /external/qemu/slirp/
misc.c 93 register struct quehead *element = (struct quehead *) a; local
95 element->qh_link = head->qh_link;
96 head->qh_link = (struct quehead *)element;
97 element->qh_rlink = (struct quehead *)head;
98 ((struct quehead *)(element->qh_link))->qh_rlink
99 = (struct quehead *)element;
105 register struct quehead *element = (struct quehead *) a; local
106 ((struct quehead *)(element->qh_link))->qh_rlink = element->qh_rlink;
107 ((struct quehead *)(element->qh_rlink))->qh_link = element->qh_link
    [all...]
  /external/skia/src/svg/
SkSVGParser.cpp 68 int SkSVGParser::findAttribute(SkSVGBase* element, const char* attrValue,
71 size_t count = element->getAttributes(&attributes);
91 SkSVGElement* element = *ptr;
92 translate(element, true);
101 SkSVGElement* element = *ptr;
102 translate(element, false);
153 if (fCurrElement == NULL) // this signals we should ignore attributes for this element
156 return false; // also an ignored element
180 SkSVGElement* element = fParents[parentIndex]; local
181 element->onEndElement(*this)
206 SkSVGElement* element = CreateElement(type, parent); local
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/
PrivateCredentialPermission.java 101 CredOwner element = new CredOwner(p.getClass().getName(), p.getName()); local
105 if (set[ii].equals(element)) {
111 set[offset++] = element;
173 CredOwner element = new CredOwner(principalClass, principalName); local
177 if (set[ii].equals(element)) {
183 set[offset++] = element;
  /external/smack/src/org/jivesoftware/smack/packet/
Privacy.java 136 * @param order the order of the element.
143 PrivacyItem element = values.next(); local
144 if (element.getOrder() == order) {
145 itemFound = element;
  /external/smack/src/org/xbill/DNS/
APLRecord.java 23 public static class Element {
30 Element(int family, boolean negative, Object address, int prefixLength)
43 * Creates an APL element corresponding to an IPv4 or IPv6 prefix.
50 Element(boolean negative, InetAddress address, int prefixLength) {
73 if (arg == null || !(arg instanceof Element))
75 Element elt = (Element) arg;
119 if (!(o instanceof Element)) {
120 throw new IllegalArgumentException("illegal element");
122 Element element = (Element) o local
155 Element element; local
237 Element element = (Element) it.next(); local
263 Element element = (Element) it.next(); 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...]
  /frameworks/base/core/java/android/text/
AutoText.java 177 String element = parser.getName(); local
178 if (element == null || !(element.equals("word"))) {
  /frameworks/base/core/java/com/android/internal/os/
PowerProfile.java 184 String element = parser.getName(); local
185 if (element == null) break;
187 if (parsingArray && !element.equals(TAG_ARRAYITEM)) {
192 if (element.equals(TAG_ARRAY)) {
196 } else if (element.equals(TAG_ITEM) || element.equals(TAG_ARRAYITEM)) {
206 if (element.equals(TAG_ITEM)) {
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 141 StackTraceElement element = stackTraceElements[i]; local
142 if (thisClassName.equals(element.getClassName())
143 && "includeAllPackagesUnderHere".equals(element.getMethodName())) {
  /libcore/luni/src/main/java/java/util/
Collections.java 62 private final E element; field in class:Collections.CopiesList
69 element = object;
73 return element == null ? object == null : element.equals(object);
82 return element;
225 final E element; field in class:Collections.SingletonSet
228 element = object;
232 return element == null ? object == null : element.equals(object);
250 return element;
265 final E element; field in class:SingletonList
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationFactory.java 56 * of member element definitions with default values.
71 Method element = declaredMethods[i]; local
72 String name = element.getName();
73 Class<?> type = element.getReturnType();
75 desc[i] = new AnnotationMember(name, element.getDefaultValue(), type, element);
77 desc[i] = new AnnotationMember(name, t, type, element);
108 * @param values actual element values
151 merged.add(el1); //phantom element
162 merged.add(def); // brand new element
289 AnnotationMember element = null; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 24 import org.w3c.dom.Element;
40 public class ElementImpl extends InnerNodeImpl implements Element {
128 * This implementation walks the entire document looking for an element
132 Element getElementById(String name) {
151 Element element = ((ElementImpl) node).getElementById(name); local
152 if (element != null) {
153 return element;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
ImportNode.java 31 import org.w3c.dom.Element;
98 Element attrOwnerElement;
202 Element element; local
213 element = (Element) addresses.item(0);
214 assertNotNull("empAddressNotNull", element);
215 aNode = doc.importNode(element, false);
229 Element element; local
    [all...]
NamedNodeMapSetNamedItemNS.java 29 import org.w3c.dom.Element;
41 * Retreive the first element whose localName is address and namespaceURI
86 Node element; local
95 element = elementList.item(0);
96 attributes = element.getAttributes();
98 ((Element) /* Node */element).setAttributeNodeNS(newAttr1);
107 Element element; local
113 element = doc.createElementNS("http://www.w3.org/DOM/Test", "root")
131 Element element; local
166 Element element; local
232 Element element; local
258 Element element; local
284 Element element; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
ConcurrentSharedRingBuffer.java 33 * the least element may be swapped out for a new element at any time. Elements
36 * This class enforces the invariant that a new element can always be swapped
37 * in. Thus, requests to pin an element for a particular task may be denied if
48 * Called if the buffer is under-capacity and a new element is being
51 * @return the new element to add.
56 * Called if the buffer is full and an old element must be swapped out
57 * to make room for the new element.
59 * @param oldElement the element being removed from the buffer.
60 * @return the new element to add
335 Pinnable<E> element = mElements.get(key); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>();
72 HTML.Element element = t.getElement(); local
73 if (element.isEmpty()) {
82 tree.addStartTag(HtmlDocument.createTag(element,
85 EndTag end = HtmlDocument.createEndTag(element);
90 push(element); // Track the open tags
98 HTML.Element element = t.getElement() local
144 HTML.Element element = pop(); local
196 HTML.Element element = tag.getElement(); local
232 HTML.Element element= endTag.getElement(); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlUtils.java 124 HTML.Element element = tag.getElement(); local
126 !lastSeen.tag.getElement().equals(element)) { }
134 if (HTML4.B_ELEMENT.equals(element)) {
137 } else if (HTML4.I_ELEMENT.equals(element)) {
140 } else if (HTML4.U_ELEMENT.equals(element)) {
143 } else if (HTML4.A_ELEMENT.equals(element)) {
151 } else if (HTML4.BLOCKQUOTE_ELEMENT.equals(element)) {
154 } else if (HTML4.FONT_ELEMENT.equals(element)) {

Completed in 2104 milliseconds

<<11121314151617181920>>