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

1 2 3 4 5

  /external/smack/src/org/xbill/DNS/
Opcode.java 13 /** A standard query */
14 public static final int QUERY = 0;
16 /** An inverse query (deprecated) */
38 opcodes.add(QUERY, "QUERY");
  /packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
WebConcurrency.java 38 private static final String QUERY = "hillary clinton";
58 checkSourceConcurrent("WEB", webComponent, QUERY, DELAY_MS);
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
SearchViewModifier.java 28 public static final int QUERY = 1;
46 case QUERY:
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_input_unittest.cc 31 { ASCIIToUTF16("foo.-com"), AutocompleteInput::QUERY },
39 { ASCIIToUTF16("foo bar.com"), AutocompleteInput::QUERY },
40 { ASCIIToUTF16("foo bar"), AutocompleteInput::QUERY },
41 { ASCIIToUTF16("foo+bar"), AutocompleteInput::QUERY },
43 { ASCIIToUTF16("\"foo:bar\""), AutocompleteInput::QUERY },
48 { ASCIIToUTF16("foo.com:123456"), AutocompleteInput::QUERY },
49 { ASCIIToUTF16("foo.com:abc"), AutocompleteInput::QUERY },
50 { ASCIIToUTF16("1.2.3.4:abc"), AutocompleteInput::QUERY },
68 { ASCIIToUTF16("host?query"), AutocompleteInput::UNKNOWN },
70 { ASCIIToUTF16("host/path?query"), AutocompleteInput::URL }
    [all...]
autocomplete_input.cc 112 case QUERY: return "query";
113 case FORCED_QUERY: return "forced-query";
134 // as a query.
205 return QUERY;
233 &http_parts.query,
262 // between an HTTP URL and a query, or the scheme is HTTP or HTTPS, in which
267 return QUERY;
293 return QUERY; // Could be a broken IP address, etc.
300 // than a search query
    [all...]
autocomplete_input.h 16 // The user input for an autocomplete query. Allows copying.
20 // cannot be opened as a URL, so it is marked as a QUERY; yet the user
27 QUERY, // Input autodetected as a query
28 FORCED_QUERY, // Input forced to be a query by an initial '?'
31 // Enumeration of the possible match query types. Callers who only need some
38 // higher-level "synchronous" query.
79 // |text| and |cursor_position| represent the input query and location of
80 // the cursor with the query respectively. |cursor_position| may be set to
90 // use it to perform query refinement. For example, if it is set to an imag
    [all...]
  /frameworks/base/core/java/android/provider/
SearchRecentSuggestions.java 38 * incoming query is as follows:
51 * <a href="{@docRoot}guide/topics/search/adding-recent-query-suggestions.html">Adding Recent Query
63 public static final String QUERY = "query";
75 SuggestionColumns.QUERY,
87 SuggestionColumns.QUERY,
93 /** Index into the provided query projections. For use with Cursor.update methods. */
95 /** Index into the provided query projections. For use with Cursor.update methods. */
97 /** Index into the provided query projections. For use with Cursor.update methods. *
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_unittest.cc 110 // Runs a query on the input "a", and makes sure both providers' input is
241 TEST_F(AutocompleteProviderTest, Query) {
287 { ASCIIToUTF16("foo;bar"), AutocompleteInput::QUERY },
289 { ASCIIToUTF16("foo bar.com"), AutocompleteInput::QUERY },
290 { ASCIIToUTF16("foo bar"), AutocompleteInput::QUERY },
291 { ASCIIToUTF16("foo+bar"), AutocompleteInput::QUERY },
293 { ASCIIToUTF16("\"foo:bar\""), AutocompleteInput::QUERY },
298 { ASCIIToUTF16("foo.com:123456"), AutocompleteInput::QUERY },
299 { ASCIIToUTF16("foo.com:abc"), AutocompleteInput::QUERY },
300 { ASCIIToUTF16("1.2.3.4:abc"), AutocompleteInput::QUERY },
    [all...]
builtin_provider.cc 31 (input.type() == AutocompleteInput::QUERY) ||
  /developers/samples/android/content/contacts/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /development/samples/browseable/BasicContactables/src/com.example.android.basiccontactables/
MainActivity.java 28 * and uses it as a query to search the contacts database via the Contactables
34 public static final String QUERY_KEY = "query";
61 // SearchManager.QUERY is the key that a SearchManager will use to send a query string
63 String query = intent.getStringExtra(SearchManager.QUERY); local
65 // We need to create a bundle containing the query string to send along to the
68 bundle.putString(QUERY_KEY, query);
72 // Start the loader with the new query, and an object that will handle all callbacks.
  /packages/services/Telephony/src/com/android/phone/
ProcessOutgoingCallTest.java 59 newIntent.putExtra(SearchManager.QUERY, number.substring(2));
  /bionic/libc/netbsd/resolv/
res_mkquery.c 4 * Copyright (c) 2008 Android Open Source Project (query id randomization)
118 int op, /* opcode of query */
120 int class, int type, /* class and type of query */
124 u_char *buf, /* buffer to put query */
160 case QUERY: /*FALLTHROUGH*/
173 if (op == QUERY || data == NULL)
233 u_char *buf, /* buffer to put query */
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchQueryResults.java 52 // get and process search query here
66 * This is where we check the incoming intent for a query string.
74 // get and process search query here
88 * In a "real" application, you would use the query string to select results from
93 // The search query is provided as an "extra" string in the query intent
94 final String queryString = queryIntent.getStringExtra(SearchManager.QUERY);
97 // Record the query string in the recent queries suggestions provider.
103 // you will receive it as an "extra" bundle in the query intent.
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListActivity.java 46 // as the query is typed.
63 // Check if this activity instance has been triggered as a result of a search query. This
69 // Fetch query from intent and notify the fragment that it should display search
71 String searchQuery = getIntent().getStringExtra(SearchManager.QUERY);
  /external/chromium/chrome/browser/autofill/
form_structure.h 50 // Encodes the XML query request for the set of forms.
59 // Parses the field types from the server query response. |forms| must be the
60 // same as the one passed to EncodeQueryRequest when constructing the query.
128 QUERY,
136 // it is a query or upload.
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/
popup.js 6 * Global variable containing the query we'd like to pass to Flickr. In this
11 var QUERY = 'kittens';
26 'text=' + encodeURIComponent(QUERY) + '&' +
  /cts/tests/tests/content/src/android/content/cts/
AvailableIntentsTest.java 77 intent.putExtra(SearchManager.QUERY, uri);
88 intent.putExtra(SearchManager.QUERY, uri);
99 intent.putExtra(SearchManager.QUERY, searchString);
  /external/chromium/googleurl/src/
url_parse.h 118 QUERY,
137 // Note that this can get a little funny for the port, query, and ref
143 // delimited components that is present (the port and query) and one that
148 // Example input: http://foo:80/?query
156 // *QUERY: 14 15 <-
193 // a question mark but no query string.
194 Component query; member in struct:url_parse::Parsed
235 // MailtoURL is for mailto: urls. They are made up scheme,path,query
310 // Extract the first key/value from the range defined by |*query|. Updates
311 // |*query| to start at the end of the extracted key/value pair. This i
    [all...]
  /external/chromium_org/components/autofill/core/browser/
form_structure.h 71 // Encodes the XML query request for the set of forms.
80 // Parses the field types from the server query response. |forms| must be the
81 // same as the one passed to EncodeQueryRequest when constructing the query.
114 // Returns true if we should query the crowdsourcing server to determine this
183 QUERY,
189 // it is a query or upload.
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractSource.java 78 public Intent createSearchIntent(String query, Bundle appData) {
79 return createSourceSearchIntent(getIntentComponent(), query, appData);
82 public static Intent createSourceSearchIntent(ComponentName activity, String query,
94 intent.putExtra(SearchManager.USER_QUERY, query);
95 intent.putExtra(SearchManager.QUERY, query);
SuggestionUtils.java 38 String query = suggestion.getSuggestionQuery(); local
52 if (query != null) {
53 intent.putExtra(SearchManager.QUERY, query);
73 String query = makeKeyComponent(normalizeUrl(suggestion.getSuggestionQuery())); local
76 int size = action.length() + 2 + data.length() + query.length();
82 .append(query)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/arpa/
nameser_compat.h 42 * Structure for query header. The order of the fields is machine- and
49 unsigned id :16; /* query identification number */
104 #define QUERY ns_o_query
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
nameser_compat.h 42 * Structure for query header. The order of the fields is machine- and
49 unsigned id :16; /* query identification number */
104 #define QUERY ns_o_query
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/arpa/
nameser_compat.h 42 * Structure for query header. The order of the fields is machine- and
49 unsigned id :16; /* query identification number */
104 #define QUERY ns_o_query

Completed in 608 milliseconds

1 2 3 4 5