/external/chromium_org/base/test/ |
D | trace_event_analyzer.h | 171 class Query { 173 Query(const Query& query); 175 ~Query(); 181 static Query String(const std::string& str); 184 static Query Double(double num); 185 static Query Int(int32 num); 186 static Query Uint(uint32 num); 189 static Query Bool(bool boolean); 192 static Query Phase(char phase); 196 static Query Pattern(const std::string& pattern); [all …]
|
D | trace_event_analyzer_unittest.cc | 80 analyzer->FindEvents(Query::Bool(true), &found); in TEST_F() 143 Query event_pid = Query::EventPidIs(event.thread.process_id); in TEST_F() 144 Query event_tid = Query::EventTidIs(event.thread.thread_id); in TEST_F() 145 Query event_time = Query::EventTimeIs(event.timestamp); in TEST_F() 146 Query event_duration = Query::EventDurationIs(duration); in TEST_F() 147 Query event_phase = Query::EventPhaseIs(event.phase); in TEST_F() 148 Query event_category = Query::EventCategoryIs(event.category); in TEST_F() 149 Query event_name = Query::EventNameIs(event.name); in TEST_F() 150 Query event_id = Query::EventIdIs(event.id); in TEST_F() 151 Query event_has_arg1 = Query::EventHasNumberArg("num"); in TEST_F() [all …]
|
D | trace_event_analyzer.cc | 174 QueryNode::QueryNode(const Query& query) : query_(query) { in QueryNode() 182 Query::Query(TraceEventMember member) in Query() function in trace_analyzer::Query 190 Query::Query(TraceEventMember member, const std::string& arg_name) in Query() function in trace_analyzer::Query 199 Query::Query(const Query& query) in Query() function in trace_analyzer::Query 210 Query::~Query() { in ~Query() 213 Query Query::String(const std::string& str) { in String() 214 return Query(str); in String() 217 Query Query::Double(double num) { in Double() 218 return Query(num); in Double() 221 Query Query::Int(int32 num) { in Int() [all …]
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
D | Query.cpp | 17 Query::Query(rx::Renderer *renderer, GLenum type, GLuint id) : RefCountObject(id) in Query() function in gl::Query 22 Query::~Query() in ~Query() 27 void Query::begin() in begin() 32 void Query::end() in end() 37 GLuint Query::getResult() in getResult() 42 GLboolean Query::isResultAvailable() in isResultAvailable() 47 GLenum Query::getType() const in getType() 52 bool Query::isStarted() const in isStarted()
|
D | Query.h | 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/gpu/command_buffer/service/ |
D | query_manager.h | 32 class GPU_EXPORT Query : public base::RefCounted<Query> { 34 Query( 75 virtual ~Query(); 122 friend class base::RefCounted<Query>; 158 Query* CreateQuery( 162 Query* GetQuery(GLuint client_id); 168 bool BeginQuery(Query* query); 171 bool EndQuery(Query* query, base::subtle::Atomic32 submit_count); 195 void StartTracking(Query* query); 196 void StopTracking(Query* query); [all …]
|
D | query_manager.cc | 59 : public QueryManager::Query, 78 : Query(manager, target, shm_id, shm_offset) { in AsyncPixelTransfersCompletedQuery() 137 class AllSamplesPassedQuery : public QueryManager::Query { 158 : Query(manager, target, shm_id, shm_offset), in AllSamplesPassedQuery() 196 class CommandsIssuedQuery : public QueryManager::Query { 215 : Query(manager, target, shm_id, shm_offset) { in CommandsIssuedQuery() 243 class CommandLatencyQuery : public QueryManager::Query { 259 : Query(manager, target, shm_id, shm_offset) { in CommandLatencyQuery() 288 : public QueryManager::Query, 310 : Query(manager, target, shm_id, shm_offset), in AsyncReadPixelsCompletedQuery() [all …]
|
D | query_manager_unittest.cc | 62 QueryManager::Query* CreateQuery( in CreateQuery() 71 void QueueQuery(QueryManager::Query* query, in QueueQuery() 159 scoped_refptr<QueryManager::Query> query( in TEST_F() 181 scoped_refptr<QueryManager::Query> query( in TEST_F() 201 scoped_refptr<QueryManager::Query> query( in TEST_F() 225 scoped_refptr<QueryManager::Query> query( in TEST_F() 296 scoped_refptr<QueryManager::Query> query1( in TEST_F() 300 scoped_refptr<QueryManager::Query> query2( in TEST_F() 304 scoped_refptr<QueryManager::Query> query3( in TEST_F() 400 scoped_refptr<QueryManager::Query> query( in TEST_F() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | condrender.c | 47 if (!ctx->Extensions.NV_conditional_render || ctx->Query.CondRenderQuery || in _mesa_BeginConditionalRender() 53 ASSERT(ctx->Query.CondRenderMode == GL_NONE); in _mesa_BeginConditionalRender() 81 ctx->Query.CondRenderQuery = q; in _mesa_BeginConditionalRender() 82 ctx->Query.CondRenderMode = mode; in _mesa_BeginConditionalRender() 96 if (!ctx->Extensions.NV_conditional_render || !ctx->Query.CondRenderQuery) { in _mesa_EndConditionalRender() 102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery); in _mesa_EndConditionalRender() 104 ctx->Query.CondRenderQuery = NULL; in _mesa_EndConditionalRender() 105 ctx->Query.CondRenderMode = GL_NONE; in _mesa_EndConditionalRender() 124 struct gl_query_object *q = ctx->Query.CondRenderQuery; in _mesa_check_conditional_render() 131 switch (ctx->Query.CondRenderMode) { in _mesa_check_conditional_render() [all …]
|
D | queryobj.c | 145 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point() 150 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point() 155 return &ctx->Query.CurrentTimerObject; in get_query_binding_point() 161 return &ctx->Query.PrimitivesGenerated; in get_query_binding_point() 166 return &ctx->Query.PrimitivesWritten; in get_query_binding_point() 192 if (ctx->Query.CurrentOcclusionObject || in _mesa_GenQueriesARB() 193 ctx->Query.CurrentTimerObject) { in _mesa_GenQueriesARB() 198 first = _mesa_HashFindFreeKeyBlock(ctx->Query.QueryObjects, n); in _mesa_GenQueriesARB() 209 _mesa_HashInsert(ctx->Query.QueryObjects, first + i, q); in _mesa_GenQueriesARB() 232 if (ctx->Query.CurrentOcclusionObject || in _mesa_DeleteQueriesARB() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | condrender.c | 47 if (!ctx->Extensions.NV_conditional_render || ctx->Query.CondRenderQuery || in _mesa_BeginConditionalRender() 53 ASSERT(ctx->Query.CondRenderMode == GL_NONE); in _mesa_BeginConditionalRender() 81 ctx->Query.CondRenderQuery = q; in _mesa_BeginConditionalRender() 82 ctx->Query.CondRenderMode = mode; in _mesa_BeginConditionalRender() 96 if (!ctx->Extensions.NV_conditional_render || !ctx->Query.CondRenderQuery) { in _mesa_EndConditionalRender() 102 ctx->Driver.EndConditionalRender(ctx, ctx->Query.CondRenderQuery); in _mesa_EndConditionalRender() 104 ctx->Query.CondRenderQuery = NULL; in _mesa_EndConditionalRender() 105 ctx->Query.CondRenderMode = GL_NONE; in _mesa_EndConditionalRender() 124 struct gl_query_object *q = ctx->Query.CondRenderQuery; in _mesa_check_conditional_render() 131 switch (ctx->Query.CondRenderMode) { in _mesa_check_conditional_render() [all …]
|
D | queryobj.c | 145 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point() 150 return &ctx->Query.CurrentOcclusionObject; in get_query_binding_point() 155 return &ctx->Query.CurrentTimerObject; in get_query_binding_point() 161 return &ctx->Query.PrimitivesGenerated; in get_query_binding_point() 166 return &ctx->Query.PrimitivesWritten; in get_query_binding_point() 192 if (ctx->Query.CurrentOcclusionObject || in _mesa_GenQueriesARB() 193 ctx->Query.CurrentTimerObject) { in _mesa_GenQueriesARB() 198 first = _mesa_HashFindFreeKeyBlock(ctx->Query.QueryObjects, n); in _mesa_GenQueriesARB() 209 _mesa_HashInsert(ctx->Query.QueryObjects, first + i, q); in _mesa_GenQueriesARB() 232 if (ctx->Query.CurrentOcclusionObject || in _mesa_DeleteQueriesARB() [all …]
|
/external/chromium_org/chrome/test/gpu/ |
D | gpu_feature_browsertest.cc | 35 using trace_analyzer::Query; 133 analyzer_->FindEvents(Query::EventNameIs(event_name), &events); in RunEventTest() 395 Query query_raf = in IN_PROC_BROWSER_TEST_F() 396 (Query::EventPhaseIs(TRACE_EVENT_PHASE_BEGIN) || in IN_PROC_BROWSER_TEST_F() 397 Query::EventPhaseIs(TRACE_EVENT_PHASE_ASYNC_BEGIN)) && in IN_PROC_BROWSER_TEST_F() 398 Query::EventNameIs("___RafWithNoDamage___"); in IN_PROC_BROWSER_TEST_F() 443 Query find_creates = Query::MatchBeginName(create_event); in IN_PROC_BROWSER_TEST_F() 444 Query find_resizes = Query::MatchBeginName(resize_event) && in IN_PROC_BROWSER_TEST_F() 445 Query::EventHasNumberArg("old_width") && in IN_PROC_BROWSER_TEST_F() 446 Query::EventHasNumberArg("new_width"); in IN_PROC_BROWSER_TEST_F() [all …]
|
/external/chromium_org/cc/resources/ |
D | texture_uploader.h | 56 class Query { 58 static scoped_ptr<Query> Create(gpu::gles2::GLES2Interface* gl) { in Create() 59 return make_scoped_ptr(new Query(gl)); in Create() 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_;
|
D | texture_uploader.cc | 43 TextureUploader::Query::Query(GLES2Interface* gl) in Query() function in cc::TextureUploader::Query 52 TextureUploader::Query::~Query() { gl_->DeleteQueriesEXT(1, &query_id_); } in ~Query() 54 void TextureUploader::Query::Begin() { in Begin() 60 void TextureUploader::Query::End() { in End() 64 bool TextureUploader::Query::IsPending() { in IsPending() 71 unsigned TextureUploader::Query::Value() { in Value() 96 for (ScopedPtrDeque<Query>::iterator it = pending_queries_.begin(); in MarkPendingUploadsAsNonBlocking() 120 available_queries_.push_back(Query::Create(gl_)); in BeginQuery()
|
/external/chromium_org/gpu/command_buffer/client/ |
D | query_tracker.cc | 88 QueryTracker::Query::Query(GLuint id, GLenum target, in Query() function in gpu::gles2::QueryTracker::Query 102 void QueryTracker::Query::Begin(GLES2Implementation* gl) { in Begin() 124 void QueryTracker::Query::End(GLES2Implementation* gl) { in End() 148 bool QueryTracker::Query::CheckResultsAvailable( in CheckResultsAvailable() 183 uint32 QueryTracker::Query::GetResult() const { in GetResult() 203 QueryTracker::Query* QueryTracker::CreateQuery(GLuint id, GLenum target) { in CreateQuery() 210 Query* query = new Query(id, target, info); in CreateQuery() 217 QueryTracker::Query* QueryTracker::GetQuery( in GetQuery() 226 Query* query = it->second; in RemoveQuery() 245 Query* query = *it; in FreeCompletedQueries()
|
D | query_tracker.h | 79 class GLES2_IMPL_EXPORT Query { 88 Query(GLuint id, GLenum target, const QuerySyncManager::QueryInfo& info); 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;
|
D | query_tracker_unittest.cc | 102 QuerySync* GetSync(QueryTracker::Query* query) { in GetSync() 106 QuerySyncManager::Bucket* GetBucket(QueryTracker::Query* query) { in GetBucket() 123 QueryTracker::Query* query = query_tracker_->CreateQuery( in TEST_F() 136 TEST_F(QueryTrackerTest, Query) { in TEST_F() argument 142 QueryTracker::Query* query = query_tracker_->CreateQuery( in TEST_F() 208 QueryTracker::Query* query = query_tracker_->CreateQuery( in TEST_F()
|
/external/llvm/include/llvm/CodeGen/ |
D | LiveIntervalUnion.h | 59 class Query; variable 105 class Query { 117 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {} in Query() function 119 Query(LiveInterval *VReg, LiveIntervalUnion *LIU): in Query() function 176 Query(const Query&) LLVM_DELETED_FUNCTION; 177 void operator=(const Query&) LLVM_DELETED_FUNCTION;
|
/external/chromium_org/chrome/browser/extensions/api/tab_capture/ |
D | tab_capture_performancetest.cc | 145 trace_analyzer::Query query = in PrintResults() 146 trace_analyzer::Query::EventNameIs(event_name) && in PrintResults() 147 (trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_BEGIN) || in PrintResults() 148 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_COMPLETE) || in PrintResults() 149 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_ASYNC_BEGIN) || in PrintResults() 150 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_FLOW_BEGIN) || in PrintResults() 151 trace_analyzer::Query::EventPhaseIs(TRACE_EVENT_PHASE_INSTANT)); in PrintResults()
|
/external/chromium_org/v8/src/ |
D | hydrogen-alias-analysis.h | 27 HAliasing Query(HValue* a, HValue* b) { in Query() function 58 return Query(a, b) != kNoAlias; in MayAlias() 62 return Query(a, b) == kMustAlias; in MustAlias() 66 return Query(a, b) == kNoAlias; in NoAlias()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 44 struct Query { struct 49 Query(const DataLayout *DL, const TargetLibraryInfo *tli, in Query() argument 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, in ExpandBinOp() 188 const Query &Q, unsigned MaxRecurse) { in SimplifyAssociativeBinOp() [all …]
|
/external/chromium_org/tools/gyp/test/lib/ |
D | TestWin.py | 46 def Query(self, key, value=None): member in Registry 82 text = self.Query(key, value) 99 if not self.Query(key):
|
/external/llvm/lib/Support/ |
D | SpecialCaseList.cpp | 44 bool match(StringRef Query) const { in match() 45 return Strings.count(Query) || (RegEx && RegEx->match(Query)); in match() 160 bool SpecialCaseList::inSection(const StringRef Section, const StringRef Query, in inSection() argument 167 return II->getValue().match(Query); in inSection()
|
/external/chromium_org/ppapi/thunk/ |
D | ppb_file_io_thunk.cc | 47 int32_t Query(PP_Resource file_io, in Query() function 54 return enter.SetResult(enter.object()->Query(info, enter.callback())); in Query() 145 &Query, 158 &Query,
|