HomeSort by relevance Sort by last modified time
    Searched defs:element (Results 676 - 700 of 1193) sorted by null

<<21222324252627282930>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
BuildsView.java 309 BuildResultsElement element = (BuildResultsElement) elements[i]; local
310 if (element.getStatus() == 0) {
311 buildsToUpdate[count++] = element.getName();
342 public Font getFont(Object element) {
343 Font font = super.getFont(element);
344 if (element instanceof BuildResultsElement) {
345 if (((BuildResultsElement) element).isUnknown()) {
358 public Color getForeground(Object element) {
359 Color color = super.getForeground(element);
360 if (element instanceof BuildResultsElement)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractMultisetTest.java 461 String element = entry.getElement(); local
462 if (element.equals("a")) {
464 } else if (element.equals("b")) {
466 } else if (element.equals("c")) {
468 } else if (element.equals("d")) {
MinMaxPriorityQueueTest.java 206 /* insert a new element */
361 * This tests a special case of the removeAt() call. Moving an element
363 * bubble an element up instead of trickling down. See implementation.
432 * This tests a special case where removeAt has to trickle an element
434 * the index of the removed element.
660 Integer element = random.nextInt(); local
661 control.add(element);
662 assertTrue(q.add(element));
667 Integer element = random.nextInt(); local
668 control.add(element);
    [all...]
  /external/icu/icu4c/source/i18n/
compactdecimalformat.cpp 874 const UHashElement* element = uhash_nextElement(result->unitsByVariant, &pos); local
875 for (;element != NULL; element = uhash_nextElement(result->unitsByVariant, &pos)) {
876 CDFUnit* units = (CDFUnit*) element->value.pointer;
  /external/opencv/cv/include/
cv.hpp 343 const CvMat* get_element() const { return element; }
362 CvMat *element; member in class:CvMorphology
  /external/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 180 for (final Object element : newList) {
181 verifyType(descriptor.getLiteType(), element); local
288 * object is the right type to be one element of the field.)
346 for (final MessageLite element:
348 if (!element.isInitialized()) {
572 for (final Object element : valueList) {
573 dataSize += computeElementSizeNoTag(type, element);
577 for (final Object element : valueList) {
578 writeElementNoTag(output, type, element);
581 for (final Object element : valueList)
    [all...]
  /external/skia/src/core/
SkPictureFlat.h 393 * Given an element of type T return its 1-based index in the dictionary. If
394 * the element wasn't previously in the dictionary it is automatically
398 int find(const T& element) {
399 return this->findAndReturnFlat(element)->index();
409 const SkFlatData* findAndReplace(const T& element,
416 SkFlatData* flat = this->findAndReturnMutableFlat(element);
470 const SkFlatData* element = fIndexedData[index-1]; local
471 SkASSERT(index == element->index());
474 this->unflatten(dst, element);
479 * Find or insert a flattened version of element into the dictionary
    [all...]
  /external/tinyalsa/
pcm.c 740 unsigned int element; local
742 element = index >> bitshift;
743 if (element >= ARRAY_SIZE(m->bits))
745 return (m->bits[element] >> (index & bitmask)) & 1;
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 21 import android.renderscript.Element;
758 "Trying to sync to an allocation with an unsupported element id: "
809 Element element = null; local
812 element = Element.RGBA_8888(mRenderScript);
815 element = Element.F32(mRenderScript);
818 Type.Builder imageTypeBuilder = new Type.Builder(mRenderScript, element);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsUsageMonitor.java 143 /** XML tag for root element. */
170 /** XML tag for root element of premium SMS permissions. */
319 String element = parser.getName(); local
320 if (element == null) {
325 if (element.equals(TAG_SHORTCODE)) {
336 Rlog.e(TAG, "Error: skipping unknown XML tag " + element);
455 String element = parser.getName(); local
456 if (element == null) break;
458 if (element.equals(TAG_PACKAGE)) {
471 Rlog.e(TAG, "Error: skipping unknown XML tag " + element);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArrayDequeTest.java 466 * {@link java.util.ArrayDeque#element()}
473 assertEquals(testObjOne, testQue.element());
476 assertEquals(testObjTwo, testQue.element());
478 assertEquals(testObjThree, testQue.element());
482 testQue.element();
    [all...]
IdentityHashMapTest.java 89 assertTrue("cannot get element", empty.get("something") == "here");
380 assertEquals("Assert 1: After removing non-null element size is incorrect", 0, hashMap.size());
385 assertEquals("Assert 3: After removing null element size is incorrect", 0, hashMap.size());
769 Object element = it.next(); local
770 if (element == key) {
773 newset.add(element);
778 assertTrue("element is in newset ", !newset.contains(key));
779 assertTrue("element not removed from keyset", !set.contains(key));
780 assertTrue("element not removed from map", !map.containsKey(key));
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ConcurrentLinkedQueueTest.java 235 * peek returns next element, or null if empty
249 * element returns next element, or throws NSEE if empty
254 assertEquals(i, q.element());
258 q.element();
264 * remove removes next element, or throws NSEE if empty
466 * iterator.remove removes current element
DelayQueueTest.java 437 * peek returns next element, or null if empty
453 * element returns next element, or throws NSEE if empty
458 assertEquals(new PDelay(i), ((PDelay)q.element()));
462 q.element();
468 * remove removes next element, or throws NSEE if empty
609 * iterator.remove removes current element
LinkedBlockingQueueTest.java 444 * peek returns next element, or null if empty
458 * element returns next element, or throws NSEE if empty
463 assertEquals(i, q.element());
467 q.element();
473 * remove removes next element, or throws NSEE if empty
621 * iterator.remove removes current element
LinkedListTest.java 186 * peek returns next element, or null if empty
200 * element returns next element, or throws NSEE if empty
205 assertEquals(i, q.element());
209 q.element();
215 * remove removes next element, or throws NSEE if empty
401 * iterator.remove removes current element
453 * descendingIterator.remove removes current element
481 * peek returns element inserted with addFirst
490 * peekFirst returns element inserted with pus
    [all...]
PriorityBlockingQueueTest.java 168 * Offer of comparable element succeeds
399 * peek returns next element, or null if empty
413 * element returns next element, or throws NSEE if empty
418 assertEquals(i, q.element());
422 q.element();
428 * remove removes next element, or throws NSEE if empty
567 * iterator.remove removes current element
  /libcore/luni/src/main/java/java/net/
URLClassLoader.java 999 String element = tokenizer.nextToken(); local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java 56 * actions subsequent to the access or removal of that element from
100 * A new element is added atomically by CASing the null prev or
102 * containing the element. The element's node atomically becomes
131 * the element from the collection, and makes the containing node
169 * the same element twice, but we don't guarantee whether a
204 * We believe (without full proof) that all single-element deque
322 * Links e as first element.
343 // for e to become an element of this deque,
355 * Links e as last element
1000 public E element() { return getFirst(); } method in class:ConcurrentLinkedDeque
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 229 // We can only wrap if the last outputted node is an element that
266 // of an element (although this shouldn't happen if the endpoints returned
660 * not within a PRE element.
679 // output if the first piece of text is within a BLOCKQUOTE element.
698 * no intervening element that breaks flow. This is automatically handled
705 * of any element that breaks flow.
761 * appending text in a PRE element.
768 // split() will always return an array with at least one element.
809 * Appends a forced line break, which is the equivalent of a BR element.
880 private static final Set<HTML.Element> BLANK_LINE_ELEMENTS
911 HTML.Element element = tag.getElement(); typedefs
943 HTML.Element element = endTag.getElement(); typedefs
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
maven-model-builder-3.2.1.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
tree-flow-inline.h 76 /* Advance the hashtable iterator pointed to by HTI to the next element of the
481 struct phi_arg_d *element, *root; local
485 /* Since the use is the first thing in a PHI argument element, we can
491 element = (struct phi_arg_d *)use;
493 index = element - root;
496 then imm_use is likely not the first element in phi_arg_d. */
497 gcc_checking_assert ((((char *)element - (char *)root)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CanvasViewInfo.java 44 import org.w3c.dom.Element;
66 * {@link IPropertySheetPage} to display the attributes of the selected element.
421 * Returns true iff this view info corresponds to a root element.
426 // Select the visual element -- unless it's the root.
427 // The root element is the one whose GRAND parent
554 * fragment element parent, or null if this {@link CanvasViewInfo} is not rendered as
571 Element element = (Element) node; local
572 String url = element.getAttribute(SdkConstants.ATTR_LAYOUT)
    [all...]
IncludeFinder.java 62 import org.w3c.dom.Element;
559 Element element = (Element) node; local
562 url = element.getAttribute(ATTR_LAYOUT);
564 url = element.getAttributeNS(TOOLS_URI, ATTR_LAYOUT);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 44 import org.w3c.dom.Element;
127 * {@link #getFullClassName(Element)} method
151 * Returns a fully qualified class name for an element in the rendering document
154 * @param element the element to look up the fqcn for
155 * @return the fqcn of the view the element represents a preview for
157 public String getFullClassName(Element element) {
158 // We don't use the element tag name, because in some cases we have
159 // an outer element to render some interesting inner element, such as a tab widge
226 Element element = (Element) node; local
    [all...]

Completed in 1875 milliseconds

<<21222324252627282930>>