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

1 2 3 4 5 6 7 8 91011>>

  /external/dnsmasq/bld/
pkg-wrapper 3 search=$1
6 if grep "^\#.*define.*$search" config.h 2>&1 >/dev/null || \
7 grep $search 2>&1 >/dev/null ; then
  /external/clang/test/Preprocessor/Inputs/microsoft-header-search/a/
findme.h 3 #warning findme.h successfully included using MS search rule
  /external/clang/test/Preprocessor/Inputs/microsoft-header-search/
findme.h 3 #error Wrong findme.h included, MSVC header search incorrec
  /external/chromium_org/chrome/common/
search_urls.h 10 namespace search { namespace
15 } // namespace search
  /external/chromium_org/chrome/browser/resources/print_preview/common/
search_box.css 5 .search-box {
10 .search-box-icon {
21 .search-box-input {
search_bubble.css 5 /* Container for the elements that make up the search bubble. */
6 .search-bubble {
12 /* Create a z-context for search-bubble-innards, its after and before. */
17 .search-bubble-innards {
29 .search-bubble-innards::before {
42 .search-bubble-innards::after {
59 .search-bubble-wrapper {
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/binary.search/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/binary.search/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/binary.search/binary_search
23 test_name := algorithms/alg.sorting/alg.binary.search/binary.search/binary_search_comp
  /external/chromium_org/chrome/browser/resources/print_preview/search/
destination_search.css 5 #destination-search {
9 #destination-search.transparent {
15 #destination-search .page {
19 #destination-search .user-info {
28 [dir='rtl'] #destination-search .user-info {
33 #destination-search .account-select-label {
43 #destination-search .account-select {
48 #destination-search > .page > .close-button {
52 #destination-search .search-box
    [all...]
  /external/chromium_org/chrome/browser/resources/sync_internals/
search.js 10 var allLinks = document.getElementsByClassName('sync-search-quicklink');
14 $('sync-search-submit'),
15 $('sync-search-query'));
18 $('sync-search-query'),
19 $('sync-search-submit'),
20 $('sync-search-status'),
  /external/chromium_org/chrome/browser/resources/options/
search_engine_manager.css 5 #search-engine-manager-page {
9 .search-engine-list input {
13 .search-engine-list > div {
17 .search-engine-list .favicon {
27 .search-engine-list .name-column {
35 .search-engine-list .name-column :last-child {
39 .search-engine-list .keyword-column {
45 .search-engine-list .url-column {
50 .search-engine-list .keyword-column,
51 .search-engine-list .url-column
    [all...]
hotword_search_setting_indicator.css 7 #hotword-search-setting-indicator > div {
password_manager.css 10 #password-search-column {
16 html[dir=rtl] #password-search-column {
search_page.css 5 .search-hidden {
9 .search-highlighted {
13 /* Container for the elements that make up the search bubble. */
14 .search-bubble {
20 /* Create a z-context for search-bubble-innards, its after and before. */
25 .search-bubble-innards {
35 .search-bubble-innards::before {
48 .search-bubble-innards::after {
66 .search-bubble-wrapper {
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
TranscriptSearchManager.java 34 * {@link #getSearchForm(String)} or to submit a search form and return the results of
35 * the search {@link #submitSearch(String, Form)}.
56 TranscriptSearch search = new TranscriptSearch(); local
57 search.setType(IQ.Type.GET);
58 search.setTo(serviceJID);
61 new PacketIDFilter(search.getPacketID()));
62 connection.sendPacket(search);
79 * Submits the completed form and returns the result of the transcript search. The result
81 * data that the search may return.
84 * @param completedForm the filled out search form.
89 TranscriptSearch search = new TranscriptSearch(); local
    [all...]
  /external/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search.pass.cpp 15 // search(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2);
28 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia)) == Iter1(ia));
29 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+1)) == Iter1(ia));
30 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+1), Iter2(ia+2)) == Iter1(ia+1));
31 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+2)) == Iter1(ia));
32 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia+2));
33 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia+2));
34 assert(std::search(Iter1(ia), Iter1(ia), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia));
35 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-1), Iter2(ia+sa)) == Iter1(ia+sa-1));
36 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-3), Iter2(ia+sa)) == Iter1(ia+sa-3))
    [all...]
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.nonmodifying/alg.search/Android.mk
19 test_name := algorithms/alg.nonmodifying/alg.search/search
20 test_src := search.pass.cpp
23 test_name := algorithms/alg.nonmodifying/alg.search/search_n
27 test_name := algorithms/alg.nonmodifying/alg.search/search_n_pred
31 test_name := algorithms/alg.nonmodifying/alg.search/search_pred
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.nonmodifying/alg.search/
search.pass.cpp 15 // search(Iter1 first1, Iter1 last1, Iter2 first2, Iter2 last2);
28 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia)) == Iter1(ia));
29 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia), Iter2(ia+1)) == Iter1(ia));
30 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+1), Iter2(ia+2)) == Iter1(ia+1));
31 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+2)) == Iter1(ia));
32 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia+2));
33 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia+2));
34 assert(std::search(Iter1(ia), Iter1(ia), Iter2(ia+2), Iter2(ia+3)) == Iter1(ia));
35 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-1), Iter2(ia+sa)) == Iter1(ia+sa-1));
36 assert(std::search(Iter1(ia), Iter1(ia+sa), Iter2(ia+sa-3), Iter2(ia+sa)) == Iter1(ia+sa-3))
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearch.java 17 package org.jivesoftware.smackx.search;
34 * Implements the protocol currently used to search information repositories on the Jabber network. To date, the jabber:iq:search protocol
35 * has been used mainly to search for people who have registered with user directories (e.g., the "Jabber User Directory" hosted at users.jabber.org).
36 * However, the jabber:iq:search protocol is not limited to user directories, and could be used to search other Jabber information repositories
37 * (such as chatroom directories) or even to provide a Jabber interface to conventional search engines.
39 * The basic functionality is to query an information repository regarding the possible search fields, to send a search query, and to receive search results
69 UserSearch search = new UserSearch(); local
100 UserSearch search = new UserSearch(); local
135 SimpleUserSearch search = new SimpleUserSearch(); local
174 UserSearch search = null; local
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
toolbar_preprocess.py 40 if self._LINE_FEED_PH.search(line):
43 if self._PH_COMMENT.search(line):
44 mm = self._COMMENT.search(line)
53 mo = self._IDS_COMMAND_MACRO.search(line)
  /external/dnsmasq/contrib/openvpn/
dhclient-enter-hooks 14 if [ -n "$SEARCH" ]; then
15 echo search $SEARCH >> $RESOLVCONF
18 echo search $new_domain_name >> $RESOLVCONF
  /external/libcxx/test/algorithms/alg.sorting/alg.binary.search/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.sorting/alg.binary.search/Android.mk
19 test_name := algorithms/alg.sorting/alg.binary.search/nothing_to_do
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_text.py 22 self.assertRaises(Tkinter.TclError, text.search, None, '1.0')
23 self.assertRaises(Tkinter.TclError, text.search, 'a', None)
24 self.assertRaises(Tkinter.TclError, text.search, None, None)
27 self.assertRaises(Tkinter.TclError, text.search, '', 0)
32 self.assertEqual(text.search('-test', '1.0', 'end'), '1.2')
33 self.assertEqual(text.search('test', '1.0', 'end'), '1.3')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_tkinter/
test_text.py 22 self.assertRaises(Tkinter.TclError, text.search, None, '1.0')
23 self.assertRaises(Tkinter.TclError, text.search, 'a', None)
24 self.assertRaises(Tkinter.TclError, text.search, None, None)
27 self.assertRaises(Tkinter.TclError, text.search, '', 0)
32 self.assertEqual(text.search('-test', '1.0', 'end'), '1.2')
33 self.assertEqual(text.search('test', '1.0', 'end'), '1.3')
  /external/libcxx/test/re/re.alg/re.alg.search/
Android.mk 17 test_makefile := external/libcxx/test/re/re.alg/re.alg.search/Android.mk
19 test_name := re/re.alg/re.alg.search/awk
23 test_name := re/re.alg/re.alg.search/grep
27 test_name := re/re.alg/re.alg.search/egrep
31 test_name := re/re.alg/re.alg.search/ecma
35 test_name := re/re.alg/re.alg.search/extended
39 test_name := re/re.alg/re.alg.search/no_update_pos
43 test_name := re/re.alg/re.alg.search/basic
47 test_name := re/re.alg/re.alg.search/lookahead
51 test_name := re/re.alg/re.alg.search/backu
    [all...]
  /packages/apps/Camera2/tests/exiftool_parser/
parser.py 67 _id = re.search("0x[0-9a-f]{4}", s)
71 name = re.search("[0-9]*?\).*?(?:(?: = )|(?: \(SubDirectory\) -->))", s)
75 value = re.search("\(SubDirectory\) -->", s)
79 value = re.search("\(.*\)\n", s)
83 value = re.search("=.*\n", s)

Completed in 388 milliseconds

1 2 3 4 5 6 7 8 91011>>