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

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 523 private LinkedList<SST> elements; field in class:Subject.SecureSet
558 elements = new LinkedList<SST>();
562 // all collection elements are verified before adding
572 if (trust || !elements.contains(o)) {
573 elements.add(o);
601 if (!elements.contains(o)) {
602 elements.add(o);
617 return new SecureIterator(elements.iterator()) {
631 return new SecureIterator(elements.iterator());
645 return elements.size()
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpOptions.java 97 HeaderElement[] elements = header.getElements(); local
98 for (HeaderElement element : elements) {
  /external/guava/src/com/google/common/collect/
ForwardingList.java 51 public boolean addAll(int index, Collection<? extends E> elements) {
52 return delegate().addAll(index, elements);
Sets.java 65 * Returns an immutable set instance containing the given enum elements.
69 * order, not the order in which the elements are provided to the method.
71 * @param anElement one of the elements the set should contain
72 * @param otherElements the rest of the elements the set should contain
73 * @return an immutable set containing those elements, minus duplicates
83 * Returns an immutable set instance containing the given enum elements.
87 * order, not the order in which the elements appear in the given collection.
89 * @param elements the elements, all of the same {@code enum} type, that the
91 * @return an immutable set containing those elements, minus duplicate
    [all...]
  /external/webkit/WebCore/html/
HTMLFormElement.idl 27 readonly attribute HTMLCollection elements;
  /libcore/luni/src/main/java/java/net/
SocketPermissionCollection.java 55 public Enumeration<Permission> elements() { method in class:SocketPermissionCollection
56 return permissions.elements();
  /libcore/luni/src/main/java/java/security/
PermissionCollection.java 60 public abstract Enumeration<Permission> elements(); method in class:PermissionCollection
78 * elements can still be added to this {@code PermissionCollection}.
101 Enumeration<Permission> elenum = elements();
Policy.java 306 public Enumeration<Permission> elements() {
307 return new Permissions().elements();
384 Enumeration<Permission> elements = cds.elements(); local
385 while (elements.hasMoreElements()) {
386 permissions.add(elements.nextElement());
395 Enumeration<Permission> pdElements = pds.elements();
431 Enumeration<Permission> en = inherent.elements();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
BaseView.groovy 117 DropFeedback onDropEnter(INode targetNode, IDragElement[] elements) {
121 DropFeedback onDropMove(INode targetNode, IDragElement[] elements,
126 void onDropLeave(INode targetNode, IDragElement[] elements, DropFeedback feedback) {
130 void onDropped(INode targetNode, IDragElement[] elements, DropFeedback feedback, Point p) {
android.widget.RelativeLayout.groovy 91 DropFeedback onDropEnter(INode targetNode, IDragElement[] elements) {
93 if (elements.length == 0) {
102 // Collect the ids of the elements being dragged
103 def movedIds = collectIds([:], elements).keySet().asList();
117 drawRelativeDropFeedback(gc, node, elements, feedback);
122 IDragElement[] elements,
151 for (element in elements) {
158 // One more limitation: if we're moving one or more elements, we can't
428 IDragElement[] elements,
496 Rect be = elements[0].getBounds()
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
PermissionsTest.java 94 * elements.
99 method = "elements",
116 Enumeration<Permission> en = ps.elements();
121 en = ps.elements();
127 en = ps.elements();
137 en = ps.elements();
161 ps.elements().nextElement();
AllPermission2Test.java 166 Enumeration<Permission> perm1 = pc1.elements();
175 perm1 = pc1.elements();
181 Enumeration<Permission> perm2 = pc2.elements();
190 perm2 = pc2.elements();
  /external/webkit/WebKit/chromium/src/
WebHTTPBody.cpp 65 return m_private->elements().size();
72 if (index >= m_private->elements().size())
75 const FormDataElement& element = m_private->elements()[index];
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 64 * @param <E> the type of elements held in this collection
80 * Creates a set containing all of the elements of the specified
83 * @param c the collection of elements to initially contain
92 * Returns the number of elements in this set.
94 * @return the number of elements in this set
101 * Returns <tt>true</tt> if this set contains no elements.
103 * @return <tt>true</tt> if this set contains no elements
123 * Returns an array containing all of the elements in this set.
124 * If this set makes any guarantees as to what order its elements
126 * elements in the same order
343 Object[] elements = al.getArray(); local
    [all...]
  /external/libffi/src/
debug.c 57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);
  /external/libffi/testsuite/libffi.call/
struct3.c 33 ts3_type.elements = ts3_type_elements;
  /libcore/luni/src/test/java/tests/api/java/util/
NoSuchElementExceptionTest.java 47 v.elements().nextElement();
  /cts/tools/dex-tools/src/dex/reader/
TypeFormatter.java 91 private String format(List<?> elements, String separator) {
94 for (Object element : elements) {
  /dalvik/dx/src/junit/runner/
ClassPathTestCollector.java 24 return result.elements();
34 Enumeration e= roots.elements();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERConstructedOctetString.java 85 return generateOcts().elements();
88 return octs.elements();
  /external/junit/src/junit/runner/
ClassPathTestCollector.java 27 return result.elements();
37 Enumeration e= roots.elements();
  /external/v8/src/
jump-target.cc 75 // A list of pointers to frame elements in the entry frame. NULL
78 ZoneList<FrameElement*> elements(length);
80 // Initially populate the list of elements based on the initial
87 elements.Add(NULL);
91 elements.Add(&initial_frame->elements_[i]);
94 // Compute elements based on the other reaching frames.
97 FrameElement* element = elements[i];
100 // change our decision about undetermined or invalid elements.
115 elements[i] = element;
119 // Build the new frame. A freshly allocated frame has memory elements
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
PredicatesTest.java 68 private static <E> ArrayList<E> newArrayList(E... elements) {
70 Collections.addAll(list, elements);
  /frameworks/base/test-runner/src/junit/runner/
ClassPathTestCollector.java 25 return result.elements();
35 Enumeration e= roots.elements();
  /libcore/junit/src/test/java/junit/runner/
ClassPathTestCollector.java 24 return result.elements();
34 Enumeration e= roots.elements();

Completed in 964 milliseconds

1 2 34 5 6 7 8 91011>>