HomeSort by relevance Sort by last modified time
    Searched refs:search (Results 226 - 250 of 1488) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/gtest/test/
gtest_help_test.py 113 self.assert_(HELP_REGEX.search(output), output)
137 self.assert_(not HELP_REGEX.search(output), output)
  /external/lldb/test/lang/objc/foundation/
TestFoundationDisassembly.py 30 match = re.search(" (/.*/Foundation.framework/.*)$", line)
50 match = codeRE.search(line)
  /external/lldb/utils/test/
run-dis.py 35 return (mach_o.search(file_output) is not None)
55 if not path_regexp.search(replaced_path):
  /external/markdown/markdown/extensions/
def_list.py 32 return bool(self.RE.search(block))
36 m = self.RE.search(block)
  /external/skia/src/core/
SkRTree.h 80 virtual void search(const SkIRect& query, SkTDArray<void*>* results) SK_OVERRIDE;
165 void search(Node* root, const SkIRect query, SkTDArray<void*>* results) const;
  /external/vixl/test/
cctest.cc 66 // Look for 'search' in the arguments.
67 bool IsInArgs(const char* search, int argc, char* argv[]) {
69 if (strcmp(search, argv[i]) == 0) {
  /external/zlib/src/contrib/minizip/
make_vms.com 1 $ if f$search("ioapi.h_orig") .eqs. "" then copy ioapi.h ioapi.h_orig
  /ndk/sources/third_party/googletest/googletest/test/
gtest_help_test.py 113 self.assert_(HELP_REGEX.search(output), output)
137 self.assert_(not HELP_REGEX.search(output), output)
  /packages/apps/Settings/src/com/android/settings/bluetooth/
Utils.java 27 import com.android.settings.search.Index;
28 import com.android.settings.search.SearchIndexableRaw;
108 * Update the search Index for a specific class name and resources.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
CustomViewFinder.java 43 import org.eclipse.jdt.core.search.IJavaSearchConstants;
44 import org.eclipse.jdt.core.search.IJavaSearchScope;
45 import org.eclipse.jdt.core.search.SearchEngine;
46 import org.eclipse.jdt.core.search.SearchMatch;
47 import org.eclipse.jdt.core.search.SearchParticipant;
48 import org.eclipse.jdt.core.search.SearchPattern;
49 import org.eclipse.jdt.core.search.SearchRequestor;
129 // search is done. (There could be more than one since multiple requests could
130 // arrive for a slow search since the search is run in a different thread)
    [all...]
  /developers/build/prebuilts/gradle/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
MainActivity.java 27 * Simple one-activity app that takes a search term via the Action Bar
28 * and uses it as a query to search the contacts database via the Contactables
86 (SearchView) menu.findItem(R.id.search).getActionView();
  /developers/samples/android/content/contacts/BasicContactables/Application/src/main/java/com/example/android/basiccontactables/
MainActivity.java 27 * Simple one-activity app that takes a search term via the Action Bar
28 * and uses it as a query to search the contacts database via the Contactables
86 (SearchView) menu.findItem(R.id.search).getActionView();
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
SearchActivity.java 40 setContentView(R.layout.search);
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
MainActivity.java 27 * Simple one-activity app that takes a search term via the Action Bar
28 * and uses it as a query to search the contacts database via the Contactables
86 (SearchView) menu.findItem(R.id.search).getActionView();
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectStack.java 191 public int search(Object o) method in class:ObjectStack
  /external/chromium_org/base/
PRESUBMIT.py 21 if pattern.search(contents):
  /external/chromium_org/build/android/
symbolize.py 36 match = re.search(TRACE_LINE, data)
  /external/chromium_org/chrome/
PRESUBMIT.py 61 m = re.search(r"'(.*\/content\/.*unittest.*)'", line)
  /external/chromium_org/chrome/browser/resources/pdf/
main.js 27 var params = window.location.search.substring(1).split('=');
45 var url = window.location.search.substring(1);
  /external/chromium_org/chrome/browser/ui/webui/options/
settings_app_browsertest.js 38 assertFalse(isVisible('default-search-engine'));
39 assertFalse(isVisible('hotword-search'));
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
uber_shared.css 52 body.uber-frame header > .search-field-container,
60 html[dir='rtl'] body.uber-frame header > .search-field-container,
67 body.uber-frame header input[type='search'],
  /external/chromium_org/content/test/
PRESUBMIT.py 30 input_api.re.search('ERROR Line:', line))
  /external/chromium_org/net/ssl/
client_cert_store_mac.cc 191 // to restrict the identity search to, within Security.framework the
206 SecIdentitySearchRef search = NULL; local
210 err = SecIdentitySearchCreate(NULL, CSSM_KEYUSE_SIGN, &search);
217 ScopedCFTypeRef<SecIdentitySearchRef> scoped_search(search);
222 err = SecIdentitySearchCopyNext(search, &identity);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMURLUtilsReadOnly.cpp 67 String DOMURLUtilsReadOnly::search(const KURL& kurl) function in class:blink::DOMURLUtilsReadOnly
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Location.cpp 108 String Location::search() const function in class:blink::Location
112 return DOMURLUtilsReadOnly::search(url());
198 void Location::setSearch(LocalDOMWindow* callingWindow, LocalDOMWindow* enteredWindow, const String& search)
203 url.setQuery(search);

Completed in 2372 milliseconds

1 2 3 4 5 6 7 8 91011>>