HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 251 - 275 of 1947) sorted by null

<<11121314151617181920>>

  /external/chromium_org/components/bookmarks/browser/
bookmark_index_unittest.cc 80 void ExpectMatches(const std::string& query,
86 ExpectMatches(query, title_vector);
89 void ExpectMatches(const std::string& query,
92 model_->GetBookmarksMatching(ASCIIToUTF16(query), 1000, &matches);
143 // all query paths.
147 const std::string query; member in struct:bookmarks::__anon10867::TestData
190 ExpectMatches(data[i].query, expected);
201 const std::string query; member in struct:bookmarks::__anon10867::TestData
250 ExpectMatches(data[i].query, expected);
257 const char* const query; member in struct:bookmarks::__anon10867::TestData
286 const std::string query; member in struct:bookmarks::__anon10867::TestData
326 const std::string query; member in struct:bookmarks::__anon10867::TestData
    [all...]
bookmark_index.h 48 // the text |query| in either the title or the URL.
50 const base::string16& query,
66 // Add |node| to |results| if the node matches the query.
74 // is the first term in the query. Returns true if there is at least one node
101 // Returns the set of query words from |query|.
102 std::vector<base::string16> ExtractQueryWords(const base::string16& query);
  /external/chromium_org/ash/shell/
app_list.cc 158 const base::string16& query)
167 const size_t match_len = query.length();
172 size_t match_start = title.find(query);
177 match_start = title.find(query, match_start + match_len);
289 base::string16 query; variable
290 base::TrimWhitespace(model_->search_box()->text(), base::TRIM_ALL, &query);
291 query = base::i18n::ToLower(query);
294 if (query.empty())
304 query, title, NULL, NULL))
    [all...]
  /frameworks/base/core/java/android/app/
SearchManager.java 85 * to obtain the query string from Intent.ACTION_SEARCH.
87 public final static String QUERY = "query";
93 * to obtain the query string typed in by the user.
94 * This may be different from the value of {@link #QUERY}
96 * In that case, {@link #QUERY} will contain the value of
125 * to obtain the keycode that the user used to trigger this query. It will be zero if the
140 * the initial query should be selected when the global search activity is started, so
141 * that the user can easily replace it with another query.
177 * Flag to specify that the entry can be used for query refinement, i.e., the query tex
    [all...]
  /libcore/luni/src/main/java/java/net/
URL.java 41 * {@code http://username:password@host:8080/directory/file?query#ref}:
49 * <tr><td>{@link #getFile() File}</td><td>{@code /directory/file?query}</td><td></td></tr>
51 * <tr><td>{@link #getQuery() Query}</td><td>{@code query}</td><td></td></tr>
93 private transient String query; field in class:URL
292 query = file.substring(index + 1);
295 query = null;
552 query = file.substring(index + 1);
644 * Returns the query part of this URL, or null if this URL has no query
    [all...]
  /external/chromium_org/content/browser/appcache/
view_appcache_internals_job.cc 109 std::string query(command);
110 query.push_back('=');
111 query.append(param);
113 replacements.SetQuery(query.data(), url::Component(0, query.length()));
216 std::string query(kViewEntryCommand);
217 query.push_back('=');
218 query.append(manifest_url_base64);
219 query.push_back('|');
220 query.append(entry_url_base64)
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
ContactsProviderTest.java 35 * Verifies that query(ContactsContract.Contacts.CONTENT_URI) requires
43 getContext().getContentResolver().query(ContactsContract.Contacts.CONTENT_URI,
45 fail("query(ContactsContract.Contacts.CONTENT_URI) did not throw SecurityException"
71 * Verifies that query(ContactsContract.Profile.CONTENT_URI) requires
79 getContext().getContentResolver().query(ContactsContract.Profile.CONTENT_URI,
81 fail("query(ContactsContract.Profile.CONTENT_URI) did not throw SecurityException"
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_DumpFileProviderTest.java 79 mResolver.query(uri, null, null, null, null);
85 mResolver.query(uri, null, null, null, null);
  /developers/build/prebuilts/gradle/BasicContactables/Application/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.
  /developers/samples/android/content/contacts/BasicContactables/Application/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/BusinessCard/src/com/example/android/businesscard/
ContactAccessorSdk3_4.java 57 Cursor cursor = contentResolver.query(contactUri,
68 cursor = contentResolver.query(phoneUri,
ContactAccessorSdk5.java 63 Cursor cursor = contentResolver.query(contactUri,
75 cursor = contentResolver.query(Phone.CONTENT_URI,
  /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.
  /external/chromium_org/base/test/
trace_event_analyzer.cc 174 QueryNode::QueryNode(const Query& query) : query_(query) {
180 // Query
182 Query::Query(TraceEventMember member)
190 Query::Query(TraceEventMember member, const std::string& arg_name)
199 Query::Query(const Query& query
    [all...]
  /external/chromium_org/chrome/browser/devtools/device/adb/
adb_device_provider.cc 23 std::string query = base::StringPrintf( local
25 AdbClientSocket::AdbQuery(kAdbPort, query, callback);
  /external/chromium_org/chrome/browser/ui/app_list/search/
app_search_provider_unittest.cc 35 std::string RunQuery(const std::string& query) {
36 app_search_->Start(base::UTF8ToUTF16(query));
59 EXPECT_EQ("", RunQuery("unmatched query"));
history_data.h 26 // Primary is a 1-to-1 mapping between the query and result id. Secondary
29 // association. Further associations added to the same query are added as
37 // Defines data to be associated with a query.
42 // Primary result associated with the query.
45 // Secondary results associated with the query from oldest to latest.
63 void Add(const std::string& query, const std::string& result_id);
65 // Gets all known search results that were launched using the given |query|
66 // or the queries that |query| is a prefix of.
67 scoped_ptr<KnownResults> GetKnownResults(const std::string& query) const;
  /external/chromium_org/chrome/browser/ui/app_list/search/people/
people_provider.h 40 virtual void Start(const base::string16& query) OVERRIDE;
60 // Get the full people search query URL. This URL includes the OAuth refresh
62 GURL GetQueryUrl(const std::string& query);
84 // The current query.
  /external/chromium_org/third_party/freetype/src/cache/
ftccache.h 101 FT_Pointer query,
183 FT_Pointer query,
190 FT_Pointer query,
210 #define FTC_CACHE_LOOKUP_CMP( cache, nodecmp, hash, query, node, error ) \
234 _nodcomp( _node, query, _cache, &_list_changed ) ) \
279 error = FTC_Cache_NewNode( _cache, _hash, query, &_node ); \
287 #define FTC_CACHE_LOOKUP_CMP( cache, nodecmp, hash, query, node, error ) \
289 error = FTC_Cache_Lookup( FTC_CACHE( cache ), hash, query, \
  /external/chromium_org/third_party/skia/include/utils/
SkPictureUtils.h 33 * query structures (e.g., rtrees, quad-trees, etc.)
40 virtual void query(const SkRect& queryRect, SkTDArray<SkPixelRef*> *result) = 0;
46 // Simple query structure that just stores a linked list of pixel refs
57 virtual void query(const SkRect& queryRect, SkTDArray<SkPixelRef*> *result) SK_OVERRIDE {
  /external/chromium_org/third_party/skia/src/core/
SkQuadTree.h 55 * Given a query rectangle, populates the passed-in array with the elements it intersects
57 virtual void search(const SkIRect& query, SkTDArray<void*>* results) SK_OVERRIDE;
106 void search(Node* node, const SkIRect& query, SkTDArray<void*>* results) const;
  /external/chromium_org/url/
url_parse_internal.h 68 Component* query,
73 Component* query,
  /external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp 45 // Query function template.
47 T query (const glw::Functions& gl, deUint32 param);
81 // Query function implementations.
83 GLint query<GLint> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
91 GLfloat query<GLfloat> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
99 NegInt query<NegInt> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
101 return NegInt(query<GLint>(gl, param));
105 Boolean query<Boolean> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
113 FloatRange query<FloatRange> (const glw::Functions& gl, deUint32 param) function in namespace:deqp::gles2::Functional::LimitQuery
159 const T value = query<T>(m_context.getRenderContext().getFunctions(), m_limit)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
org.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar 

Completed in 724 milliseconds

<<11121314151617181920>>