HomeSort by relevance Sort by last modified time
    Searched refs:elements (Results 251 - 275 of 466) sorted by null

<<111213141516171819

  /cts/tools/dasm/src/java_cup/
lalr_item_set.java 51 /** Access to all elements of the set. */
52 public Enumeration all() {return _all.elements();}
338 /* hash together codes from at most first 5 elements */
  /external/apache-http/src/org/apache/commons/logging/
LogFactory.java 724 Enumeration elements = factories.elements(); local
725 while (elements.hasMoreElements()) {
726 LogFactory element = (LogFactory) elements.nextElement();
    [all...]
  /external/jhead/
jhead.h 70 // This structure stores Exif header image elements in a simple manner
157 int DataLength; // Number of elements in Format. -1 means any length.
179 void create_EXIF(ExifElement_t* elements, int exifTagCount, int gpsTagCount);
  /external/junit/src/junit/swingui/
TestTreeModel.java 76 Enumeration e= fModelListeners.elements();
  /external/libffi/testsuite/libffi.call/
cls_24byte.c 75 cls_struct_type.elements = cls_struct_fields;
cls_64byte.c 80 cls_struct_type.elements = cls_struct_fields;
cls_6_1_byte.c 74 cls_struct_type.elements = cls_struct_fields;
cls_7_1_byte.c 76 cls_struct_type.elements = cls_struct_fields;
  /external/v8/test/mjsunit/
array-unshift.js 41 // feeling the holes with elements from the prototype
80 // Now check the case with array of holes and some elements on prototype.
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.h 138 const PlatformPathElements& elements() const { return m_elements; } function in class:WebCore::PlatformPath
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 243 int elements = dst.remaining(); local
255 long bufferSize = (long)elements << shift;
279 int elements = src.remaining(); local
291 long bufferBytes = (long)elements << shift;
810 * @param stride number of elements in pixels[] between each logical row
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 749 N = this->elements.size();
751 this->elements[i]->GatherTypes(types);
799 N = this->elements.size();
801 this->elements[i]->Write(to);
  /libcore/luni/src/main/java/java/security/
BasicPermissionCollection.java 95 * Returns enumeration of contained elements.
98 public Enumeration<Permission> elements() { method in class:BasicPermissionCollection
UnresolvedPermissionCollection.java 39 * Contained elements are grouped by their target type.
48 // elements of the collection.
81 public Enumeration elements() { method in class:UnresolvedPermissionCollection
166 * Reads the object from stream and checks elements grouping for validity.
  /libcore/luni/src/main/java/java/sql/
DriverManager.java 271 * Create the Enumeration by building a Vector from the elements of
283 return theVector.elements();
  /libcore/luni/src/main/java/java/util/
LinkedList.java 28 * All optional operations including adding, removing, and replacing elements are supported.
30 * <p>All elements are permitted, including null.
34 * ability to scale to slightly larger numbers of elements. In general, though, you should
253 * elements contained in the specified {@code collection}. The order of the
254 * elements in this new {@code LinkedList} will be determined by the
258 * the collection of elements to add.
351 Collection<? extends E> elements = (collection == this) ? local
365 for (E e : elements) {
391 Collection<? extends E> elements = (collection == this) ? local
395 for (E e : elements) {
    [all...]
  /libcore/luni/src/main/java/org/apache/xalan/templates/
TemplateList.java 130 * Dump all patterns and elements that match those patterns
136 Enumeration associations = m_patternTable.elements();
184 Enumeration associations = m_patternTable.elements();
763 * that are macro elements in the XSL DOM tree.
771 * This table is keyed on the target elements
798 * that are template elements.
812 * that are template elements in the XSL DOM tree.
870 hashIterator = m_patternTable.elements();
900 hashIterator = m_namedTemplates.elements();
  /libcore/luni/src/test/java/com/google/coretests/
CoreTestSuite.java 343 return fTests.elements();
  /libcore/luni/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_Connection1.java 196 public Array createArrayOf(String typeName, Object[] elements)
  /libcore/luni/src/test/java/tests/api/java/util/
PropertyPermissionTest.java 164 Enumeration elementEnum = pc.elements();
  /packages/apps/Browser/src/com/android/browser/
WebsiteSettingsActivity.java 247 Set<Map.Entry<String, Site>> elements = sites.entrySet(); local
248 Iterator<Map.Entry<String, Site>> originIter = elements.iterator();
314 Set<Map.Entry<String, Site>> elements = sites.entrySet(); local
315 Iterator<Map.Entry<String, Site>> entryIterator = elements.iterator();
  /system/core/nexus/
WifiController.cpp 658 int elements) :
659 IntegerProperty(name, ro, elements) {
665 bool ro, int elements) :
666 StringProperty(name, ro, elements) {
  /external/guava/src/com/google/common/collect/
ConcurrentHashMultiset.java 41 * elements are not supported.
79 * elements, using the default initial capacity, load factor, and concurrency
82 * @param elements the elements that the multiset should contain
85 Iterable<? extends E> elements) {
87 Iterables.addAll(multiset, elements);
92 * Creates an instance using {@code countMap} to store elements and their
98 * @param countMap backing map for storing the elements in the multiset and
468 * @serialData the number of distinct elements, the first element, its count,
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 297 Collections.list(initPC.elements()));
299 Collections.list(dserPC.elements()));
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
VectorTest.java 120 assertTrue("Vector does not contain correct elements", myVector
171 assertTrue("Failed to add all elements",
221 assertTrue("Failed to add all elements", tVector.equals(v));
226 assertTrue("Failed to add elements correctly", v.get(counter) == v
297 Enumeration e = orgVector.elements();
299 assertTrue("a) Cleared vector contained elements", !tVector
305 e = orgVector.elements();
307 assertTrue("b) Cleared vector contained elements", !tVector
319 Enumeration orgNum = tVector.elements();
320 Enumeration cnum = v.elements();
    [all...]

Completed in 934 milliseconds

<<111213141516171819