HomeSort by relevance Sort by last modified time
    Searched refs:elements (Results 976 - 1000 of 1581) sorted by null

<<31323334353637383940>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
gensuitemodule.py 399 (getlist, "elements", getelement)
633 # [name, code, desc, properties, elements] = cls
    [all...]
  /external/chromium_org/third_party/libxml/src/
valid.c 6942 const xmlChar *elements[256]; local
    [all...]
  /external/chromium_org/v8/src/
parser.cc 815 Handle<FixedArray> elements = factory->NewFixedArray(args.length()); local
818 elements->set(i, *arg_string);
820 Handle<JSArray> array = factory->NewJSArrayWithElements(elements);
833 Handle<FixedArray> elements = factory->NewFixedArray(args.length()); local
835 elements->set(i, *args[i]);
837 Handle<JSArray> array = factory->NewJSArrayWithElements(elements);
852 // elements. This way, all scripts and functions get their own
3874 uint32_t elements = 0; local
4949 Handle<Object> elements[] = { first, second }; local
4961 Handle<FixedArray> elements = isolate()->factory()->NewFixedArray(argc, local
    [all...]
string-stream.cc 442 unsigned int limit = FixedArray::cast(array->elements())->length();
446 PrintFixedArray(FixedArray::cast(array->elements()), limit);
  /external/libxml2/
valid.c 6949 const xmlChar *elements[256]; local
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc 1521 Register elements = r6; local
1707 Register elements = r3; local
1717 CheckPrototypes(Handle<JSObject>::cast(object), receiver, holder, elements, local
    [all...]
  /external/v8/src/mips/
stub-cache-mips.cc 1520 Register elements = t2; local
1705 Register elements = a3; local
1715 CheckPrototypes(Handle<JSObject>::cast(object), receiver, holder, elements, local
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.cc 360 elements()->PrintTo(stream);
372 elements()->PrintTo(stream);
1076 LOperand* elements = UseFixed(instr->elements(), r3); local
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.cc 365 elements()->PrintTo(stream);
377 elements()->PrintTo(stream);
1076 LOperand* elements = UseFixed(instr->elements(), a3); local
    [all...]
  /external/v8/src/
heap.cc 2369 Object* elements; local
4055 FixedArrayBase* elements = FixedArrayBase::cast(source->elements()); local
    [all...]
  /external/chromium/chrome/browser/resources/keyboard/
main.js 102 * Size the DOM elements of this key.
135 * Create the DOM elements for the given keyboard mode. Must be overridden.
136 * @param {string} mode The keyboard mode to create elements for.
446 * Create the DOM elements for the row.
  /external/chromium_org/chrome/browser/resources/file_manager/js/media/
util.js 8 * A controller class detects mouse inactivity and hides "tool" elements.
  /external/chromium_org/chrome_frame/cfinstall/src/implementation/
dialoginteractiondelegate.js 117 // elements offscreen.
  /external/chromium_org/native_client_sdk/src/examples/api/file_io/
example.js 140 // Add new <li> elements for each file.
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Blit.cpp 103 static const D3DVERTEXELEMENT9 elements[] = local
109 result = device->CreateVertexDeclaration(elements, &mQuadVertexDeclaration);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.cpp 224 D3D11_INPUT_ELEMENT_DESC elements[2] = local
231 elements, 2,
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
set_uniform_initializer_tests.cpp 96 * \param type Type for the elements of the actual storage slot
105 const unsigned elements = MAX2(1, array_size); local
106 const unsigned data_components = elements * type->components();
322 /* The constant value generated may have more array elements than the
325 * elements are not used. In this case, the type of the uniform will be
  /external/chromium_org/v8/test/mjsunit/
array-functions-prototype.js 39 // Set elements on the array prototype.
array-literal-transitions.js 45 // IC and Crankshaft support for smi-only elements in dynamic array literals.
debug-stepin-builtin-callback.js 66 print("elements " + a + " and " + b); // Expected to step to this point.
object-prevent-extensions.js 89 // We should still be able to change exiting elements.
  /external/guava/guava/src/com/google/common/collect/
Iterables.java 105 * Returns the number of elements in {@code iterable}.
139 * @param removeFrom the iterable to (potentially) remove elements from
140 * @param elementsToRemove the elements to remove
157 * @param removeFrom the iterable to (potentially) remove elements from
158 * @param elementsToRetain the elements to retain
172 * @param removeFrom the iterable to (potentially) remove elements from
175 * @return {@code true} if any elements were removed from the iterable
227 // moving elements when remove() is called). Stop before 'from' because
241 * Determines whether two iterables contain equal elements in the same order.
243 * and {@code iterable2} contain the same number of elements and every elemen
    [all...]
MinMaxPriorityQueue.java 45 * natural order of elements is used.
59 * queues, which either block or reject new elements when full.
64 * it stores elements in a single array, as compact as the traditional heap data
67 * <p>This class is not thread-safe, and does not accept null elements.
102 * and initially containing the given elements.
112 * least and greatest elements.
121 * expectedSize} elements.
131 * elements. Each time a queue grows beyond this bound, it immediately
181 * that are limited to {@code maximumSize} elements. Each time a queue grows
201 * options, and having the given initial elements
    [all...]
TreeMultiset.java 40 * A multiset which maintains the ordering of its elements, according to either
60 * Creates a new, empty multiset, sorted according to the elements' natural
61 * order. All elements inserted into the multiset must implement the
62 * {@code Comparable} interface. Furthermore, all such elements must be
64 * {@code ClassCastException} for any elements {@code e1} and {@code e2} in
67 * element to a set whose elements are integers), the {@code add(Object)}
80 * comparator. All elements inserted into the multiset must be <i>mutually
82 * e2)} must not throw a {@code ClassCastException} for any elements {@code
88 * null value indicates that the elements' <i>natural ordering</i> should
100 * Creates an empty multiset containing the given initial elements, sorte
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java 102 * Returns the number of elements in {@code iterable}.
136 * @param removeFrom the iterable to (potentially) remove elements from
137 * @param elementsToRemove the elements to remove
154 * @param removeFrom the iterable to (potentially) remove elements from
155 * @param elementsToRetain the elements to retain
169 * @param removeFrom the iterable to (potentially) remove elements from
172 * @return {@code true} if any elements were removed from the iterable
224 // moving elements when remove() is called). Stop before 'from' because
238 * Determines whether two iterables contain equal elements in the same order.
240 * and {@code iterable2} contain the same number of elements and every elemen
    [all...]

Completed in 652 milliseconds

<<31323334353637383940>>