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

1 2 3 4 5 6 7 8 91011

  /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))
647 const Query& query() const { return query_; } function in class:trace_analyzer::QueryNode
    [all...]
trace_event_analyzer_unittest.cc 89 analyzer->FindEvents(Query::Bool(true), &found);
159 Query event_pid = Query::EventPidIs(event.thread.process_id);
160 Query event_tid = Query::EventTidIs(event.thread.thread_id);
161 Query event_time = Query::EventTimeIs(event.timestamp);
162 Query event_duration = Query::EventDurationIs(duration);
163 Query event_phase = Query::EventPhaseIs(event.phase)
    [all...]
trace_event_analyzer.cc 206 QueryNode::QueryNode(const Query& query) : query_(query) {
212 // Query
214 Query::Query(TraceEventMember member)
222 Query::Query(TraceEventMember member, const std::string& arg_name)
231 Query::Query(const Query& query
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Query.cpp 15 // Query.cpp: Implements the gl::Query class
17 #include "Query.h"
25 Query::Query(GLuint name, GLenum type) : NamedObject(name)
33 Query::~Query()
38 void Query::begin()
42 sw::Query::Type type;
47 type = sw::Query::FRAGMENTS_PASSED
    [all...]
Query.h 15 // Query.h: Defines the gl::Query class
31 class Query : public NamedObject
34 Query(GLuint name, GLenum type);
35 virtual ~Query();
47 sw::Query* mQuery;
  /external/swiftshader/src/OpenGL/libGLESv2/
Query.h 15 // Query.h: Defines the es2::Query class
28 class Query : public gl::NamedObject
31 Query(GLuint name, GLenum type);
32 virtual ~Query();
44 sw::Query* mQuery;
Query.cpp 15 // Query.cpp: Implements the es2::Query class
17 #include "Query.h"
25 Query::Query(GLuint name, GLenum type) : NamedObject(name)
33 Query::~Query()
38 void Query::begin()
42 sw::Query::Type type;
47 type = sw::Query::FRAGMENTS_PASSED
    [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 33 public void handle(Doc doc, Query query) throws IOException {
35 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...]
  /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);
  /external/v8/src/crankshaft/
hydrogen-alias-analysis.h 27 HAliasing Query(HValue* a, HValue* b) {
54 // {Query(a, b) == kMayAlias}, since this method considers kMustAlias
57 return Query(a, b) != kNoAlias;
61 return Query(a, b) == kMustAlias;
65 return Query(a, b) == kNoAlias;
  /art/tools/ahat/test/
QueryTest.java 29 Query query = new Query(new URI(uri)); local
30 assertEquals("bar", query.get("foo", "not found"));
31 assertEquals("42", query.get("answer", "not found"));
32 assertEquals(42, query.getLong("answer", 0));
33 assertEquals(42, query.getInt("answer", 0));
34 assertEquals("not found", query.get("bar", "not found"));
35 assertEquals("really not found", query.get("bar", "really not found"));
36 assertEquals(0, query.getLong("bar", 0))
49 Query query = new Query(new URI(uri)); local
63 Query query = new Query(new URI(uri)); local
    [all...]
TestHandler.java 33 * Test that the given handler doesn't crash on the given query.
38 Query query = new Query(DocString.uri(uri)); local
39 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/swiftshader/third_party/LLVM/lib/CodeGen/
LiveIntervalUnion.h 62 class Query;
108 /// Query interferences between a single live virtual register and a live
110 class Query {
122 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {}
124 Query(LiveInterval *VReg, LiveIntervalUnion *LIU):
163 // query's live virtual register, up to maxInterferingRegs.
185 Query(const Query&); // DO NOT IMPLEMENT
186 void operator=(const Query&); // DO NOT IMPLEMENT
  /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
  /packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
MockContentProvider.java 44 public static class Query {
62 private Query() {
66 private Query(UriMatcher matcher) {
71 public Query(Uri uri) {
80 public Query withProjection(String... projection) {
85 public Query withDefaultProjection(String... projection) {
90 public Query withAnyProjection() {
95 public Query withSelection(String selection, String... selectionArgs) {
101 public Query withAnySelection() {
106 public Query withSortOrder(String sortOrder)
516 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:MockContentProvider
524 Query query = iterator.next(); local
    [all...]
  /test/vts/web/dashboard/src/main/java/com/android/vts/servlet/
ShowPreferencesServlet.java 26 import com.google.appengine.api.datastore.Query;
27 import com.google.appengine.api.datastore.Query.Filter;
28 import com.google.appengine.api.datastore.Query.FilterOperator;
29 import com.google.appengine.api.datastore.Query.FilterPredicate;
116 // Query for the favorites entities matching the current user
119 Query q = new Query(UserFavoriteEntity.KIND).setFilter(propertyFilter);
128 // Query for the tests specified by the user favorite entities
131 q = new Query(TestEntity.KIND).setFilter(propertyFilter).setKeysOnly();
142 for (Entity result : datastore.prepare(new Query(TestEntity.KIND)).asIterable())
    [all...]
  /test/vts/web/dashboard/src/main/java/com/android/vts/util/
PerformanceUtil.java 26 import com.google.appengine.api.datastore.Query;
27 import com.google.appengine.api.datastore.Query.Filter;
28 import com.google.appengine.api.datastore.Query.FilterOperator;
29 import com.google.appengine.api.datastore.Query.FilterPredicate;
179 * @param selectedDevice The name of the device whose data to query for, or null for unfiltered.
195 Query testRunQuery = new Query(TestRunEntity.KIND)
201 Query deviceQuery = new Query(DeviceInfoEntity.KIND)
208 Query q = new Query(ProfilingPointRunEntity.KIND).setAncestor(testRun.getKey())
    [all...]
EmailHelper.java 21 import com.google.appengine.api.datastore.Query;
22 import com.google.appengine.api.datastore.Query.Filter;
23 import com.google.appengine.api.datastore.Query.FilterOperator;
24 import com.google.appengine.api.datastore.Query.FilterPredicate;
61 Query favoritesQuery = new Query(UserFavoriteEntity.KIND).setFilter(testFilter);

Completed in 806 milliseconds

1 2 3 4 5 6 7 8 91011