HomeSort by relevance Sort by last modified time
    Searched defs:elements (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /dalvik/vm/native/
java_lang_Throwable.c 48 ArrayObject* elements = NULL; local
55 elements = dvmGetStackTrace(stackState);
56 RETURN_PTR(elements);
  /dalvik/libcore/security/src/main/java/java/security/
PermissionsHash.java 55 public Enumeration elements() { method in class:PermissionsHash
56 return perms.elements();
70 for (Enumeration elements = elements(); elements.hasMoreElements();) {
71 if (((Permission)elements.nextElement()).implies(permission)) {
AllPermissionCollection.java 65 public Enumeration<Permission> elements() { method in class:AllPermissionCollection
  /external/stlport/test/unit/
count_test.cpp 49 int elements = count(numbers.begin(), numbers.end(), 2); local
50 CPPUNIT_ASSERT(elements==33);
52 elements = 0;
53 count(numbers.begin(), numbers.end(), 2, elements);
54 CPPUNIT_ASSERT(elements==33);
62 int elements = count_if(numbers.begin(), numbers.end(), odd); local
63 CPPUNIT_ASSERT(elements==33);
65 elements = 0;
66 count_if(numbers.begin(), numbers.end(), odd, elements);
67 CPPUNIT_ASSERT(elements==33)
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLFormElementCustom.cpp 49 RefPtr<Node> formElement = form->elements()->item(index);
65 Vector<RefPtr<Node> > elements; local
66 imp->getNamedElements(v, elements);
67 if (elements.isEmpty())
73 Vector<RefPtr<Node> > elements; local
74 imp->getNamedElements(v, elements);
75 ASSERT(!elements.isEmpty());
77 if (elements.size() == 1)
78 return toV8(elements.at(0).release());
80 NodeList* collection = new V8NamedNodesCollection(elements);
    [all...]
  /external/webkit/WebCore/platform/network/curl/
FormDataStreamCurl.cpp 52 Vector<FormDataElement> elements;
54 elements = m_resourceHandle->request().httpBody()->elements();
56 if (m_formDataElementIndex >= elements.size())
59 FormDataElement element = elements[m_formDataElementIndex];
106 Vector<FormDataElement> elements; local
108 elements = m_resourceHandle->request().httpBody()->elements();
110 return m_formDataElementIndex < elements.size();
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
partition.h 23 elements are partitioned into classes. Each class is represented
24 by one of its elements, the canonical element, which is chosen
25 arbitrarily from elements in the class. The principal operations
28 which unites the two classes that contain two given elements into a
51 /* The next element in this class. Elements in each class form a
54 /* The number of elements in this class. Valid only if this is the
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
64 struct partition_elem elements[1]; member in struct:partition_def
76 ((partition__)->elements[(element__)].class_element
    [all...]
  /bionic/libc/kernel/common/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /cts/tools/signature-tools/src/signature/model/impl/
SigAnnotation.java 30 private Set<IAnnotationElement> elements; field in class:SigAnnotation
34 elements = Collections.emptySet();
46 return elements;
49 public void setElements(Set<IAnnotationElement> elements) {
50 this.elements = elements;
  /dalvik/dx/src/com/android/dx/util/
IntSet.java 55 * Returns the count of unique elements in this set.
57 * @return {@code > = 0;} count of unique elements
59 int elements(); method in interface:IntSet
  /dalvik/libcore/luni/src/main/java/java/io/
FilePermissionCollection.java 71 * @see java.security.PermissionCollection#elements()
74 public Enumeration<Permission> elements() { method in class:FilePermissionCollection
75 return permissions.elements();
  /dalvik/libcore/luni/src/main/java/java/util/
Dictionary.java 39 * Returns an enumeration on the elements of this dictionary.
46 public abstract Enumeration<V> elements(); method in class:Dictionary
72 * @see #elements
89 * @see #elements
112 * @see #elements
PropertyPermissionCollection.java 56 public Enumeration<Permission> elements() { method in class:PropertyPermissionCollection
57 return permissions.elements();
62 Enumeration<Permission> elemEnum = elements();
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyPermissionCollection.java 37 public Enumeration<Permission> elements() { method in class:MyPermissionCollection
  /external/icu4c/i18n/
ucol_cnt.h 47 ContractionTable **elements; member in struct:CntTable
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
mempool.h 26 void **elements; member in struct:mempool_s
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnSentence.java 30 public ArrayList<WnnClause> elements; field in class:WnnSentence
47 this.elements = clauses;
90 this.elements = new ArrayList<WnnClause>();
91 this.elements.add(clause);
108 this.elements = new ArrayList<WnnClause>();
109 this.elements.addAll(prev.elements);
110 this.elements.add(clause);
128 this.elements = new ArrayList<WnnClause>();
129 this.elements.add(head)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotation.java 51 private final TreeMap<CstUtf8, NameValuePair> elements; field in class:Annotation
54 * Construct an instance. It initially contains no elements.
70 this.elements = new TreeMap<CstUtf8, NameValuePair>();
87 return elements.equals(otherAnnotation.elements);
93 hash = (hash * 31) + elements.hashCode();
112 Iterator<NameValuePair> thisIter = elements.values().iterator();
113 Iterator<NameValuePair> otherIter = other.elements.values().iterator();
150 for (NameValuePair pair : elements.values()) {
197 elements.put(pair.getName(), pair)
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
SocketPermissionCollection.java 55 public Enumeration<Permission> elements() { method in class:SocketPermissionCollection
56 return permissions.elements();
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
DictionaryTest.java 36 public Enumeration elements() { method in class:DictionaryTest.Mock_Dictionary

Completed in 928 milliseconds

1 2 3 4 5 6