/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListListIteratorTester.java | 82 @Override protected void verify(List<E> elements) { 83 expectContents(elements);
|
ListRemoveAllTester.java | 42 collection = getSubjectGenerator().create(arrayAndDuplicate.elements);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ImmutableListTest.java | 93 @Override protected List<String> create(String[] elements) { 95 ImmutableList.copyOf(elements)); 432 elements(), method 437 elements(), method 442 elements(), method 447 elements(), method 452 elements(1), 457 elements(1), 462 elements(1, 2), 467 elements(1, 2) 487 private static ImmutableList<Integer> elements(Integer... elements) { method in class:ImmutableListTest.ConcurrentTests [all...] |
/external/libffi/src/ |
prep_cif.c | 42 FFI_ASSERT(arg->elements != NULL); 46 ptr = &(arg->elements[0]); 81 /* The CRIS ABI specifies structure elements to have byte
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLCollection10.js | 81 on those elements that are allowed a name attribute. 84 the elements attribute. The first SELECT element is further retrieved 85 using the elements name attribute since the id attribute doesn't match. 109 formsnodeList = testNode.elements;
|
HTMLCollection11.js | 81 on those elements that are allowed a name attribute. 84 the elements attribute. The first SELECT element is further retrieved 85 using the elements id attribute. 109 formsnodeList = testNode.elements;
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLCollection10.js | 81 on those elements that are allowed a name attribute. 84 the elements attribute. The first SELECT element is further retrieved 85 using the elements name attribute since the id attribute doesn't match. 109 formsnodeList = testNode.elements;
|
HTMLCollection11.js | 81 on those elements that are allowed a name attribute. 84 the elements attribute. The first SELECT element is further retrieved 85 using the elements id attribute. 109 formsnodeList = testNode.elements;
|
/external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/ |
css-properties-case-sensitive.js | 2 'This test checks that access to CSS properties via JavaScript properties on DOM elements is case sensitive.'
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/ |
AndroidTypeRenameChange.java | 47 * @param elements the elements 52 IDocument document, Map<String, String> elements, String newName, String oldName) { 55 this.mElements = elements;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
GridLayoutRule.java | 76 * <li>Avoid setting row and column numbers on the actual elements if they can be skipped 279 @Nullable IDragElement[] elements) { 281 IFeedbackPainter painter = GridLayoutPainter.createDropFeedbackPainter(this, elements); 286 public DropFeedback onDropMove(@NonNull INode targetNode, @NonNull IDragElement[] elements, 300 public void onDropped(final @NonNull INode targetNode, final @NonNull IDragElement[] elements, 316 // Collect IDs from dropped elements and remap them to new IDs 318 Map<String, Pair<String, String>> idMap = getDropIdMap(targetNode, elements, 321 for (IDragElement element : elements) { 560 * <li> Preserve the current positions of the elements (if pasted from another 563 * existing elements [all...] |
BaseLayoutRule.java | 257 @NonNull IDragElement[] elements) { 258 DropFeedback feedback = onDropEnter(targetNode, targetView, elements); 261 feedback = onDropMove(targetNode, elements, feedback, p); 263 onDropLeave(targetNode, elements, feedback); 264 onDropped(targetNode, elements, feedback, p); 280 * @param elements the elements being pasted 283 IDragElement[] elements) { 284 DropFeedback feedback = onDropEnter(parentNode, parentView, elements); 292 feedback = onDropMove(parentNode, elements, feedback, targetP) [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Lists.java | 79 * elements. 81 * <p><b>Note:</b> if mutability is not required and the elements are 85 * @param elements the elements that the list should contain, in order 86 * @return a new {@code ArrayList} containing those elements 89 public static <E> ArrayList<E> newArrayList(E... elements) { 90 checkNotNull(elements); // for GWT 92 int capacity = computeArrayListCapacity(elements.length); 94 Collections.addAll(list, elements); 107 * elements [all...] |
ImmutableSortedMultisetFauxverideShim.java | 143 * Comparable} elements.</b> Proper calls will resolve to the version in {@code 151 public static <E> ImmutableSortedMultiset<E> copyOf(E[] elements) { 165 * The result is that ImmutableSortedMultiset.copyOf() may be called on non-Comparable elements.
|
ImmutableSortedSetFauxverideShim.java | 138 * non-{@code Comparable} elements.</b> Proper calls will resolve to the 145 @Deprecated public static <E> ImmutableSortedSet<E> copyOf(E[] elements) { 162 * non-Comparable elements. We have not discovered a better solution. In
|
Multiset.java | 31 * may have duplicate elements. A multiset is also sometimes called a 34 * <p>Elements of a multiset that are equal to one another (see "Note on 51 * #elementSet} contains the distinct elements of the multiset "with duplicates 60 * given initial elements. This is simply a refinement of {@code Collection}'s 122 * implementation does not permit null elements. Note that if {@code 152 * implementation does not permit null elements. Note that if {@code 173 * implementation does not permit null elements. Note that if {@code 182 * Returns the set of distinct elements contained in this multiset. The 184 * either is immediately reflected in the other. The order of the elements in 193 * elements in the multiset: {@code elementSet().size()} [all...] |
/external/v8/src/ |
array.js | 73 var elements = new InternalArray(keys.length * 2); 80 elements[i * 2] = key; 81 elements[i * 2 + 1] = e; 85 return %SparseJoinWithSeparator(elements, len, separator); 95 var elements = new InternalArray(keys_length); 103 elements[elements_length++] = e; 107 return %StringBuilderConcat(elements, elements_length, ''); 130 // Attempt to convert the elements. 147 // Construct an array for the elements. 148 var elements = new InternalArray(length) [all...] |
/cts/tools/dasm/src/java_cup/ |
terminal.java | 60 /** Table of all terminals. Elements are stored using name strings as 66 public static Enumeration all() {return _all.elements();};
|
/dalvik/tools/ |
dex-preopt | 50 # of bootstrap classpath elements, colon-separated. Order is significant 289 # Split the boot classpath into separate elements and iterate over them, 291 elements=`echo "${BOOTCLASSPATH}" | sed 's/:/ /g'` 293 for inputFile in $elements; do
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3rewritestreams.h | 42 /// A generic list of elements tracked in an alternative to be used in 52 /// Once you start next()ing, do not try to add more elements. It will 66 /// which bumps it to 1 meaning no more elements. 70 /// Track single elements w/o creating a list. Upon 2nd add, alloc list 76 pANTLR3_VECTOR elements; member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct 106 /// not consumed any of its elements. Elements themselves are untouched. 114 /// Return the next element in the stream. If out of elements, throw 115 /// an exception unless size()==1. If size is 1, then return elements[0]. 148 /// Number of elements available in the strea [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
SecureClassLoader2Test.java | 55 Enumeration e1 = pc.elements();
|
/external/apache-http/src/org/apache/http/message/ |
BasicHeaderValueParser.java | 47 * Basic implementation for parsing header values into elements. 85 * Parses elements with the given parser. 90 * @return array holding the header elements, never <code>null</code> 123 List elements = new ArrayList(); local 127 elements.add(element); 131 elements.toArray(new HeaderElement[elements.size()]);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/ |
ECNamedCurveTable.java | 113 return v.elements();
|
/external/dbus/dbus/ |
dbus-mempool.c | 57 * We just cast freed elements to this so we can 66 * The dummy size of the variable-length "elements" 88 /* this is a long so that "elements" is aligned */ 89 long used_so_far; /**< bytes of this block already allocated as elements. */ 91 unsigned char elements[ELEMENT_PADDING]; /**< the block data, actually allocated to required size */ member in struct:DBusMemBlock 101 unsigned int zero_elements : 1; /**< whether to zero-init allocated elements */ 103 DBusFreedElement *free_elements; /**< a free list of elements to recycle */ 105 int allocated_elements; /**< Count of outstanding allocated elements */ 133 * @param zero_elements whether to zero-initialize elements 179 * Frees a memory pool (and all elements allocated from it) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractMapTester.java | 60 protected void expectMissingKeys(K... elements) { 61 for (K element : elements) { 67 protected void expectMissingValues(V... elements) { 68 for (V element : elements) {
|