Searched defs:search (Results 1 - 25 of 82) sorted by relevance

1234

/external/webkit/Source/WebCore/workers/
H A DWorkerLocation.cpp67 String WorkerLocation::search() const function in class:WebCore::WorkerLocation
/external/smack/src/org/jivesoftware/smackx/search/
H A DUserSearch.java17 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 result
209 buildDataForm(SimpleUserSearch search, String instructions, XmlPullParser parser) argument
[all...]
H A DSimpleUserSearch.java17 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\">");
H A DUserSearchManager.java17 package org.jivesoftware.smackx.search;
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.
91 * Returns a collection of search service
[all...]
/external/icu4c/common/
H A Dustack.cpp56 int32_t UStack::search(void* obj) const { function in class:UStack
/external/icu4c/layoutex/
H A DLXUtilities.cpp53 le_int32 LXUtilities::search(le_int32 value, const le_int32 array[], le_int32 count) function in class:LXUtilities
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DIntStack.java188 public int search(int o) method in class:IntStack
H A DObjectStack.java191 public int search(Object o) method in class:ObjectStack
/external/chromium/chrome/browser/chromeos/input_method/
H A Dxkeyboard_unittest.cc22 // - kSearchKey is mapped to |search|.
25 ModifierMap GetMap(ModifierKey search, ModifierKey control, ModifierKey alt) { argument
27 // Use the Search key as |search|.
28 modifier_key.push_back(ModifierKeyPair(kSearchKey, search));
35 // - kSearchKey is mapped to |search|.
39 ModifierKey search, ModifierKey control, ModifierKey alt) {
42 if ((std::count(begin, end, ModifierKeyPair(kSearchKey, search)) == 1) &&
79 tmp_map.push_back(ModifierKeyPair(kSearchKey, kVoidKey)); // two search maps
38 CheckMap(const ModifierMap& modifier_map, ModifierKey search, ModifierKey control, ModifierKey alt) argument
/external/icu4c/layout/
H A DOpenTypeUtilities.cpp112 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/llvm/utils/lit/lit/
H A Ddiscovery.py38 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
/external/clang/utils/
H A Dtoken-delta.py71 res = self.search(c, sets)
82 def search(self, c, sets): member in class:DeltaAlgorithm
/external/elfutils/libelf/
H A Dnlist.c196 struct hashentry search; local
200 search.str = nl->n_name;
201 found = nlist_fshash_find (table, nl->n_name, 0, &search);
223 /* Next search request. */
/external/icu4c/test/perf/strsrchperf/
H A Dstrsrchperf.h56 StringSearchPerfFunction(StrSrchFn func, BoyerMooreSearch *search, const UChar *source, int32_t sourceLen, const UChar *pattern, int32_t patternLen) { argument
62 bms = search;
65 StringSearchPerfFunction(StrSrchFn func, UStringSearch* search, const UChar* source,int32_t sourceLen, const UChar* pattern, int32_t patternLen) { argument
71 srch = search;
104 while (bms->search(offset, start, end)) {
112 /* NOTE: No Boyer-Moore backward search yet... */
113 while (bms->search(offset, start, end)) {
/external/ppp/pppd/plugins/pppoatm/
H A Dtext2atm.c193 static int search(FILE *file,const char *text,struct sockaddr *addr,int length, function
220 result = search(file,text,addr,length,flags);
/external/skia/src/core/
H A DSkTileGrid.cpp54 void SkTileGrid::search(const SkIRect& query, SkTDArray<void*>* results) { function in class:SkTileGrid
/external/skia/src/utils/
H A DSkRTConf.cpp195 static inline void str_replace(char *s, char search, char replace) { argument
197 if (*ptr == search) {
/external/smack/src/org/xbill/DNS/
H A DResolverConfig.java10 * A class that tries to locate name servers and the search path to
15 * <LI>The properties 'dns.server' and 'dns.search' (comma delimited lists)
22 * <LI>"localhost" is used as the nameserver, and the search path is empty.
82 addSearch(String search, List list) { argument
85 System.out.println("adding search " + search);
87 name = Name.fromString(search, Name.root);
128 * Looks in the system properties to find servers and a search path.
130 * The search path is defined by dns.search
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntityParser.cpp255 HTMLEntitySearch search; local
257 search.advance(*name++);
258 if (!search.isEntityPrefix())
261 search.advance(';');
262 UChar32 entityValue = search.currentValue();
/external/webkit/Source/WebCore/page/
H A DLocation.cpp114 String Location::search() const function in class:WebCore::Location
208 void Location::setSearch(const String& search, DOMWindow* activeWindow, DOMWindow* firstWindow) argument
213 url.setQuery(search);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dpeerkey_auth.c41 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
259 struct wpa_stsl_search search; local
330 struct wpa_stsl_search search; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dpeerkey_auth.c41 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
259 struct wpa_stsl_search search; local
330 struct wpa_stsl_search search; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dpeerkey_auth.c41 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
259 struct wpa_stsl_search search; local
330 struct wpa_stsl_search search; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jar ... apache/lucene/index/ org/apache/lucene/queryParser/ org/apache/lucene/search/ org/apache/lucene/search/spans/ org/apache/lucene/store/ org ...
/external/bsdiff/
H A Dbsdiff.c152 static off_t search(off_t *I,u_char *old,off_t oldsize, function
172 return search(I,old,oldsize,new,newsize,x,en,pos);
174 return search(I,old,oldsize,new,newsize,st,x,pos);
278 len=search(I,old,oldsize,new+scan,newsize-scan,

Completed in 571 milliseconds

1234