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

1 2 3 4 5 6 7 8 9

  /external/chromium_org/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))
547 const Query& query() const { return query_; } function in class:trace_analyzer::QueryNode
    [all...]
trace_event_analyzer_unittest.cc 80 analyzer->FindEvents(Query::Bool(true), &found);
143 Query event_pid = Query::EventPidIs(event.thread.process_id);
144 Query event_tid = Query::EventTidIs(event.thread.thread_id);
145 Query event_time = Query::EventTimeIs(event.timestamp);
146 Query event_duration = Query::EventDurationIs(duration);
147 Query event_phase = Query::EventPhaseIs(event.phase)
    [all...]
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/third_party/angle/src/libGLESv2/
Query.cpp 8 // Query.cpp: Implements the gl::Query class
10 #include "libGLESv2/Query.h"
17 Query::Query(rx::Renderer *renderer, GLenum type, GLuint id) : RefCountObject(id)
22 Query::~Query()
27 void Query::begin()
32 void Query::end()
37 GLuint Query::getResult(
    [all...]
Query.h 7 // Query.h: Defines the gl::Query class
27 class Query : public RefCountObject
30 Query(rx::Renderer *renderer, GLenum type, GLuint id);
31 virtual ~Query();
43 DISALLOW_COPY_AND_ASSIGN(Query);
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/gpu/command_buffer/service/
query_manager.h 32 class GPU_EXPORT Query : public base::RefCounted<Query> {
34 Query(
75 virtual ~Query();
122 friend class base::RefCounted<Query>;
126 // The manager that owns this Query.
129 // The type of query.
132 // The shared memory used with this Query.
157 // Creates a Query for the given query
    [all...]
query_manager.cc 59 : public QueryManager::Query,
78 : Query(manager, target, shm_id, shm_offset) {
116 // query.
137 class AllSamplesPassedQuery : public QueryManager::Query {
151 // Service side query id.
158 : Query(manager, target, shm_id, shm_offset),
196 class CommandsIssuedQuery : public QueryManager::Query {
215 : Query(manager, target, shm_id, shm_offset) {
243 class CommandLatencyQuery : public QueryManager::Query {
259 : Query(manager, target, shm_id, shm_offset)
469 Query* query = queries_.begin()->second.get(); local
477 scoped_refptr<Query> query; local
536 Query* query = it->second.get(); local
640 Query* query = pending_queries_.front().get(); local
660 Query* query = pending_transfer_queries_.front().get(); local
    [all...]
  /external/chromium_org/v8/src/
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;
  /external/chromium_org/cc/resources/
texture_uploader.h 56 class Query {
58 static scoped_ptr<Query> Create(gpu::gles2::GLES2Interface* gl) {
59 return make_scoped_ptr(new Query(gl));
62 virtual ~Query();
73 explicit Query(gpu::gles2::GLES2Interface* gl);
81 DISALLOW_COPY_AND_ASSIGN(Query);
103 ScopedPtrDeque<Query> pending_queries_;
104 ScopedPtrDeque<Query> available_queries_;
texture_uploader.cc 43 TextureUploader::Query::Query(GLES2Interface* gl)
52 TextureUploader::Query::~Query() { gl_->DeleteQueriesEXT(1, &query_id_); }
54 void TextureUploader::Query::Begin() {
60 void TextureUploader::Query::End() {
64 bool TextureUploader::Query::IsPending() {
71 unsigned TextureUploader::Query::Value() {
96 for (ScopedPtrDeque<Query>::iterator it = pending_queries_.begin();
120 available_queries_.push_back(Query::Create(gl_))
    [all...]
  /frameworks/base/libs/hwui/
Query.h 28 * A Query instance can be used to perform occlusion queries. If the device
29 * does not support occlusion queries, the result of a query will always be
32 * To run an occlusion query successfully, you must start end end the query:
34 * Query query;
35 * query.begin();
37 * query.end();
38 * GLuint result = query.getResult();
40 class Query {
    [all...]
  /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 39 import com.android.ex.chips.Queries.Query;
96 Queries.Query query; local
98 query = Queries.EMAIL;
100 query = Queries.PHONE;
125 c = context.getContentResolver().query(
126 query.getContentUri(),
127 query.getProjection(),
128 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/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 53 std::unique_ptr<LiveIntervalUnion::Query[]> Queries;
134 /// Query a line of the assigned virtual register matrix directly.
136 /// This returns a reference to an internal Query data structure that is only
137 /// valid until the next query() call.
138 LiveIntervalUnion::Query &query(LiveInterval &VirtReg, unsigned RegUnit);
  /external/chromium_org/gpu/command_buffer/client/
query_tracker.h 79 class GLES2_IMPL_EXPORT Query {
88 Query(GLuint id, GLenum target, const QuerySyncManager::QueryInfo& info);
150 uint64 client_begin_time_us_; // Only used for latency query target.
157 Query* CreateQuery(GLuint id, GLenum target);
158 Query* GetQuery(GLuint id);
164 typedef base::hash_map<GLuint, Query*> QueryMap;
165 typedef std::list<Query*> QueryList;
query_tracker.cc 88 QueryTracker::Query::Query(GLuint id, GLenum target,
102 void QueryTracker::Query::Begin(GLES2Implementation* gl) {
124 void QueryTracker::Query::End(GLES2Implementation* gl) {
129 // There was no error so start the query on the serivce.
134 // set the query as completed and return the error.
148 bool QueryTracker::Query::CheckResultsAvailable(
183 uint32 QueryTracker::Query::GetResult() const {
203 QueryTracker::Query* QueryTracker::CreateQuery(GLuint id, GLenum target) {
210 Query* query = new Query(id, target, info) local
226 Query* query = it->second; local
245 Query* query = *it; local
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestWin.py 34 'query', key]
46 def Query(self, key, value=None):
82 text = self.Query(key, value)
99 if not self.Query(key):
  /external/chromium_org/chrome/test/gpu/
gpu_feature_browsertest.cc 35 using trace_analyzer::Query;
133 analyzer_->FindEvents(Query::EventNameIs(event_name), &events);
395 Query query_raf =
396 (Query::EventPhaseIs(TRACE_EVENT_PHASE_BEGIN) ||
397 Query::EventPhaseIs(TRACE_EVENT_PHASE_ASYNC_BEGIN)) &&
398 Query::EventNameIs("___RafWithNoDamage___");
443 Query find_creates = Query::MatchBeginName(create_event);
444 Query find_resizes = Query::MatchBeginName(resize_event) &
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/tab_capture/
tab_capture_performancetest.cc 145 trace_analyzer::Query query = local
146 trace_analyzer::Query::EventNameIs(event_name) &&
147 (trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_BEGIN) ||
148 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_COMPLETE) ||
149 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_ASYNC_BEGIN) ||
150 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_FLOW_BEGIN) ||
151 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_INSTANT));
152 analyzer->FindEvents(query, &events);

Completed in 710 milliseconds

1 2 3 4 5 6 7 8 9