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

<<31323334353637383940>>

  /external/chromium_org/v8/src/
spaces.cc 3070 Object* element = array->get(j); local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 246 TypeHandle Array1(TypeHandle element) {
247 return Type::Array(element, region_);
310 TypeHandle element = Fuzz(depth / 2); local
311 return Type::Array(element, region_);
603 CheckEqual(type, array->AsArray()->Element());
790 // Least Element (Bottom): None->Is(T)
796 // Greatest Element (Top): T->Is(Any)
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 718 // See if we can emit each element.
762 // If necessary, get a pointer to the element and emit it.
776 // If necessary, get a pointer to the element and emit it.
1445 llvm::Value *element = Builder.CreateInBoundsGEP(elementPast, negativeOne, local
    [all...]
  /external/clang/lib/Format/
Format.cpp 251 // If the first element has no Language specified, it will be treated as the
257 static FormatStyle &element(IO &IO, std::vector<FormatStyle> &Seq, function in struct:llvm::yaml::DocumentListTraits
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
TestResultsGenerator.java 32 import org.w3c.dom.Element;
1157 Element element = (Element) elements.item(i); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
creststn.c 1753 UChar element[3]; local
1791 UChar element[3]; local
1843 UChar element[3]; local
1892 UChar element[3]; local
1978 UChar element[3]; local
    [all...]
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntimeV2.cpp 659 typedef std::pair<ConstString, ObjCLanguageRuntime::ObjCISA> element; typedef in class:RemoteNXMapTable
704 const element operator*() const
709 return element();
720 return element();
723 return element();
729 return element();
731 return element(ConstString(key_string.c_str()), (ObjCLanguageRuntime::ObjCISA)value);
    [all...]
  /external/opencv/cv/include/
cv.h 316 /* creates structuring element used for morphological operations */
321 /* releases structuring element */
322 CVAPI(void) cvReleaseStructuringElement( IplConvKernel** element ); variable
325 If element pointer is NULL, 3x3 rectangular element is used */
327 IplConvKernel* element CV_DEFAULT(NULL),
331 If element pointer is NULL, 3x3 rectangular element is used */
333 IplConvKernel* element CV_DEFAULT(NULL),
344 CvArr* temp, IplConvKernel* element,
    [all...]
  /external/opencv/cvaux/src/
cvvecfacetracking.cpp 71 inline int GetEnergy2(CvTrackingRect** ppNew, const CvTrackingRect* pPrev, CvPoint* ptTempl, CvRect* rTempl, int* element);
711 int element[NUM_FACE_ELEMENTS]; local
716 element[elem] = i;
720 element[2] = i;
729 cvStartReadSeq( big_face[element[0]].m_seqRects, &reader0 );
730 for (int i0 = 0; i0 < big_face[element[0]].m_seqRects->total && i0 < nElements; i0++)
732 curr_face[element[0]] = (CvTrackingRect*)(reader0.ptr);
733 cvStartReadSeq( big_face[element[1]].m_seqRects, &reader1 );
734 for (int i1 = 0; i1 < big_face[element[1]].m_seqRects->total && i1 < nElements; i1++)
736 curr_face[element[1]] = (CvTrackingRect*)(reader1.ptr)
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 471 "Specified element size doesn't match to the size of the specified element type "
472 "(try to use 0 for element type)" );
525 /* Find a sequence element by its index: */
564 /* Calculate index of a sequence element: */
568 const schar *element = (const schar *)_element; local
578 if( !seq || !element )
586 if( (unsigned)(element - block->data) < (unsigned) (block->count * elem_size) )
591 id = (int)((size_t)(element - block->data) >> id);
593 id = (int)((size_t)(element - block->data) / elem_size)
2585 schar* element; member in struct:CvPTreeNode
    [all...]
  /external/skia/src/utils/
SkLua.cpp 276 static const char* element_type(SkClipStack::Element::Type type) {
278 case SkClipStack::Element::kEmpty_Type:
280 case SkClipStack::Element::kRect_Type:
282 case SkClipStack::Element::kRRect_Type:
284 case SkClipStack::Element::kPath_Type:
311 const SkClipStack::Element* element; local
313 while (NULL != (element = iter.next())) {
314 this->pushClipStackElement(*element);
320 void SkLua::pushClipStackElement(const SkClipStack::Element& element, const char* key)
    [all...]
  /external/tinyxml2/
tinyxml2.cpp 678 XMLElement* element = node->ToElement(); local
679 if ( element ) {
680 if ( !value || XMLUtil::StringEqual( element->Name(), value ) ) {
681 return element;
692 XMLElement* element = node->ToElement(); local
693 if ( element ) {
694 if ( !value || XMLUtil::StringEqual( element->Name(), value ) ) {
695 return element;
705 for( XMLNode* element=this->next; element; element = element->next ) {
1371 XMLElement* element = doc->NewElement( Value() ); \/\/ fixme: this will always allocate memory. Intern? local
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
ArrayBlockingQueueTest.java 455 * peek returns next element, or null if empty
469 * element returns next element, or throws NSEE if empty
474 assertEquals(i, q.element());
478 q.element();
484 * remove removes next element, or throws NSEE if empty
685 * iterator.remove removes current element
ArrayDequeTest.java 129 * peekFirst() returns element inserted with push
139 * pop() removes next element, or throws NSEE if empty
371 * remove() removes next element, or throws NSEE if empty
406 * peekFirst() returns next element, or null if empty
420 * peek() returns next element, or null if empty
434 * peekLast() returns next element, or null if empty
448 * element() returns first element, or throws NSEE if empty
453 assertEquals(i, q.element());
457 q.element();
    [all...]
ConcurrentLinkedDequeTest.java 131 * peekFirst() returns element inserted with push
141 * pop() removes first element, or throws NSEE if empty
384 * peek() returns next element, or null if empty
398 * element() returns first element, or throws NSEE if empty
403 assertEquals(i, q.element());
407 q.element();
413 * remove() removes next element, or throws NSEE if empty
448 * peekFirst() returns next element, or null if empty
462 * peekLast() returns next element, or null if empt
    [all...]
ConcurrentSkipListSetTest.java 171 * Add of comparable element succeeds
180 * Add of duplicate element fails
373 * lower returns preceding element
391 * higher returns next element
409 * floor returns preceding element
427 * ceiling returns next element
494 * iterator.remove removes current element
704 int element = rnd.nextInt(limit); local
705 put(set, element, bs);
728 int element = min + rnd.nextInt(rangeSize) local
754 int element = min - 5 + rnd.nextInt(rangeSize + 10); local
    [all...]
LinkedTransferQueueTest.java 316 * peek returns next element, or null if empty
331 * element returns next element, or throws NoSuchElementException if empty
336 assertEquals(i, (int) q.element());
340 q.element();
347 * remove removes next element, or throws NoSuchElementException if empty
501 * iterator.remove() removes current element
737 * transfer waits until a poll occurs. The transfered element
795 * thread returns the element
817 * transfer waits until a take occurs. The transfered element
    [all...]
TreeSetTest.java 175 * Add of comparable element succeeds
184 * Add of duplicate element fails
377 * lower returns preceding element
395 * higher returns next element
413 * floor returns preceding element
431 * ceiling returns next element
499 * iterator.remove removes current element
710 int element = rnd.nextInt(limit); local
711 put(set, element);
734 int element = min + rnd.nextInt(rangeSize) local
759 int element = min - 5 + rnd.nextInt(rangeSize + 10); local
    [all...]
  /libcore/luni/src/main/java/java/io/
ObjectInputStream.java     [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HTML4.java 37 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
47 public HTML.Element lookupElement(String name) {
64 /** Looks for a HTML4 element */
65 public static HTML.Element lookupElement(String name) {
76 * element name.
78 public static Map<String, HTML.Element> getAllElements() {
90 /** Creates and adds a element to the map */
91 private static HTML.Element addElement(String tag, String flags) {
92 return addElement(tag, flags, HTML.Element.Flow.NONE);
95 /** Creates and adds a element to the map *
121 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HTML4.java 38 private static final HashMap<String,HTML.Element> elements = Maps.newHashMap();
48 public HTML.Element lookupElement(String name) {
65 /** Looks for a HTML4 element */
66 public static HTML.Element lookupElement(String name) {
77 * element name.
79 public static Map<String, HTML.Element> getAllElements() {
91 /** Creates and adds a element to the map */
92 private static HTML.Element addElement(String tag, String flags) {
93 return addElement(tag, flags, HTML.Element.Flow.NONE);
96 /** Creates and adds a element to the map *
122 HTML.Element element = new HTML.Element(tag, type, empty, optionalEndTag, breaksFlow, flow); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.2/
ant-launcher-1.8.2.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 148 import org.w3c.dom.Element;
262 /** Determines whether the given element <b>name</b> is linkable */
387 /** Returns true if this represents a {@code <foo.bar.Baz>} custom view class element */
390 // Don't match the outer element if the user is hovering over a specific attribute
393 // If the element looks like a fully qualified class name (e.g. it's a custom view
394 // element) offer it as a link
427 Element node = context.getElement();
469 Element node = context.getElement();
488 Element node = context.getElement();
511 Element node = context.getElement()
946 Element element = (Element)child; local
970 Element element = (Element)child; local
1050 Node element = attribute.getOwnerElement(); local
1067 Element element = (Element)child; local
1126 Element element = (Element) child; local
1441 IJavaElement element = elements[0]; local
1787 Element element = (Element) inode; local
    [all...]

Completed in 1728 milliseconds

<<31323334353637383940>>