/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
slice_array.h | 51 * of the subset. The size is the total number of elements in the subset. 56 * and stride 2, the subset consists of array elements 1, 3, and 5. 68 * @param d Number of elements in slice. 69 * @param s Stride between array elements. 111 * A slice_array is a reference to the actual elements of an array 114 * carrying operations out on the referenced subset of elements in the 116 * to the subset of elements in the underlying valarray this slice_array 133 /// Assignment operator. Assigns slice elements to corresponding 134 /// elements of @a a. 137 /// Assign slice elements to corresponding elements of @a v [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
slice_array.h | 51 * of the subset. The size is the total number of elements in the subset. 56 * and stride 2, the subset consists of array elements 1, 3, and 5. 68 * @param d Number of elements in slice. 69 * @param s Stride between array elements. 111 * A slice_array is a reference to the actual elements of an array 114 * carrying operations out on the referenced subset of elements in the 116 * to the subset of elements in the underlying valarray this slice_array 133 /// Assignment operator. Assigns slice elements to corresponding 134 /// elements of @a a. 137 /// Assign slice elements to corresponding elements of @a v [all...] |
/external/guava/src/com/google/common/collect/ |
Lists.java | 71 * elements. 73 * <p><b>Note:</b> if mutability is not required and the elements are 76 * @param elements the elements that the list should contain, in order 77 * @return a new {@code ArrayList} containing those elements 80 public static <E> ArrayList<E> newArrayList(E... elements) { 81 checkNotNull(elements); // for GWT 83 int capacity = computeArrayListCapacity(elements.length); 85 Collections.addAll(list, elements); 98 * elements [all...] |
ObjectArrays.java | 62 * @param first the first array of elements to concatenate 63 * @param second the second array of elements to concatenate 78 * @param array the array of elements to append 81 * elements of {@code array} occupying the remaining elements. 93 * @param array the array of elements to prepend 114 * Returns an array containing all of the elements in the specified 121 * the array has more elements than the collection), the element in the array 124 * caller knows that the collection does not contain any null elements. 126 * <p>This method returns the elements in the order they are returned by th [all...] |
ImmutableMultiset.java | 35 * An immutable hash-based multiset. Does not permit null elements. 37 * <p>Its iterator orders elements according to the first appearance of the 60 * Returns an immutable multiset containing the given elements. 64 * elements in the order {@code 2, 3, 3, 1}. 66 * @throws NullPointerException if any of {@code elements} is null 68 public static <E> ImmutableMultiset<E> of(E... elements) { 69 return copyOf(Arrays.asList(elements)); 73 * Returns an immutable multiset containing the given elements. 77 * a multiset with elements in the order {@code 2, 3, 3, 1}. 86 * <p><b>Note:</b> Despite what the method name suggests, if {@code elements} [all...] |
LinkedHashMultiset.java | 29 * iterator orders elements according to when the first occurrence of the 53 * number of distinct elements. 55 * @param distinctElements the expected number of distinct elements 63 * Creates a new {@code LinkedHashMultiset} containing the specified elements. 65 * @param elements the elements that the multiset should contain 68 Iterable<? extends E> elements) { 70 create(Multisets.inferDistinctElements(elements)); 71 Iterables.addAll(multiset, elements); 85 * @serialData the number of distinct elements, the first element, its count [all...] |
/hardware/invensense/mlsdk/mllite/ |
mlFIFO.h | 34 /* Elements */ 87 inv_error_t inv_send_gyro(uint_fast16_t elements, uint_fast16_t accuracy); 88 inv_error_t inv_send_accel(uint_fast16_t elements, uint_fast16_t accuracy); 89 inv_error_t inv_send_linear_accel(uint_fast16_t elements, 91 inv_error_t inv_send_linear_accel_in_world(uint_fast16_t elements, 93 inv_error_t inv_send_cntrl_data(uint_fast16_t elements, 95 inv_error_t inv_send_sensor_data(uint_fast16_t elements, 97 inv_error_t inv_send_external_sensor_data(uint_fast16_t elements, 99 inv_error_t inv_send_gravity(uint_fast16_t elements, 102 inv_error_t inv_send_quantized_accel(uint_fast16_t elements, [all...] |
/libcore/luni/src/main/java/java/util/ |
Set.java | 22 * A {@code Set} is a data structure which does not allow duplicate elements. 61 * Removes all elements from this set, leaving it empty. 86 * elements of this set, {@code false} otherwise. 94 * elements. 115 * Returns true if this set has no elements. 117 * @return {@code true} if this set has no elements, {@code false} 124 * Returns an iterator on the elements of this set. The elements are 127 * @return an iterator on the elements of this set. 167 * Returns the number of elements in this set [all...] |
/external/collada/include/1.4/dom/ |
domConvex_mesh.h | 48 protected: // Elements 63 * Used to preserve order in elements that do not specify strict sequencing of sub-elements. 67 * Used to preserve order in elements that have a complex content model. 101 * @return Returns a reference to the array of source elements. 106 * @return Returns a constant reference to the array of source elements. 116 * @return Returns a reference to the array of lines elements. 121 * @return Returns a constant reference to the array of lines elements. 126 * @return Returns a reference to the array of linestrips elements. 131 * @return Returns a constant reference to the array of linestrips elements [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 58 * @param <E> the type of elements held in this collection 74 * Creates a set containing all of the elements of the specified 77 * @param c the collection of elements to initially contain 86 * Returns the number of elements in this set. 88 * @return the number of elements in this set 95 * Returns <tt>true</tt> if this set contains no elements. 97 * @return <tt>true</tt> if this set contains no elements 117 * Returns an array containing all of the elements in this set. 118 * If this set makes any guarantees as to what order its elements 120 * elements in the same order 337 Object[] elements = al.getArray(); local [all...] |
/external/clang/test/Sema/ |
altivec-init.c | 10 b = (v4)(5, 6, 7, 8, 9); // expected-warning {{excess elements in vector initializer}} 15 vi = (vector int)(1, 2); // expected-error {{number of elements must be either one or match the size of the vector}} 17 vi = (vector int)(1, 2, 3, 4, 5); // expected-warning {{excess elements in vector initializer}} 20 vi = (vector int){1, 2, 3, 4, 5}; // expected-warning {{excess elements in vector initializer}}
|
/external/clang/test/SemaCXX/ |
array-bound-merge.cpp | 9 int c[] = {1,2}; // expected-error {{excess elements in array initializer}}
|
/external/llvm/test/FrontendC/ |
2008-08-07-AlignPadding2.c | 3 The FE must not generate padding here between array elements. PR 2533. */
|
/external/webkit/LayoutTests/fast/dom/HTMLLinkElement/ |
prefetch-onerror-expected.txt | 1 This tests that onerror events can be attached to link elements with rel=prefetch. Since prefetch links are just there as a performance optimization, the onerror/onload event is their only programatic side-effect.
|
prefetch-onload-expected.txt | 1 This tests that onload events can be attached to link elements with rel=prefetch. Since prefetch links are just there as a performance optimization, the onload event is their only programatic side-effect.
|
/external/webkit/LayoutTests/fast/encoding/ |
namespace-tolerance-expected.txt | 2 (1) use namespace prefixes on HTML elements
|
quotes-in-title-expected.txt | 2 This test checks whether charset sniffer skips over quoted elements in a title tag correctly. Tests a bug in the charset sniffer that would consume all characters after the bracket in the quoted text until the next closing bracket, causing the closing title tag to be missed.
|
/external/webkit/Source/WebCore/manual-tests/ |
form-element-spelling.html | 4 <p>Test that it's possible to do spell-checking in the two elements above. Choose "Check Spelling" or "Spelling..." from the contextual menu and verify that both work.</p>
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
FrameLayoutRule.java | 54 final IDragElement[] elements) { 55 if (elements.length == 0) { 61 drawFeedback(gc, node, elements, feedback); 69 IDragElement[] elements, 86 Rect be = elements[0].getBounds(); 91 // for all dropped elements with valid bounds, offset at 93 for (IDragElement it : elements) { 102 // We don't have bounds for new elements. In this case 115 public DropFeedback onDropMove(INode targetNode, IDragElement[] elements, 123 public void onDropLeave(INode targetNode, IDragElement[] elements, DropFeedback feedback) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/ |
AndroidTypeMoveChange.java | 36 * @param elements the elements 41 IDocument document, Map<String, String> elements, String newName, String oldName) { 42 super(androidManifest, manager, document, elements, newName, oldName);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
valarray | 96 * Classes and functions for representing and manipulating arrays of elements. 127 /// Construct an array with @a n elements. 130 /// Construct an array with @a n elements initialized to @a t. 133 /// Construct an array initialized to the first @a n elements of @a t. 163 * @brief Assign elements to an array. 165 * Assign elements of array to values in @a v. Results are undefined 173 * @brief Assign elements to a value. 175 * Assign all elements of array to @a t. 177 * @param t Value for elements. 182 * @brief Assign elements to an array subset [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ |
valarray | 96 * Classes and functions for representing and manipulating arrays of elements. 127 /// Construct an array with @a n elements. 130 /// Construct an array with @a n elements initialized to @a t. 133 /// Construct an array initialized to the first @a n elements of @a t. 163 * @brief Assign elements to an array. 165 * Assign elements of array to values in @a v. Results are undefined 173 * @brief Assign elements to a value. 175 * Assign all elements of array to @a t. 177 * @param t Value for elements. 182 * @brief Assign elements to an array subset [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ |
valarray | 96 * Classes and functions for representing and manipulating arrays of elements. 127 /// Construct an array with @a n elements. 130 /// Construct an array with @a n elements initialized to @a t. 133 /// Construct an array initialized to the first @a n elements of @a t. 163 * @brief Assign elements to an array. 165 * Assign elements of array to values in @a v. Results are undefined 173 * @brief Assign elements to a value. 175 * Assign all elements of array to @a t. 177 * @param t Value for elements. 182 * @brief Assign elements to an array subset [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);
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
ArrayMemberValue.java | 45 * @param t the type of the array elements. 58 "no array elements found: " + method.getName()); 87 * Obtains the type of the elements. 96 * Obtains the elements of the array. 103 * Sets the elements of the array. 105 public void setValue(MemberValue[] elements) { 106 values = elements; 107 if (elements != null && elements.length > 0) 108 type = elements[0] [all...] |