HomeSort by relevance Sort by last modified time
    Searched refs:elements (Results 426 - 450 of 1619) sorted by null

<<11121314151617181920>>

  /external/chromium_org/mojo/system/
core_impl.h 64 const void* elements,
74 void* elements,
  /external/chromium_org/ppapi/api/dev/
ppb_alarms_dev.idl 54 [size_is(count)] PP_Alarms_Alarm_Dev[] elements;
  /external/chromium_org/ppapi/shared_impl/
dictionary_var.cc 86 array_var->elements().reserve(key_value_map_.size());
90 array_var->elements().push_back(
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.idl 32 readonly attribute HTMLCollection elements;
  /external/chromium_org/ui/keyboard/resources/
constants.js 21 // TODO(bshe): The number of rows should equal to the number of kb-row elements
  /external/chromium_org/ui/keyboard/resources/webui/
constants.js 22 // TODO(bshe): The number of rows should equal to the number of kb-row elements
  /external/chromium_org/v8/test/mjsunit/
allocation-site-info.js 53 fast_smi_only : 'fast smi only elements',
54 fast : 'fast elements',
55 fast_double : 'fast double elements',
56 dictionary : 'dictionary elements',
57 external_byte : 'external byte elements',
58 external_unsigned_byte : 'external unsigned byte elements',
59 external_short : 'external short elements',
60 external_unsigned_short : 'external unsigned short elements',
61 external_int : 'external int elements',
62 external_unsigned_int : 'external unsigned int elements',
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FetchValidator.java 33 //Elements to check for post fetch (use name of project in dev.eclipse.org)
37 //keeps track of missing elements
108 Enumeration enumeration = plugins.elements();
120 enumeration = features.elements();
  /external/guava/guava/src/com/google/common/collect/
ObjectArrays.java 61 * @param first the first array of elements to concatenate
62 * @param second the second array of elements to concatenate
77 * @param array the array of elements to append
80 * elements of {@code array} occupying the remaining elements.
92 * @param array the array of elements to prepend
113 * Returns an array containing all of the elements in the specified
120 * the array has more elements than the collection), the element in the array
123 * the caller knows that the collection does not contain any null elements.
125 * <p>This method returns the elements in the order they are returned by th
    [all...]
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...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListListIteratorTester.java 82 @Override protected void verify(List<E> elements) {
83 expectContents(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/chromium_org/v8/src/
array.js 72 var elements = new InternalArray(keys.length * 2);
79 elements[i * 2] = key;
80 elements[i * 2 + 1] = e;
84 return %SparseJoinWithSeparator(elements, len, separator);
94 var elements = new InternalArray(keys_length);
102 elements[elements_length++] = e;
106 return %StringBuilderConcat(elements, elements_length, '');
129 // Attempt to convert the elements.
146 // Construct an array for the elements.
147 var elements = new InternalArray(length)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
uniform_query.cpp 279 unsigned elements = (uni->type->is_sampler()) local
282 /* Calculate the source base address *BEFORE* modifying elements to
286 &uni->storage[offset * elements];
294 unsigned bytes = sizeof(src[0]) * elements;
323 for (unsigned i = 0; i < elements; i++) {
432 assert(Elements(stages) == MESA_SHADER_TYPES);
468 * \param count Number of array elements to propagate.
728 * "When loading N elements starting at an arbitrary position k in a
729 * uniform declared as an array, elements k through k + N - 1 in the
797 for (unsigned j = 0; j < Elements(prog->SamplerUnits); j++)
836 unsigned elements; local
    [all...]
  /external/mesa3d/src/mesa/main/
uniform_query.cpp 279 unsigned elements = (uni->type->is_sampler()) local
282 /* Calculate the source base address *BEFORE* modifying elements to
286 &uni->storage[offset * elements];
294 unsigned bytes = sizeof(src[0]) * elements;
323 for (unsigned i = 0; i < elements; i++) {
432 assert(Elements(stages) == MESA_SHADER_TYPES);
468 * \param count Number of array elements to propagate.
728 * "When loading N elements starting at an arbitrary position k in a
729 * uniform declared as an array, elements k through k + N - 1 in the
797 for (unsigned j = 0; j < Elements(prog->SamplerUnits); j++)
836 unsigned elements; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
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/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/chromium_org/chrome/browser/bookmarks/
bookmark_utils.h 28 // instead of using the values stored in |elements|.
30 const std::vector<BookmarkNodeData::Element>& elements,
  /external/chromium_org/content/common/
page_state_serialization.h 34 std::vector<ExplodedHttpBodyElement> elements; member in struct:content::ExplodedHttpBody

Completed in 1360 milliseconds

<<11121314151617181920>>