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

1 2 3 4

  /external/marisa-trie/lib/marisa/
query.h 10 class Query {
12 Query(const char *ptr, std::size_t length) : ptr_(ptr), length_(length) {}
13 Query(const Query &query) : ptr_(query.ptr_), length_(query.length_) {}
33 Query &operator=(const Query &query);
    [all...]
trie-search.cc 75 return lookup_<const Query &>(Query(ptr, length));
92 return find_<const Query &>(Query(ptr, length),
110 return find_<const Query &>(Query(ptr, length),
125 return find_first_<const Query &>(Query(ptr, length), key_length);
139 return find_last_<const Query &>(Query(ptr, length), key_length)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
query.h 10 class Query {
12 Query(const char *ptr, std::size_t length) : ptr_(ptr), length_(length) {}
13 Query(const Query &query) : ptr_(query.ptr_), length_(query.length_) {}
33 Query &operator=(const Query &query);
    [all...]
trie-search.cc 76 return lookup_<const Query &>(Query(ptr, length));
94 return find_<const Query &>(Query(ptr, length),
113 return find_<const Query &>(Query(ptr, length),
129 return find_first_<const Query &>(Query(ptr, length), key_length);
144 return find_last_<const Query &>(Query(ptr, length), key_length)
    [all...]
  /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);
  /frameworks/ex/chips/src/com/android/ex/chips/
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) {
RecipientAlternatesAdapter.java 39 import com.android.ex.chips.Queries.Query;
66 private Query mQuery;
93 Queries.Query query; local
95 query = Queries.EMAIL;
97 query = Queries.PHONE;
122 c = context.getContentResolver().query(
123 query.getContentUri(),
124 query.getProjection(),
125 query.getProjection()[Queries.Query.DESTINATION] + " IN (
    [all...]
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/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/include/llvm/Transforms/Utils/
BlackList.h 55 bool inSection(const StringRef Section, const StringRef Query) const;
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 59 class Query;
103 /// Query interferences between a single live virtual register and a live
105 class Query {
117 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
119 Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
158 // query's live virtual register, up to maxInterferingRegs.
176 Query(const Query&) LLVM_DELETED_FUNCTION;
177 void operator=(const Query&) LLVM_DELETED_FUNCTION;
LiveRegMatrix.h 54 OwningArrayPtr<LiveIntervalUnion::Query> Queries;
135 /// Query a line of the assigned virtual register matrix directly.
137 /// This returns a reference to an internal Query data structure that is only
138 /// valid until the next query() call.
139 LiveIntervalUnion::Query &query(LiveInterval &VirtReg, unsigned RegUnit);
  /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();
  /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),
  /cts/tests/tests/app/src/android/app/cts/
DownloadManagerTest.java 19 import android.app.DownloadManager.Query;
113 cursor = mDownloadManager.query(new Query().setFilterById(id));
282 Query query = new Query(); local
283 cursor = mDownloadManager.query(query);
319 Query query = new Query() local
332 Query query = new Query().setFilterById(downloadId); local
348 Query query = new Query().setFilterByStatus(status); local
381 Query query = new Query(); local
    [all...]
  /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/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryDownloadProgressBar.java 20 import android.app.DownloadManager.Query;
124 final Query query = new Query().setFilterById(mId); local
128 final Cursor cursor = mDownloadManager.query(query);
  /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);
  /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/llvm/lib/Analysis/
InstructionSimplify.cpp 44 struct Query {
49 Query(const DataLayout *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/llvm/lib/CodeGen/
LiveRegMatrix.cpp 57 Queries.reset(new LiveIntervalUnion::Query[NumRegUnits]);
128 LiveIntervalUnion::Query &LiveRegMatrix::query(LiveInterval &VirtReg, function in class:LiveRegMatrix
130 LiveIntervalUnion::Query &Q = Queries[RegUnit];
150 if (query(VirtReg, *Units).checkInterference())
  /external/chromium/base/win/
scoped_comptr.h 90 template <class Query>
91 HRESULT QueryInterface(Query** p) {
  /external/llvm/lib/Transforms/Instrumentation/
BlackList.cpp 117 const StringRef Query) const {
122 return FunctionRegex->match(Query);

Completed in 556 milliseconds

1 2 3 4