/external/libchrome/base/test/ |
trace_event_analyzer.h | 5 // Use trace_analyzer::Query and trace_analyzer::TraceAnalyzer to search for 15 // A Query is a boolean expression tree that evaluates to true or false for a 34 // analyzer.FindEvents(Query(EVENT_NAME) == "my_event", &events); 38 // Query q = (Query(EVENT_NAME) == Query::String("my_event") && 39 // Query(EVENT_PHASE) == Query::Phase(TRACE_EVENT_PHASE_BEGIN) && 40 // Query(EVENT_DURATION) > Query::Double(1000000.0)) 552 const Query& query() const { return query_; } function in class:trace_analyzer::QueryNode [all...] |
trace_event_analyzer_unittest.cc | 83 analyzer->FindEvents(Query::Bool(true), &found); 146 Query event_pid = Query::EventPidIs(event.thread.process_id); 147 Query event_tid = Query::EventTidIs(event.thread.thread_id); 148 Query event_time = Query::EventTimeIs(event.timestamp); 149 Query event_duration = Query::EventDurationIs(duration); 150 Query event_phase = Query::EventPhaseIs(event.phase) [all...] |
trace_event_analyzer.cc | 176 QueryNode::QueryNode(const Query& query) : query_(query) { 182 // Query 184 Query::Query(TraceEventMember member) 192 Query::Query(TraceEventMember member, const std::string& arg_name) 201 Query::Query(const Query& query [all...] |
/art/tools/ahat/src/ |
AhatHandler.java | 29 * Handle the given query, rendering the page to the given document. 31 void handle(Doc doc, Query query) throws IOException;
|
RootedHandler.java | 32 public void handle(Doc doc, Query query) throws IOException { 34 DominatedList.render(mSnapshot, doc, query, ROOTED_ID, mSnapshot.getRooted());
|
SubsetSelector.java | 32 private Query mQuery; 38 * @param id - the name of the query parameter key that should hold 40 * @param query - The query for the current page. This is required so the 46 public SubsetSelector(Query query, String id, List<T> elements) { 47 mQuery = query; 49 mLimit = getSelectedLimit(query, id, elements.size()); 65 * @param query the current page query [all...] |
BitmapHandler.java | 38 Query query = new Query(exchange.getRequestURI()); local 39 long id = query.getLong("id", 0);
|
/external/mesa3d/src/mesa/main/ |
condrender.c | 47 if (!ctx->Extensions.NV_conditional_render || ctx->Query.CondRenderQuery || 53 ASSERT(ctx->Query.CondRenderMode == GL_NONE); 81 ctx->Query.CondRenderQuery = q; 82 ctx->Query.CondRenderMode = mode; 96 if (!ctx->Extensions.NV_conditional_render || !ctx->Query.CondRenderQuery) { 102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery); 104 ctx->Query.CondRenderQuery = NULL; 105 ctx->Query.CondRenderMode = GL_NONE; 124 struct gl_query_object *q = ctx->Query.CondRenderQuery; 127 /* no query in progress - draw normally * [all...] |
queryobj.h | 41 _mesa_HashLookup(ctx->Query.QueryObjects, id);
|
queryobj.c | 41 * Allocate a new query object. This is a fallback routine called via 63 * Begin a query. Software driver fallback. 74 * End a query. Software driver fallback. 85 * Wait for query to complete. Software driver fallback. 91 /* For software drivers, _mesa_end_query() should have completed the query. 100 * Check if a query results are ready. Software driver fallback. 113 * Delete a query object. Called via ctx->Driver.DeleteQuery(). 136 * Return pointer to the query object binding point for the given target. 145 return &ctx->Query.CurrentOcclusionObject; 150 return &ctx->Query.CurrentOcclusionObject [all...] |
/external/v8/src/crankshaft/ |
hydrogen-alias-analysis.h | 27 HAliasing Query(HValue* a, HValue* b) { 55 // {Query(a, b) == kMayAlias}, since this method considers kMustAlias 58 return Query(a, b) != kNoAlias; 62 return Query(a, b) == kMustAlias; 66 return Query(a, b) == kNoAlias;
|
/art/tools/ahat/test/ |
QueryTest.java | 28 Query query = new Query(new URI(uri)); local 29 assertEquals("bar", query.get("foo", "not found")); 30 assertEquals("42", query.get("answer", "not found")); 31 assertEquals(42, query.getLong("answer", 0)); 32 assertEquals(42, query.getInt("answer", 0)); 33 assertEquals("not found", query.get("bar", "not found")); 34 assertEquals("really not found", query.get("bar", "really not found")); 35 assertEquals(0, query.getLong("bar", 0)) 48 Query query = new Query(new URI(uri)); local 62 Query query = new Query(new URI(uri)); local [all...] |
PerformanceTest.java | 48 Query query = new Query(DocString.uri(uri)); local 51 handler.handle(doc, query);
|
/frameworks/opt/chips/src/com/android/ex/chips/ |
Queries.java | 31 public static final Query PHONE = new Query(new String[] { 51 public static final Query EMAIL = new Query(new String[]{ 71 static abstract class Query { 87 public Query(String[] projection, Uri contentFilter, Uri content) {
|
RecipientAlternatesAdapter.java | 38 import com.android.ex.chips.Queries.Query; 98 Queries.Query query; local 100 query = Queries.EMAIL; 102 query = Queries.PHONE; 128 c = context.getContentResolver().query( 129 query.getContentUri(), 130 query.getProjection(), 131 query.getProjection()[Queries.Query.DESTINATION] + " IN ( [all...] |
/external/chromium-trace/catapult/firefighter/default/ |
main.py | 8 from handlers import query 16 ('/query', query.Query),
|
/external/llvm/include/llvm/CodeGen/ |
LiveRegMatrix.h | 51 std::unique_ptr<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);
|
LiveIntervalUnion.h | 59 class Query; 109 /// Query interferences between a single live virtual register and a live 111 class Query { 123 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {} 125 Query(LiveInterval *VReg, LiveIntervalUnion *LIU): 164 // query's live virtual register, up to maxInterferingRegs. 182 Query(const Query&) = delete; 183 void operator=(const Query&) = delete;
|
/external/autotest/frontend/client/src/autotest/common/table/ |
DataSource.java | 55 public interface Query { 59 * Get the total number of results matching this query. After completion, 76 abstract class DefaultQuery implements Query { 101 public void onQueryReady(Query query); 110 public void onQueryReady(Query query) {} 114 public void query(JSONObject params, final DataCallback callback); method in interface:DataSource
|
/system/connectivity/shill/ |
routing_table.h | 49 struct Query { 53 Query() : sequence(0), tag(0), table_id(0) {} 54 Query(uint32_t sequence_in, 142 const Query::Callback& callback, 177 std::deque<Query> route_queries_;
|
/external/autotest/client/cros/cellular/ |
scpi.py | 52 The SCPI driver must export: Query, Send, Reset and Close 60 def Query(self, command): 62 response = self.driver.Query(command) 83 error = self.Query('SYSTem:ERRor?') 88 if '-420' in error and 'Query UNTERMINATED' in error: 110 self.Query('*OPC?') # Wait for operation complete 131 result = self.Query('%s?' % (command,)) 144 self.Query('*OPC?')
|
/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),
|
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/ |
MockContentProvider.java | 43 public static class Query { 59 public Query(Uri uri) { 68 public Query withProjection(String... projection) { 73 public Query withDefaultProjection(String... projection) { 78 public Query withAnyProjection() { 83 public Query withSelection(String selection, String... selectionArgs) { 89 public Query withAnySelection() { 94 public Query withSortOrder(String sortOrder) { 99 public Query withAnySortOrder() { 104 public Query returnRow(ContentValues values) 447 Query query = new Query(contentUri); local 476 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:MockContentProvider 484 Query query = iterator.next(); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DownloadManagerWrapper.java | 20 import android.app.DownloadManager.Query; 84 public Cursor query(final Query query) { method in class:DownloadManagerWrapper 87 return mDownloadManager.query(query); 92 Log.e(TAG, "Can't query the download manager", e);
|
/cts/tests/app/src/android/app/cts/ |
DownloadManagerTest.java | 19 import android.app.DownloadManager.Query; 198 cursor = mDownloadManager.query(new Query().setFilterById(id)); 367 Query query = new Query(); local 368 cursor = mDownloadManager.query(query); 404 Query query = new Query() local 417 Query query = new Query().setFilterById(downloadId); local 433 Query query = new Query().setFilterByStatus(status); local 466 Query query = new Query(); local [all...] |