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

1 2 3 4

  /frameworks/ex/chips/src/com/android/ex/chips/
RecipientAlternatesAdapter.java 32 import com.android.ex.chips.Queries.Query;
56 private Query mQuery;
74 Queries.Query query; local
76 query = Queries.EMAIL;
78 query = Queries.PHONE;
98 Cursor c = context.getContentResolver().query(
99 query.getContentUri(),
100 query.getProjection(),
101 query.getProjection()[Queries.Query.DESTINATION] + " IN (" + bindString.toString(
    [all...]
Queries.java 30 public static final Query PHONE = new Query(new String[] {
48 public static final Query EMAIL = new Query(new String[]{
66 static abstract class Query {
80 public Query (String[] projection, Uri contentFilter, Uri content) {
  /external/webkit/Source/WebKit/win/
WebURLAuthenticationChallengeSenderCFNet.cpp 44 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
55 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
67 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
WebURLAuthenticationChallenge.cpp 129 COMPtr<WebURLCredential> webCredential(Query, proposedCredential);
143 COMPtr<WebURLAuthenticationChallengeSender> webSender(Query, sender);
163 COMPtr<WebURLAuthenticationChallenge> webChallenge(Query, challenge);
167 COMPtr<WebURLAuthenticationChallengeSender> webSender(Query, sender);
WebGeolocationPosition.cpp 100 COMPtr<WebGeolocationPosition> webGeolocationPosition(Query, position);
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockContentProvider.java 42 public static class Query {
58 public Query(Uri uri) {
67 public Query withProjection(String... projection) {
72 public Query withDefaultProjection(String... projection) {
77 public Query withAnyProjection() {
82 public Query withSelection(String selection, String... selectionArgs) {
88 public Query withAnySelection() {
93 public Query withSortOrder(String sortOrder) {
98 public Query withAnySortOrder() {
103 public Query returnRow(ContentValues values)
239 Query query = new Query(contentUri); local
249 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:MockContentProvider
253 Query query = iterator.next(); local
    [all...]
  /external/llvm/lib/CodeGen/
LiveIntervalUnion.h 60 class Query;
106 /// Query interferences between a single live virtual register and a live
108 class Query {
120 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
122 Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
161 // query's live virtual register, up to maxInterferingRegs.
183 Query(const Query&); // DO NOT IMPLEMENT
184 void operator=(const Query&); // DO NOT IMPLEMENT
RegAllocBase.h 88 // query on a new live virtual register.
89 OwningArrayPtr<LiveIntervalUnion::Query> Queries;
105 // Get an initialized query to check interferences between lvr and preg. Note
106 // that Query::init must be called at least once for each physical register
109 LiveIntervalUnion::Query &query(LiveInterval &VirtReg, unsigned PhysReg) {
LiveIntervalUnion.cpp 106 bool LiveIntervalUnion::Query::isSeenInterference(LiveInterval *VirtReg) const {
113 // query's live virtual register.
115 // The query state is one of:
121 unsigned LiveIntervalUnion::Query::
186 bool LiveIntervalUnion::Query::checkLoopInterference(MachineLoopRange *Loop) {
  /external/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 49 Query,
67 // Note that this can get a little funny for the port, query, and fragment
73 // delimited components that is present (the port and query) and one that
78 // Example input: http://foo:80/?query
86 // *Query: 14 15 <-
99 URLComponent query; member in class:WTF::URLSegments
URLSegments.cpp 90 if (query.isValid()) {
91 if (type < Query || (type == Query && includeDelimiter))
92 return query.begin() - 1; // Back over delimiter.
93 if (type == Query)
94 return query.begin(); // Don't want delimiter counted.
95 current = query.end();
  /cts/tests/tests/app/src/android/app/cts/
DownloadManagerTest.java 19 import android.app.DownloadManager.Query;
106 cursor = mDownloadManager.query(new Query().setFilterById(id));
256 Query query = new Query(); local
257 cursor = mDownloadManager.query(query);
293 Query query = new Query() local
306 Query query = new Query().setFilterById(downloadId); local
322 Query query = new Query().setFilterByStatus(status); local
355 Query query = new Query(); local
    [all...]
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSOperationCode.java 13 * Query [RFC1035]
15 Query("Query", 0),
17 * IQuery (Inverse Query, Obsolete) [RFC3425]
19 IQuery("Inverse Query", 1),
  /external/v8/test/cctest/
test-decls.cc 71 virtual v8::Handle<Integer> Query(Local<String> key);
127 int get, int set, int query,
140 CHECK_EQ(query, query_count());
177 return context->Query(key);
197 v8::Handle<Integer> DeclarationContext::Query(Local<String> key) {
252 virtual v8::Handle<Integer> Query(Local<String> key) {
307 virtual v8::Handle<Integer> Query(Local<String> key) {
378 virtual v8::Handle<Integer> Query(Local<String> key) {
463 virtual v8::Handle<Integer> Query(Local<String> key) {
511 virtual v8::Handle<Integer> Query(Local<String> key)
    [all...]
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractPublicApiTest.java 48 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
64 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
75 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
128 Cursor cursor = mManager.query(new DownloadManager.Query().setFilterById(mId));
PublicApiFunctionalTest.java 216 Cursor cursor = mManager.query(new DownloadManager.Query());
219 cursor = mManager.query(new DownloadManager.Query().setFilterById(download2.mId));
222 cursor = mManager.query(new DownloadManager.Query()
226 cursor = mManager.query(new DownloadManager.Query()
231 cursor = mManager.query(new DownloadManager.Query()
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 77 COMPtr<EditingDelegate> editingDelegate(Query, viewEditing.get());
190 COMPtr<IWebFramePrivate> framePrivate(Query, frame);
209 COMPtr<IWebViewPrivate> webViewPrivate(Query, webView);
217 COMPtr<IDOMElementPrivate> elementPrivate(Query, element);
370 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
383 COMPtr<IWebViewPrivate> webViewPrivate(Query, webView);
391 COMPtr<IFormsAutoFillTransition> autofillElement(Query, element);
488 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
505 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences);
527 COMPtr<IWebPreferencesPrivate> prefsPrivate(Query, preferences)
    [all...]
AccessibilityControllerWin.cpp 83 // We have an IDispatch; query for IAccessible.
84 return COMPtr<IAccessible>(Query, V_DISPATCH(&vFocus));
93 COMPtr<IWebViewPrivate> viewPrivate(Query, view);
248 COMPtr<IAccessible> childAccessible(Query, childDispatch);
265 COMPtr<IServiceProvider> thisServiceProvider(Query, it->first);
273 COMPtr<IServiceProvider> elementServiceProvider(Query, element);
PolicyDelegate.cpp 139 COMPtr<IPropertyBag> actionElement(Query, V_UNKNOWN(&actionElementVar));
142 COMPtr<IDOMNode> originatingNode(Query, V_UNKNOWN(&originatingNodeVar));
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerBaseTest.java 20 import android.app.DownloadManager.Query;
90 Cursor cursor = dm.query(new Query().setFilterById(id));
290 * @param id The download id to query on (wait for)
294 doWaitForDownloadsOrTimeout(new Query().setFilterById(id),
303 * @param id The download id to query on (wait for)
315 * @param id The download id to query on (wait for)
321 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
335 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis);
343 * @param id The id of the download to query agains
558 Query query = new Query(); local
    [all...]
  /external/chromium/base/win/
scoped_comptr.h 90 template <class Query>
91 HRESULT QueryInterface(Query** p) {
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerBaseTest.java 19 import android.app.DownloadManager.Query;
150 Cursor cursor = dm.query(new Query().setFilterById(id));
485 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId));
645 * @param id The download id to query on (wait for)
657 * @param id The download id to query on (wait for)
670 * @param id The download id to query on (wait for)
676 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis);
690 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis)
996 Query query = new Query(); local
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 44 struct Query {
49 Query(const TargetData *td, const TargetLibraryInfo *tli,
53 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
54 static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
56 static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
58 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
59 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
60 static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
129 unsigned OpcToExpand, const Query &Q,
190 unsigned OpcToExtract, const Query &Q
    [all...]
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebGeolocationClient.cpp 90 COMPtr<IWebUIDelegatePrivate2> uiDelegatePrivate2(Query, uiDelegate);
WebFrameLoaderClient.cpp 197 COMPtr<WebMutableURLRequest> newWebURLRequestImpl(Query, newWebURLRequest);
253 COMPtr<IWebResourceLoadDelegatePrivate> resourceLoadDelegatePrivate(Query, resourceLoadDelegate);
312 COMPtr<IWebFrameLoadDelegatePrivate2> frameLoadDelegatePriv2(Query, frameLoadDelegatePriv);
326 COMPtr<IWebFrameLoadDelegatePrivate2> frameLoadDelegatePriv2(Query, frameLoadDelegatePriv);
340 COMPtr<IWebFrameLoadDelegatePrivate2> frameLoadDelegatePriv2(Query, frameLoadDelegatePriv);
383 COMPtr<IWebFrameLoadDelegatePrivate2> frameLoadDelegatePriv2(Query, frameLoadDelegatePriv);
446 COMPtr<WebFrame> mainFrameImpl(Query, mainFrame);
578 COMPtr<WebHistoryItem> webHistoryItem(Query, iWebHistoryItem);
593 COMPtr<WebHistoryItem> webHistoryItem(Query, iWebHistoryItem);
643 COMPtr<IWebFrameLoadDelegatePrivate2> frameLoadDelegatePriv2(Query, frameLoadDelegatePriv)
    [all...]

Completed in 1380 milliseconds

1 2 3 4