/external/webkit/Source/WebKit/qt/tests/qwebelement/ |
D | tst_qwebelement.cpp | 620 QWebElement body = m_mainFrame->documentElement().findFirst("body"); in appendAndPrepend() 623 body.appendInside(body.findFirst("p")); in appendAndPrepend() 625 QCOMPARE(body.findFirst("p").toPlainText(), QString("bar")); in appendAndPrepend() 628 body.appendInside(body.findFirst("p").clone()); in appendAndPrepend() 630 QCOMPARE(body.findFirst("p").toPlainText(), QString("bar")); in appendAndPrepend() 635 QCOMPARE(body.findFirst("p").toPlainText(), QString("foo")); in appendAndPrepend() 637 body.findFirst("p").appendInside("<div>booyakasha</div>"); in appendAndPrepend() 639 QCOMPARE(body.findFirst("p div").toPlainText(), QString("booyakasha")); in appendAndPrepend() 641 body.findFirst("div").prependInside("<code>yepp</code>"); in appendAndPrepend() 643 QCOMPARE(body.findFirst("p div code").toPlainText(), QString("yepp")); in appendAndPrepend() [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
D | Bits.java | 153 int idx = findFirst(bits, start); in anyInRange() 166 public static int findFirst(int[] bits, int idx) { in findFirst() method in Bits 173 int bitIdx = findFirst(word, minBit); in findFirst() 193 public static int findFirst(int value, int idx) { in findFirst() method in Bits
|
D | BitIntSet.java | 102 private int idx = Bits.findFirst(bits, 0); in iterator() 117 idx = Bits.findFirst(bits, idx+1); in iterator() 131 for (int i = Bits.findFirst(bits, 0) in toString() 133 ; i = Bits.findFirst(bits, i + 1)) { in toString()
|
D | ListIntSet.java | 90 for (int i = 0; i >= 0; i = Bits.findFirst(o.bits, i + 1)) { in merge()
|
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/webelement/ |
D | main.cpp | 59 QWebElement button = document.findFirst("input[type=submit]"); in findButtonAndClick() 71 QWebElement firstTextInput = document.findFirst("input[type=text]"); in autocomplete1() 85 QWebElement firstTextInput = document.findFirst("input[type=text]"); in autocomplete2()
|
/external/webkit/Source/WebKit/qt/tests/qwebview/ |
D | tst_qwebview.cpp | 253 …QWebElement inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=text]"… in focusInputTypes() 264 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=password]")); in focusInputTypes() 270 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=tel]")); in focusInputTypes() 276 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=number]")); in focusInputTypes() 282 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=email]")); in focusInputTypes() 288 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=url]")); in focusInputTypes() 294 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=password]")); in focusInputTypes() 300 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=text]")); in focusInputTypes() 311 inputElement = mainFrame->documentElement().findFirst(QLatin1String("input[type=password]")); in focusInputTypes() 317 inputElement = mainFrame->documentElement().findFirst(QLatin1String("textarea")); in focusInputTypes()
|
/external/webkit/Source/WebCore/html/parser/ |
D | HTMLEntitySearch.cpp | 61 const HTMLEntityTableEntry* HTMLEntitySearch::findFirst(UChar nextCharacter) const in findFirst() function in WebCore::HTMLEntitySearch 120 m_first = findFirst(nextCharacter); in advance()
|
D | HTMLEntitySearch.h | 55 const HTMLEntityTableEntry* findFirst(UChar) const;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRTreeWizard.h | 116 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Type:(NSInteger)ttype; 117 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Pattern:(NSString *)pattern;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTreeWizard.h | 116 - (ANTLRTreeWizard *)findFirst:(ANTLRCommonTree *) t Type:(NSInteger)ttype; 117 - (ANTLRTreeWizard *)findFirst:(ANTLRCommonTree *) t Pattern:(NSString *)pattern;
|
D | ANTLRTreeWizard.m | 396 - (ANTLRTreeWizard *)findFirst:(ANTLRCommonTree *) t Type:(NSInteger)ttype 401 - (ANTLRTreeWizard *)findFirst:(ANTLRCommonTree *) t Pattern:(NSString *)pattern
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRTreeWizard.h | 116 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Type:(NSInteger)ttype; 117 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Pattern:(NSString *)pattern;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRTreeWizard.h | 116 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Type:(NSInteger)ttype; 117 - (ANTLRTreeWizard *)findFirst:(id<ANTLRTree>) t Pattern:(NSString *)pattern;
|
/external/skia/src/gpu/ |
D | GrRedBlackTree.h | 106 Iter findFirst(const T& t); 269 typename GrRedBlackTree<T,C>::Iter GrRedBlackTree<T,C>::findFirst(const T& t) { in findFirst() function 993 Iter iter = tree.findFirst(i); in UnitTest() 1026 iter = tree.findFirst(i); in UnitTest() 1039 GrAssert(tree.findFirst(i) == tree.end()); in UnitTest() 1051 GrAssert(tree.findFirst(0) == tree.end()); in UnitTest() 1062 GrAssert(tree.findFirst(99) == tree.end()); in UnitTest() 1084 Iter iter = tree.findFirst(i); in UnitTest()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | TreeWizard.java | 236 public Object findFirst(Object t, int ttype) { in findFirst() method in TreeWizard 240 public Object findFirst(Object t, String pattern) { in findFirst() method in TreeWizard
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | LocalVariableExtractor.java | 77 label = Bits.findFirst(workSet, 0)) { in doit()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebelement.h | 71 QWebElement findFirst(const QString &selectorQuery) const;
|
D | qwebelement.cpp | 253 QWebElement QWebElement::findFirst(const QString &selectorQuery) const in findFirst() function in QWebElement
|
D | qwebframe.cpp | 1400 return documentElement().findFirst(selectorQuery); in findFirstElement()
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | RopTranslator.java | 338 label = Bits.findFirst(workSet, 0)) { in pickOrder()
|
/external/webkit/Source/WebKit/qt/tests/qwebframe/ |
D | tst_qwebframe.cpp | 2675 …const QWebElement webCombo = view.page()->mainFrame()->documentElement().findFirst(QLatin1String("… in popupFocus() 2705 …const QWebElement inputElement = view.page()->mainFrame()->documentElement().findFirst(QLatin1Stri… in inputFieldFocus() 2723 const QWebElement linkElement = frame->documentElement().findFirst(QLatin1String("a#link")); in hitTestContent()
|
/external/webkit/Source/WebKit/qt/symbian/bwins/ |
D | QtWebKitu.def | 175 …?findFirst@QWebElement@@QBE?AV1@ABVQString@@@Z @ 174 NONAME ; class QWebElement QWebElement::findF…
|
/external/webkit/Source/WebKit/qt/ |
D | ChangeLog-2011-02-16 | 15945 Clean up documentation of QWebElement's findFirst and findAll functions, 17650 * Fix argument names of findAll/findFirst 17665 (QWebElement::findFirst): 17900 [Qt] Rename DOM API select function to findFirst, findAll, etc. 17904 (QWebElement::findFirst):
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 78599 (WebCore::HTMLEntitySearch::findFirst):
|