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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/security/
PermissionsHash.java 53 public Enumeration elements() { method in class:PermissionsHash
54 return perms.elements();
68 for (Enumeration elements = elements(); elements.hasMoreElements();) {
69 if (((Permission)elements.nextElement()).implies(permission)) {
  /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...]
  /ndk/sources/android/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...]
  /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;
  /external/guava/src/com/google/common/collect/
ImmutableSet.java 36 * iteration order. Does not permit null elements.
74 // Casting to any type is safe because the set will never hold any elements.
93 * Returns an immutable set containing the given elements, in order. Repeated
105 * Returns an immutable set containing the given elements, in order. Repeated
117 * Returns an immutable set containing the given elements, in order. Repeated
129 * Returns an immutable set containing the given elements, in order. Repeated
141 * Returns an immutable set containing the given elements, in order. Repeated
146 * @throws NullPointerException if any of {@code elements} is null
148 public static <E> ImmutableSet<E> of(E... elements) {
149 checkNotNull(elements); // for GW
259 List<E> elements = new ArrayList<E>(count); local
294 final transient Object[] elements; field in class:ImmutableSet.ArrayImmutableSet
425 final Object[] elements; field in class:SerializedForm
    [all...]
ImmutableCollection.java 29 * An immutable collection. Does not permit null elements.
32 * #asList()} method, which returns a list view of the collection's elements.
51 * Returns an unmodifiable iterator across the elements in this collection.
221 private final E[] elements; field in class:ImmutableCollection.ArrayImmutableCollection
223 ArrayImmutableCollection(E[] elements) {
224 this.elements = elements;
228 return elements.length;
236 return Iterators.forArray(elements);
245 final Object[] elements; field in class:ImmutableCollection.SerializedForm
    [all...]
ImmutableList.java 37 * Does not permit null elements.
64 // Casting to any type is safe because the list will never hold any elements.
188 * Returns an immutable list containing the given elements, in order.
190 * @throws NullPointerException if any of {@code elements} is null
192 public static <E> ImmutableList<E> of(E... elements) {
193 checkNotNull(elements); // for GWT
194 switch (elements.length) {
198 return new SingletonImmutableList<E>(elements[0]);
200 return new RegularImmutableList<E>(copyIntoArray(elements));
205 * Returns an immutable list containing the given elements, in order. I
268 Object[] elements = collection.toArray(); local
365 final Object[] elements; field in class:ImmutableList.SerializedForm
    [all...]
  /frameworks/base/core/java/com/google/android/collect/
Lists.java 42 * elements.
55 * @param elements the elements that the list should contain, in order
56 * @return a newly-created {@code ArrayList} containing those elements
58 public static <E> ArrayList<E> newArrayList(E... elements) {
59 int capacity = (elements.length * 110) / 100 + 5;
61 Collections.addAll(list, elements);
Sets.java 48 * Creates a {@code HashSet} instance containing the given elements.
60 * @param elements the elements that the set should contain
61 * @return a newly-created {@code HashSet} containing those elements (minus
64 public static <E> HashSet<E> newHashSet(E... elements) {
65 int capacity = elements.length * 4 / 3 + 1;
67 Collections.addAll(set, elements);
81 * Creates a {@code SortedSet} instance containing the given elements.
83 * @param elements the elements that the set should contai
    [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();
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 24 * A PriorityQueue holds elements on a priority heap, which orders the elements
26 * construction time. If the queue uses natural ordering, only elements that are
49 private transient E[] elements; field in class:PriorityQueue
87 elements = newElementArray(initialCapacity);
92 * Constructs a priority queue that contains the elements of a collection.
95 * elements.
98 * the collection whose elements will be added to the priority
101 * if any of the elements in the collection are not comparable.
103 * if any of the elements in the collection are null
    [all...]
  /external/chromium/third_party/icu/source/common/
uvector.cpp 32 elements(0),
42 elements(0),
52 elements(0),
62 elements(0),
77 elements = (UHashTok *)uprv_malloc(sizeof(UHashTok)*initialCapacity);
78 if (elements == 0) {
87 uprv_free(elements);
88 elements = 0;
100 if (elements[i].pointer != 0 && deleter != 0) {
101 (*deleter)(elements[i].pointer)
    [all...]
uvectr32.cpp 30 elements(NULL)
39 elements(0)
54 elements = (int32_t *)uprv_malloc(sizeof(int32_t)*initialCapacity);
55 if (elements == 0) {
63 uprv_free(elements);
64 elements = 0;
74 elements[i] = other.elements[i];
84 if (elements[i] != other.elements[i])
    [all...]
  /external/icu4c/common/
uvector.cpp 32 elements(0),
42 elements(0),
52 elements(0),
62 elements(0),
77 elements = (UHashTok *)uprv_malloc(sizeof(UHashTok)*initialCapacity);
78 if (elements == 0) {
87 uprv_free(elements);
88 elements = 0;
100 if (elements[i].pointer != 0 && deleter != 0) {
101 (*deleter)(elements[i].pointer)
    [all...]
uvectr32.cpp 30 elements(NULL)
39 elements(0)
54 elements = (int32_t *)uprv_malloc(sizeof(int32_t)*initialCapacity);
55 if (elements == 0) {
63 uprv_free(elements);
64 elements = 0;
74 elements[i] = other.elements[i];
84 if (elements[i] != other.elements[i])
    [all...]
uvectr64.cpp 27 elements(NULL)
36 elements(0)
51 elements = (int64_t *)uprv_malloc(sizeof(int64_t)*initialCapacity);
52 if (elements == 0) {
60 uprv_free(elements);
61 elements = 0;
71 elements[i] = other.elements[i];
81 if (elements[i] != other.elements[i])
    [all...]
  /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...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/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...]
  /packages/apps/Tag/src/com/android/apps/tag/message/
NdefMessageParser.java 52 List<ParsedNdefRecord> elements = new ArrayList<ParsedNdefRecord>(); local
55 elements.add(UriRecord.parse(record));
57 elements.add(TextRecord.parse(record));
59 elements.add(SmartPoster.parse(record));
61 elements.add(ImageRecord.parse(record));
63 elements.add(VCardRecord.parse(record));
65 elements.add(MimeRecord.parse(record));
67 elements.add(new UnknownRecord());
70 return elements;
  /dalvik/vm/native/
java_lang_Throwable.c 48 ArrayObject* elements = NULL; local
55 elements = dvmGetStackTrace(stackState);
56 RETURN_PTR(elements);
  /external/libffi/testsuite/libffi.call/
pyobjc-tc.c 50 point_type.elements = malloc(3 * sizeof(ffi_type*));
51 point_type.elements[0] = &ffi_type_float;
52 point_type.elements[1] = &ffi_type_float;
53 point_type.elements[2] = NULL;
58 size_type.elements = malloc(3 * sizeof(ffi_type*));
59 size_type.elements[0] = &ffi_type_float;
60 size_type.elements[1] = &ffi_type_float;
61 size_type.elements[2] = NULL;
66 rect_type.elements = malloc(3 * sizeof(ffi_type*));
67 rect_type.elements[0] = &point_type
    [all...]
  /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
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
AclEnumerator.java 33 u1 = hashtable.elements();
34 u2 = hashtable2.elements();
35 g1 = hashtable1.elements();
36 g2 = hashtable3.elements();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
IViewRule.java 133 IDragElement[] elements);
142 IDragElement[] elements,
164 IDragElement[] elements,
171 IDragElement[] elements,

Completed in 427 milliseconds

1 2 3 4 5 6 7 8 91011>>