Searched defs:Query (Results 1 - 25 of 37) sorted by relevance

12

/external/swiftshader/src/OpenGL/libGLESv2/
H A DQuery.h15 // Query.h: Defines the es2::Query class
28 class Query : public gl::NamedObject class in namespace:es2
31 Query(GLuint name, GLenum type);
32 virtual ~Query();
44 sw::Query* mQuery;
H A DQuery.cpp15 // Query.cpp: Implements the es2::Query class
17 #include "Query.h"
25 Query::Query(GLuint name, GLenum type) : NamedObject(name) function in class:es2::Query
33 Query::~Query()
38 void Query::begin()
42 sw::Query::Type type;
47 type = sw::Query
[all...]
/external/swiftshader/src/OpenGL/libGL/
H A DQuery.cpp15 // Query.cpp: Implements the gl::Query class
17 #include "Query.h"
25 Query::Query(GLuint name, GLenum type) : NamedObject(name) function in class:gl::Query
33 Query::~Query()
38 void Query::begin()
42 sw::Query::Type type;
47 type = sw::Query
[all...]
H A DQuery.h15 // Query.h: Defines the gl::Query class
31 class Query : public NamedObject class in namespace:gl
34 Query(GLuint name, GLenum type);
35 virtual ~Query();
47 sw::Query* mQuery;
/external/autotest/client/cros/cellular/
H A Dscpi.py52 The SCPI driver must export: Query, Send, Reset and Close
60 def Query(self, command): member in class:Scpi
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?')
H A Dether_io_rf_switch.py98 def Query(self): member in class:RfSwitch
120 def Query(switch, unused_remaining_args): function in function:CommandLineUtility
121 (raw_status, port, direction) = switch.Query()
142 Query(switch, arguments)
H A Dprologix_scpi_driver.py132 # on self.Query to turn on Prologix auto mode to avoid this
134 self.Query('*OPC?')
161 def Query(self, command): member in class:PrologixScpiDriver
/external/v8/src/crankshaft/
H A Dhydrogen-alias-analysis.h27 HAliasing Query(HValue* a, HValue* b) { function in class:v8::internal::HAliasAnalyzer
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;
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSOperationCode.java13 * Query [RFC1035]
15 Query("Query", 0), enum constant in enum:DNSOperationCode
17 * IQuery (Inverse Query, Obsolete) [RFC3425]
19 IQuery("Inverse Query", 1),
/external/autotest/frontend/client/src/autotest/common/table/
H A DDataSource.java55 public interface Query { interface in interface:DataSource
76 abstract class DefaultQuery implements Query {
101 public void onQueryReady(Query query);
110 public void onQueryReady(Query query) {}
/external/llvm/lib/Support/
H A DSpecialCaseList.cpp42 bool match(StringRef Query) const {
43 return Strings.count(Query) || (RegEx && RegEx->match(Query));
157 bool SpecialCaseList::inSection(StringRef Section, StringRef Query, argument
165 return II->getValue().match(Query);
/external/deqp/framework/opengl/
H A DgluObjectWrapper.hpp138 typedef TypedObjectWrapper<OBJECTTYPE_QUERY> Query; typedef in namespace:glu
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalUnion.h59 class Query;
109 /// Query interferences between a single live virtual register and a live
111 class Query { class in class:llvm::LiveIntervalUnion
123 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {} function in class:llvm::LiveIntervalUnion::Query
125 Query(LiveInterval *VReg, LiveIntervalUnion *LIU): function in class:llvm::LiveIntervalUnion::Query
182 Query(const Query&) = delete;
183 void operator=(const Query&) = delete;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLiveIntervalUnion.h62 class Query;
108 /// Query interferences between a single live virtual register and a live
110 class Query { class in class:llvm::LiveIntervalUnion
122 Query(): LiveUnion(), VirtReg(), Tag(0), UserTag(0) {} function in class:llvm::LiveIntervalUnion::Query
124 Query(LiveInterval *VReg, LiveIntervalUnion *LIU): function in class:llvm::LiveIntervalUnion::Query
185 Query(const Query&); // DO NOT IMPLEMENT
186 void operator=(const Query&); // DO NOT IMPLEMENT
/external/libchrome/base/test/
H A Dtrace_event_analyzer.cc206 QueryNode::QueryNode(const Query& query) : query_(query) {
212 // Query
214 Query::Query(TraceEventMember member) function in class:trace_analyzer::Query
222 Query::Query(TraceEventMember member, const std::string& arg_name) function in class:trace_analyzer::Query
231 Query::Query(const Query& query) function in class:trace_analyzer::Query
242 Query
583 Query::Query(const std::string& str) function in class:trace_analyzer::Query
592 Query::Query(double num) function in class:trace_analyzer::Query
668 Query::Query(const Query& left, const Query& right, Operator binary_op) function in class:trace_analyzer::Query
678 Query::Query(const Query& left, Operator unary_op) function in class:trace_analyzer::Query
[all...]
H A Dtrace_event_analyzer.h5 // 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
185 class Query { class in namespace:trace_analyzer
[all...]
/external/clang/lib/CodeGen/
H A DCGRecordLayoutBuilder.cpp182 bool hasOwnStorage(const CXXRecordDecl *Decl, const CXXRecordDecl *Query);
517 const CXXRecordDecl *Query) {
519 if (DeclLayout.isPrimaryBaseVirtual() && DeclLayout.getPrimaryBase() == Query)
522 if (!hasOwnStorage(Base.getType()->getAsCXXRecordDecl(), Query))
516 hasOwnStorage(const CXXRecordDecl *Decl, const CXXRecordDecl *Query) argument
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DEABContactManager.java98 // Data Query Columns, which match the DATA_QUERY_PROJECTION
430 public static class Query { class in class:EABContactManager
453 public Query setFilterById(long... ids) {
462 public Query setFilterByNumber(String number) {
471 public Query setFilterByTime(String selection) {
484 public Query setFilterByTime(String column, long last) {
497 public Query setFilterByEarliestTime(String column, long earliest) {
516 public Query orderBy(String column, int direction) {
626 sb.append("EABContactManager.Query { ");
648 * Query th
[all...]
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRegStackify.cpp124 static void Query(const MachineInstr &MI, AliasAnalysis &AA, bool &Read, function
259 const auto &Result = LI.Query(LIS.getInstructionIndex(*I.getParent()));
322 Query(*Def, AA, Read, Write, Effects, StackPointer);
336 Query(*I, AA, InterveningRead, InterveningWrite, InterveningEffects,
/external/mdnsresponder/mDNSWindows/mdnsNSP/
H A DmdnsNSP.c53 typedef struct Query * QueryRef;
54 typedef struct Query Query; typedef in typeref:struct:Query
55 struct Query struct
/external/swiftshader/src/Renderer/
H A DRenderer.hpp90 struct Query struct in namespace:sw
94 Query(Type type) : building(false), reference(0), data(0), type(type) function in struct:sw::Query
245 std::list<Query*> *queries;
382 virtual void addQuery(Query *query);
383 virtual void removeQuery(Query *query);
473 std::list<Query*> queries;
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp49 struct Query { struct in namespace:__anon12480
56 Query(const DataLayout &DL, const TargetLibraryInfo *tli, function in struct:__anon12480::Query
63 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned);
64 static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &,
67 const Query &, unsigned);
68 static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &,
70 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned);
71 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned);
72 static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned);
141 unsigned OpcToExpand, const Query
[all...]
H A DValueTracking.cpp68 struct Query { struct in namespace:__anon12505
86 Query(const DataLayout &DL, AssumptionCache *AC, const Instruction *CxtI, function in struct:__anon12505::Query
90 Query(const Query &Q, const Value *NewExcl) function in struct:__anon12505::Query
123 unsigned Depth, const Query &Q);
130 Query(DL, AC, safeCxtI(V, CxtI), DT));
149 unsigned Depth, const Query &Q);
156 Query(DL, AC, safeCxtI(V, CxtI), DT));
160 const Query &Q);
167 Query(D
[all...]
/external/guice/extensions/persist/lib/
H A Dejb3-persistence.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/persistence/ javax/persistence/AssociationOverride.class AssociationOverride. ...
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h772 Query, member in class:XFA_Element

Completed in 746 milliseconds

12