HomeSort by relevance Sort by last modified time
    Searched refs:findNext (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/public/web/
WebFindOptions.h 47 bool findNext;
59 , findNext(false)
  /dalvik/dexgen/src/com/android/dexgen/rop/
AttributeList.java 74 public Attribute findNext(Attribute attrib);
StdAttributeList.java 68 public Attribute findNext(Attribute attrib) {
  /dalvik/dx/src/com/android/dx/cf/iface/
AttributeList.java 74 public Attribute findNext(Attribute attrib);
StdAttributeList.java 68 public Attribute findNext(Attribute attrib) {
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 87 this.currentIndex = findNext(-1);
100 protected int findNext(int from) {
149 this.currentIndex = findNext(current);
BasicListHeaderIterator.java 94 this.currentIndex = findNext(-1);
108 protected int findNext(int from) {
163 this.currentIndex = findNext(current);
BasicTokenIterator.java 91 this.searchPos = findNext(-1);
118 this.searchPos = findNext(this.searchPos);
168 protected int findNext(int from)
197 * Called from {@link #findNext findNext} after the token is identified.
  /libcore/luni/src/main/java/java/util/
ListResourceBundle.java 58 private boolean findNext() {
76 return findNext();
83 if (findNext()) {
PropertyResourceBundle.java 88 private boolean findNext() {
106 return findNext();
113 if (findNext()) {
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
command_store.js 102 * findNext: (undefined|string),
116 * findNext: The id from the map above if this command is used for
384 findNext: 'article'},
387 findNext: 'button',
391 findNext: 'checkbox',
395 findNext: 'combobox',
398 'nextControl': {forward: true, findNext: 'control'},
400 findNext: 'editText',
404 findNext: 'formField',
408 findNext: 'graphic'
    [all...]
find_util_test.js 43 var ret = cvox.FindUtil.findNext(sel, cvox.DomPredicates.linkPredicate);
45 ret = cvox.FindUtil.findNext(ret, cvox.DomPredicates.linkPredicate);
49 ret = cvox.FindUtil.findNext(ret, cvox.DomPredicates.linkPredicate);
  /external/chromium_org/android_webview/browser/
find_helper.cc 48 options.findNext = false;
66 void FindHelper::FindNext(bool forward) {
73 options.findNext = true;
  /external/chromium_org/chrome/browser/guest_view/web_view/
web_view_find_helper.cc 106 // Find options including the implicit |findNext| field.
109 // Set |findNext| implicitly.
114 full_options->findNext = !current_search_text.empty() &&
118 full_options->findNext = false;
122 if (full_options->findNext && current_find_session_.get()) {
129 if (!full_options->findNext)
153 if (!find_info->options()->findNext &&
162 if (!find_info->replied() && !find_info->options()->findNext)
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 114 private void findNext(boolean next) {
117 "No WebView for FindActionModeCallback::findNext");
128 mWebView.findNext(next);
190 findNext(true);
240 findNext(false);
243 findNext(true);
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 101 lnt = (AttLineNumberTable) codeAttribs.findNext(lnt)) {
120 lvt = (AttLocalVariableTable) codeAttribs.findNext(lvt)) {
132 (AttLocalVariableTypeTable) codeAttribs.findNext(lvtt)) {
  /dalvik/dx/src/com/android/dx/command/annotool/
AnnotationLister.java 85 for (;att != null; att = attributes.findNext(att)) {
93 for (;att != null; att = attributes.findNext(att)) {
104 for (;att != null; att = attributes.findNext(att)) {
112 for (;att != null; att = attributes.findNext(att)) {
  /external/deqp/framework/randomshaders/
rsgVariableManager.hpp 133 nextEntry = findNext(m_filter, nextEntry, m_end);
140 m_iter = findNext(m_filter, m_iter, m_end);
148 m_iter = findNext(m_filter, m_iter, m_end);
170 static Iterator findNext (Filter filter, Iterator iter, Iterator end)
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebViewAsynchronousFindApisTest.java 142 contents().findNext(true);
WebViewFindApisTestBase.java 91 * Invokes findNext on the UI thread, blocks until find results are
111 mContents.findNext(forwards);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
TextFinderTest.cpp 86 findOptions.findNext = true;
117 findOptions.findNext = true;
175 findOptions.findNext = true;
214 findOptions.findNext = true;
  /external/deqp/framework/opengl/
gluVarTypeUtil.hpp 182 void findNext (void);
208 findNext();
220 findNext();
275 void SubTypeIterator<IsExpanded>::findNext (void)
  /external/chromium_org/chrome/browser/ui/find_bar/
find_tab_helper.cc 43 // If search_string is empty, it means FindNext was pressed with a keyboard
64 // This is a FindNext operation if we are searching for the same text again,
65 // or if the passed in search text is empty (FindNext keyboard shortcut). The
66 // exception to this is if the Find was aborted (then we don't want FindNext
68 // therefore treat FindNext after an aborted Find operation as a full fledged
91 options.findNext = find_next;
  /external/chromium_org/third_party/WebKit/Source/web/
TextFinder.cpp 102 if (!options.findNext)
112 // operation left off (either a Find or a FindNext operation).
126 | (options.findNext ? 0 : StartInSelection);
132 if (!options.findNext)
150 if (!options.findNext || activeSelection) {
  /external/chromium_org/third_party/icu/source/i18n/unicode/
rbtz.h 312 UBool findNext(UDate base, UBool inclusive, UDate& time, TimeZoneRule*& from, TimeZoneRule*& to) const;

Completed in 1506 milliseconds

1 2 3 4