HomeSort by relevance Sort by last modified time
    Searched full:elements (Results 451 - 475 of 5422) sorted by null

<<11121314151617181920>>

  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_map.h 148 * @brief Default constructor creates no elements.
154 * @brief Creates a %map with no elements.
190 * Create a %map consisting of copies of the elements in the
207 * Create a %map consisting of copies of the elements from [first,last).
223 * Create a %map consisting of copies of the elements from [first,last).
238 * The dtor only erases the elements, and note that if the elements
247 * All the elements of @a x are copied, but unlike the copy constructor,
278 * This function fills a %map with copies of the elements in the
283 * of elements assigned. Old data may be lost
    [all...]
  /external/chromium/third_party/libevent/compat/sys/
queue.h 43 * A singly-linked list is headed by a single forward pointer. The elements
45 * the expense of O(n) removal for arbitrary elements. New elements can be
47 * Elements being removed from the head of the list should use the explicit
54 * pointers for a hash table header). The elements are doubly linked
56 * traverse the list. New elements can be added to the list before
61 * list and the other to the tail of the list. The elements are singly
62 * linked to save space, so elements can only be removed from the
63 * head of the list. New elements can be added to the list before or after
68 * list and the other to the tail of the list. The elements are doubl
    [all...]
  /external/collada/include/dae/
daeDatabase.h 185 * Lookup elements by ID, searching through all documents.
187 * @return The array of matching elements.
200 * Lookup elements by type ID.
203 * @return The array of matching elements.
208 * Same as the previous method, but returns the array of matching elements via a
211 * @param matchingElements The array of matching elements.
219 * Lookup elements by type ID.
221 * @return The array of matching elements.
231 * Same as the previous method, but returns the array of matching elements via a
233 * @param matchingElements The array of matching elements
    [all...]
  /external/gtest/include/gtest/
gtest-param-test.h.pump 201 // Elements in the resulting sequences will also have that type.
203 // to contain any elements.
221 // - returns a generator producing sequences with elements from
224 // - returns a generator producing sequences with elements from
227 // - returns a generator producing sequences with elements from
298 // - returns a generator producing sequences with elements v1, v2, ..., vN.
327 // - returns a generator producing sequences with elements {false, true}.
349 // values of a Cartesian product of those sequences' elements.
353 // - returns a generator producing sequences with elements coming from
354 // the Cartesian product of elements from the sequences generated b
    [all...]
  /external/guava/src/com/google/common/collect/
Multisets.java 177 * elements.
294 final Iterator<E> elements = delegate.iterator();
297 return elements.hasNext();
300 return immutableEntry(elements.next(), 1);
303 elements.remove();
314 * Returns the expected number of distinct elements given the specified
315 * elements. The number of distinct elements is only computed if {@code
316 * elements} is an instance of {@code Multiset}; otherwise the default value
319 static int inferDistinctElements(Iterable<?> elements) {
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h.pump 201 // Elements in the resulting sequences will also have that type.
203 // to contain any elements.
221 // - returns a generator producing sequences with elements from
224 // - returns a generator producing sequences with elements from
227 // - returns a generator producing sequences with elements from
298 // - returns a generator producing sequences with elements v1, v2, ..., vN.
327 // - returns a generator producing sequences with elements {false, true}.
349 // values of a Cartesian product of those sequences' elements.
353 // - returns a generator producing sequences with elements coming from
354 // the Cartesian product of elements from the sequences generated b
    [all...]
  /frameworks/base/docs/html/guide/topics/ui/
layout-objects.jd 29 All child elements of the FrameLayout are pinned to the top left corner of the screen; you cannot
70 <p>The following two forms represent a {@link android.widget.LinearLayout LinearLayout} with a set of elements: a
72 elements are set to <var>wrap_content</var>. The gravity, by default, is left.
83 elements in a form shouldn't have to jump up and down to read element text in
84 neighboring elements. This can be turned off by setting
150 align two elements by right border, or make one below another, centered in
151 the screen, centered left, and so on. Elements are rendered in the order given, so if the first element
152 is centered in the screen, other elements aligning themselves to that element
157 Note that the attributes that refer to relative elements (e.g., <var>layout_toLeft</var>)
205 for all the elements in this screen, because all elements are children of a RelativeLayou
    [all...]
  /external/mesa3d/src/glsl/
glsl_types.cpp 26 #include "main/core.h" /* for Elements */
118 Elements(builtin_core_types),
121 Elements(builtin_structure_types),
132 Elements(builtin_110_types),
135 Elements(builtin_110_deprecated_structure_types),
146 Elements(builtin_120_types), false);
156 Elements(builtin_130_types), false);
166 Elements(builtin_ARB_texture_rectangle_types),
176 Elements(builtin_EXT_texture_array_types),
glsl_types.h 111 unsigned vector_elements:3; /**< 1, 2, 3, or 4 vector elements. */
125 * \c GLSL_TYPE_STRUCT, it is the number of elements in the structure and
134 const struct glsl_type *array; /**< Type of array elements. */
179 * Query the type of elements in an array
182 * Pointer to the type of elements in the array for array types, or \c NULL
200 unsigned elements);
374 * Query the number of elements in an array type
377 * The number of elements in the array for array types or -1 for non-array
378 * types. If the number of elements in the array has not yet been declared,
  /external/v8/src/
frame-element.h 39 // Virtual frame elements
41 // The internal elements of the virtual frames. There are several kinds of
42 // elements:
43 // * Invalid: elements that are uninitialized or not actually part
58 // Copied elements do not have type info. Instead
65 // Copied elements do not have type info. Instead
168 // The elements are equal if they agree exactly except on copied field.
211 // Used to construct memory and register elements.
223 // Used to construct constant elements.
  /external/valgrind/main/include/
pub_tool_xarray.h 36 // in which elements can be added at the end. The array is expanded
50 for elements of the specified size. Alloc fn must not fail (that
76 Probably not a stable sort w.r.t. equal elements module cmpFn. */
99 /* How elements are there in this XArray now? */
111 /* Drop the last n elements of an XArray. Bombs if there are less
112 than n elements in the array. This is an O(1) operation. */
115 /* Drop the first n elements of an XArray. Bombs if there are less
116 than n elements in the array. This is an O(N) operation, where N
117 is the number of elements remaining in the XArray. */
pub_tool_seqmatch.h 37 include '*' elements (matches any number of anything) and '?'
38 elements (matches exactly one element). '*' patterns are matched
43 number of '*' elements in the pattern. There is no guard against
56 elements each of size 'szbPatt'. For the initial call, pass a
71 that all the input sequence elements are literal).
  /frameworks/base/docs/html/guide/topics/manifest/
supports-gl-texture-element.jd 24 style="color:#669999;">&lt;supports-gl-texture&gt;</code> elements</p>
32 Android Market uses <code>&lt;supports-gl-texture&gt;</code> elements as
52 <code>&lt;supports-gl-texture&gt;</code> elements. For example:</p>
57 <p>Declared <code>&lt;supports-gl-texture&gt;</code> elements are informational,
58 meaning that the Android system itself does not examine the elements at install
162 <code>&lt;supports-gl-texture&gt;</code> elements in its manifest <br/>with...</li>
169 <code>&lt;supports-gl-texture&gt;</code> elements. It extracts the
170 format descriptors from the elements and stores them internally as
185 <p>If an application does not declare any <code>&lt;supports-gl-texture&gt;</code> elements,
  /bootable/recovery/minzip/
Hash.h 6 * When the number of elements reaches 3/4 of the table's capacity, the
73 * elements the table will hold, pass the result from mzHashSize() in.)
80 * Compute the capacity needed for a table to hold "size" elements. Use
81 * this when you know ahead of time how many elements the table will hold.
83 * all elements without needing to reallocate the table.
  /dalvik/vm/
Hash.h 19 * When the number of elements reaches a certain percentage of the table's
86 * elements the table will hold, pass the result from dvmHashSize() in.)
93 * Compute the capacity needed for a table to hold "size" elements. Use
94 * this when you know ahead of time how many elements the table will hold.
96 * all elements without needing to reallocate the table.
  /external/collada/include/1.4/dom/
domAnimation_clip.h 59 protected: // Elements
127 * @return Returns a reference to the array of instance_animation elements.
132 * @return Returns a constant reference to the array of instance_animation elements.
137 * @return Returns a reference to the array of extra elements.
142 * @return Returns a constant reference to the array of extra elements.
domLines.h 52 protected: // Elements
103 * @return Returns a reference to the array of input elements.
108 * @return Returns a constant reference to the array of input elements.
118 * @return Returns a reference to the array of extra elements.
123 * @return Returns a constant reference to the array of extra elements.
domPolylist.h 122 protected: // Elements
179 * @return Returns a reference to the array of input elements.
184 * @return Returns a constant reference to the array of input elements.
199 * @return Returns a reference to the array of extra elements.
204 * @return Returns a constant reference to the array of extra elements.
  /external/svox/pico/lib/
picotrns.h 111 /** overall transduction; transduces 'inSeq' with 'inSeqLen' elements
112 to '*outSeqLen' elements in 'outSeq';
148 /* copy elements from inSeq to outSeq, ignoring elements with epsilon symbol */
152 /* copy elements from inSeq to outSeq, inserting syllable separators in some trivial way.
  /external/v8/test/cctest/
test-list.cc 57 // Add elements to the list to grow it to its capacity.
69 // Test that we can add all elements from a list to another list.
83 // Add no elements to list since other_list is empty.
90 // Add three elements to other_list.
95 // Copy the three elements from other_list to list.
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicReferenceArray.java 12 * An array of object references in which elements may be updated
18 * @param <E> The base class of elements held in this array
48 * elements initially zero.
58 * all elements copied from, the given array.
60 * @param array the array to copy elements from
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
hashtab.h 22 Elements in the table are generic pointers.
29 expanded by creation of new hash table and transferring elements from
116 /* Current number of elements including also deleted elements. */
119 /* Current number of deleted elements in the table. */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
hashtab.h 22 Elements in the table are generic pointers.
29 expanded by creation of new hash table and transferring elements from
116 /* Current number of elements including also deleted elements. */
119 /* Current number of deleted elements in the table. */
  /prebuilt/linux-x86/toolchain/arm-linux-androideabi-4.4.x/lib/gcc/arm-linux-androideabi/4.4.3/plugin/include/
hashtab.h 22 Elements in the table are generic pointers.
29 expanded by creation of new hash table and transferring elements from
116 /* Current number of elements including also deleted elements. */
119 /* Current number of deleted elements in the table. */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
OutlineDropListener.java 68 final SimpleElement[] elements; local
72 elements = (SimpleElement[]) data;
79 if (elements.length == 0) {
123 String label = MoveGesture.computeUndoLabel(targetNode, elements, event.detail);
132 BaseLayoutRule.insertAt(targetNode, elements, createNew, indexFinal);

Completed in 5041 milliseconds

<<11121314151617181920>>