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

1 2 3 4 5 6 7

  /external/icu4c/common/
ustack.cpp 56 int32_t UStack::search(void* obj) const { function in class:UStack
  /external/webkit/Source/WebCore/workers/
WorkerLocation.cpp 67 String WorkerLocation::search() const function in class:WebCore::WorkerLocation
  /external/icu4c/layout/
OpenTypeUtilities.cpp 112 le_int32 OpenTypeUtilities::search(le_uint32 value, const le_uint32 array[], le_int32 count) function in class:OpenTypeUtilities
134 le_int32 OpenTypeUtilities::search(le_uint16 value, const le_uint16 array[], le_int32 count) function in class:OpenTypeUtilities
  /external/icu4c/layoutex/
LXUtilities.cpp 53 le_int32 LXUtilities::search(le_int32 value, const le_int32 array[], le_int32 count) function in class:LXUtilities
  /libcore/luni/src/main/java/java/util/
Stack.java 105 public synchronized int search(Object o) { method in class:Stack
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngine.java 16 package com.android.browser.search;
23 * Interface for search engines.
27 // Used if the search engine is Google
31 * Gets the unique name of this search engine.
36 * Gets the human-readable name of this search engine.
41 * Starts a search.
46 * Gets search suggestions.
51 * Checks whether this search engine supports search suggestions.
56 * Closes this search engine
    [all...]
SearchEnginePreference.java 16 package com.android.browser.search;
SearchEngines.java 16 package com.android.browser.search;
64 Log.e(TAG, "Cannot load search engine " + name, exception);
  /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...]
UserSearchManager.java 17 package org.jivesoftware.smackx.search;
33 * The UserSearchManager is a facade built upon Jabber Search Services (JEP-055) to allow for searching
40 * UserSearchManager search = new UserSearchManager(con, "users.jabber.org");
41 * Form searchForm = search.getSearchForm();
44 * ReportedData data = search.getSearchResults(answerForm);
66 * Returns the form to fill out to perform a search.
68 * @param searchService the search service to query.
69 * @return the form to fill out to perform a search.
77 * Submits a search form to the server and returns the resulting information
81 * @param searchService the name of the search service to use
    [all...]
SimpleUserSearch.java 17 package org.jivesoftware.smackx.search;
31 * the mechanism for allowing always type ReportedData to be returned by any search result,
52 buf.append("<query xmlns=\"jabber:iq:search\">");
  /external/apache-xml/src/main/java/org/apache/xml/utils/
IntStack.java 188 public int search(int o) method in class:IntStack
ObjectStack.java 191 public int search(Object o) method in class:ObjectStack
  /external/llvm/utils/lit/lit/
discovery.py 38 ts, relative = search(parent)
50 def search(path): function in function:getTestSuite
70 ts, relative = search(item)
79 parent = search(path_in_suite[:-1])
90 def search(path_in_suite): function in function:getLocalConfig
97 return search(path_in_suite)
127 # Otherwise we have a directory to search for tests, start by getting the
131 # Search for tests.
137 # Search subdirectories.
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 193 static int search(FILE *file,const char *text,struct sockaddr *addr,int length, function
220 result = search(file,text,addr,length,flags);
  /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...]
  /frameworks/base/core/java/android/provider/
Applications.java 49 * The content path for application search.
51 public static final String SEARCH_PATH = "search";
73 * Gets a cursor with application search results.
76 public static Cursor search(ContentResolver resolver, String query) { method in class:Applications
120 * {@link Applications#search(ContentResolver, String)}.
  /external/clang/utils/
token-delta.py 71 res = self.search(c, sets)
82 def search(self, c, sets): member in class:DeltaAlgorithm
  /external/elfutils/libelf/
nlist.c 196 struct hashentry search; local
199 /* Search for a matching entry in the hash table. */
200 search.str = nl->n_name;
201 found = nlist_fshash_find (table, nl->n_name, 0, &search);
223 /* Next search request. */
  /external/skia/src/core/
SkTileGrid.cpp 54 void SkTileGrid::search(const SkIRect& query, SkTDArray<void*>* results) { function in class:SkTileGrid
  /external/webkit/Source/WebCore/html/parser/
HTMLEntityParser.cpp 255 HTMLEntitySearch search; local
257 search.advance(*name++);
258 if (!search.isEntityPrefix())
261 search.advance(';');
262 UChar32 entityValue = search.currentValue();
  /external/webkit/Source/WebCore/page/
Location.cpp 114 String Location::search() const function in class:WebCore::Location
208 void Location::setSearch(const String& search, DOMWindow* activeWindow, DOMWindow* firstWindow)
213 url.setQuery(search);
  /external/wpa_supplicant_8/src/ap/
peerkey_auth.c 41 struct wpa_stsl_search *search = ctx; local
42 if (os_memcmp(search->addr, sm->addr, ETH_ALEN) == 0) {
43 search->sm = sm;
85 struct wpa_stsl_search search; local
104 search.addr = kde.mac_addr;
105 search.sm = NULL;
106 if (wpa_auth_for_each_sta(wpa_auth, wpa_stsl_select_sta, &search) ==
107 0 || search.sm == NULL) {
133 wpa_auth_logger(wpa_auth, search.sm->addr, LOGGER_DEBUG,
136 __wpa_send_eapol(wpa_auth, search.sm
259 struct wpa_stsl_search search; local
330 struct wpa_stsl_search search; local
    [all...]
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryProvider.java 53 * Builds up a UriMatcher for search suggestion and shortcut refresh queries.
67 * Quick Search Box, in which case, the following Uris would be provided and we
82 * Handles all the dictionary searches and suggestion queries from the Search Manager.
85 * the search query as the first element.
105 return search(selectionArgs[0]);
128 private Cursor search(String query) { method in class:DictionaryProvider
151 * Quick Search Box. In which case, this method will query the table for the specific
  /external/icu4c/samples/strsrch/
strsrch.cpp 60 UStringSearch * search = 0; variable
227 * Creates a string search
234 search = usearch_openFromCollator(pattern, -1, source, -1, collator, NULL,
240 usearch_setAttribute(search, USEARCH_OVERLAP, USEARCH_ON, &status);
243 usearch_setAttribute(search, USEARCH_CANONICAL_MATCH, USEARCH_ON,
247 fprintf(stderr, "Error setting search attributes\n");
256 int32_t offset = usearch_next(search, &status);
262 usearch_getMatchedLength(search));
263 offset = usearch_next(search, &status);
269 fprintf(stdout, "End of search\n")
    [all...]

Completed in 230 milliseconds

1 2 3 4 5 6 7