/external/autotest/client/cros/cellular/ |
base_station_8960.py | 43 idn = self.c.Query('*IDN?') 57 call_state = self.c.Query('CALL:STATus?') 58 data_state = self.c.Query('CALL:STATus:DATa?') 70 result_text = self.c.Query('CALL:COUNT:DTMonitor:%s:DRATe?' % 84 status = self.c.Query('CALL:STATus:DATa?') 101 self.c.Query("CALL:HSDPa:SERVice:PSData:HSDSchannel:CONFig?") 104 self.c.Query("CALL:HSDPa:MS:REPorted:HSDSChannel:CATegory?") 106 self.c.Query("CALL:STATUS:MS:HSDSChannel:CATegory?") 107 self.c.Query("CALL:HSDPA:SERV:PSD:CQI?")
|
ether_io_rf_switch.py | 98 def Query(self): 120 def Query(switch, unused_remaining_args): 121 (raw_status, port, direction) = switch.Query() 132 print 'usage: %s hostname {query|select portnumber}' % sys.argv[0] 141 if operation == 'query': 142 Query(switch, arguments)
|
scpi_shell | 39 s.Query(line) 43 print "Query did not result in any data before the timeout"
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
DictionaryDownloadProgressBar.java | 20 import android.app.DownloadManager.Query; 120 final Query query = new Query().setFilterById(mId); local 123 final Cursor cursor = mDownloadManagerWrapper.query(query);
|
/art/tools/ahat/src/ |
AhatHttpHandler.java | 45 mAhatHandler.handle(doc, new Query(exchange.getRequestURI()));
|
OverviewHandler.java | 38 public void handle(Doc doc, Query query) throws IOException { 50 printHeapSizes(doc, query); 70 private void printHeapSizes(Doc doc, Query query) { 86 HeapTable.render(doc, query, OVERVIEW_ID, table, mSnapshot, dummy);
|
Query.java | 25 * A class for getting and modifying query parameters. 27 class Query { 34 public Query(URI uri) { 38 String query = uri.getQuery(); local 39 if (query != null) { 40 for (String param : query.split("&")) { 52 * Return the value of a query parameter with the given name. 53 * If there is no query parameter with that name, returns the default value. 54 * If there are multiple query parameters with that name, the value of the 55 * last query parameter is returned [all...] |
ObjectHandler.java | 53 public void handle(Doc doc, Query query) throws IOException { 54 long id = query.getLong("id", 0); 64 printAllocationSite(doc, query, inst); 65 printDominatorPath(doc, query, inst); 93 printClassInstanceFields(doc, query, mSnapshot, (ClassInstance)inst); 95 printArrayElements(doc, query, mSnapshot, (ArrayInstance)inst); 97 printClassInfo(doc, query, mSnapshot, (ClassObj)inst); 99 printReferences(doc, query, mSnapshot, inst); 100 printDominatedObjects(doc, query, inst) [all...] |
DominatedList.java | 37 * @param query the current page query 42 Doc doc, Query query, String id, Collection<Instance> instances) { 45 HeapTable.render(doc, query, id, new TableConfig(snapshot), snapshot, insts);
|
SitePrinter.java | 25 public static void printSite(AhatSnapshot snapshot, Doc doc, Query query, String id, Site site) { 63 HeapTable.render(doc, query, id, table, snapshot, path);
|
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/ |
b2BroadPhase.h | 79 /// Query an AABB for overlapping proxies. The callback class 82 void Query(T* callback, const b2AABB& aabb) const; 230 // We have to query the tree with the fat AABB so that 234 // Query tree, create pairs and add them pair buffer. 235 m_tree.Query(this, fatAABB); 274 inline void b2BroadPhase::Query(T* callback, const b2AABB& aabb) const 276 m_tree.Query(callback, aabb);
|
/external/llvm/include/llvm/Support/ |
SpecialCaseList.h | 81 /// and @Query satisfies a wildcard expression <E>. 82 bool inSection(StringRef Section, StringRef Query,
|
/external/autotest/frontend/client/src/autotest/common/table/ |
DynamicTableSelectionManager.java | 5 import autotest.common.table.DataSource.Query; 20 public void onQueryReady(Query query) { 21 query.getPage(null, null, null, this); 73 attachedDynamicTable.getDataSource().query(params, deselectFilteredCallback);
|
/prebuilts/go/darwin-x86/doc/progs/ |
timeout2.go | 5 package query package 9 func (c Conn) DoQuery(query string) Result { 15 func Query(conns []Conn, query string) Result { 20 case ch <- c.DoQuery(query):
|
/prebuilts/go/linux-x86/doc/progs/ |
timeout2.go | 5 package query package 9 func (c Conn) DoQuery(query string) Result { 15 func Query(conns []Conn, query string) Result { 20 case ch <- c.DoQuery(query):
|
/platform_testing/tests/functional/downloadapp/src/com/android/functional/downloadapp/ |
DownloadAppTestHelper.java | 21 import android.app.DownloadManager.Query; 245 Query query = new Query(); local 246 cursor = getDLManager().query(query); 267 Query query = new Query(); local 268 cursor = getDLManager().query(query) 281 Query query = new Query().setFilterById(downloadId); local [all...] |
/external/llvm/lib/Support/ |
SpecialCaseList.cpp | 42 bool match(StringRef Query) const { 43 return Strings.count(Query) || (RegEx && RegEx->match(Query)); 157 bool SpecialCaseList::inSection(StringRef Section, StringRef Query, 165 return II->getValue().match(Query);
|
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/ |
JpaWorkManagerTest.java | 33 import javax.persistence.Query; 73 final Query query = injector.getInstance(EntityManager.class) local 76 query.setParameter("text", UNIQUE_TEXT_3); 77 final Object o = query.getSingleResult();
|
/external/libchrome/base/win/ |
scoped_comptr.h | 90 template <class Query> 91 HRESULT QueryInterface(Query** p) {
|
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/ |
DownloadManagerBaseTest.java | 20 import android.app.DownloadManager.Query; 354 * @param id The download id to query on (wait for) 374 Query q = new Query(); 377 Cursor cursor = mDownloadManager.query(q); 485 DownloadManager.Query q = new DownloadManager.Query(); 487 Cursor response = mDownloadManager.query(q); 489 Log.i(LOG_TAG, String.format("Query to download manager returned nothing for id %d",id)); 518 Cursor cursor = mDownloadManager.query(new Query()) 540 Query query = new Query(); local [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/filterednumber/ |
FilteredNumbersUtilTest.java | 30 import com.android.contacts.common.test.mocks.MockContentProvider.Query; 122 Query query = mContext.getContactsProvider().expectQuery(FilteredNumber.CONTENT_URI) local 127 query.returnEmptyCursor(); 130 query.returnRow(creationTimeMs);
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerBaseTest.java | 19 import android.app.DownloadManager.Query; 150 Cursor cursor = dm.query(new Query().setFilterById(id)); 485 Cursor cursor = mDownloadManager.query(new Query().setFilterById(requestId)); 645 * @param id The download id to query on (wait for) 657 * @param id The download id to query on (wait for) 670 * @param id The download id to query on (wait for) 676 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis); 690 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis) 996 Query query = new Query(); local [all...] |
/external/llvm/lib/Analysis/ |
InstructionSimplify.cpp | 48 struct Query { 55 Query(const DataLayout &DL, const TargetLibraryInfo *tli, 62 static Value *SimplifyAndInst(Value *, Value *, const Query &, unsigned); 63 static Value *SimplifyBinOp(unsigned, Value *, Value *, const Query &, 66 const Query &, unsigned); 67 static Value *SimplifyCmpInst(unsigned, Value *, Value *, const Query &, 69 static Value *SimplifyOrInst(Value *, Value *, const Query &, unsigned); 70 static Value *SimplifyXorInst(Value *, Value *, const Query &, unsigned); 71 static Value *SimplifyTruncInst(Value *, Type *, const Query &, unsigned); 140 unsigned OpcToExpand, const Query &Q [all...] |
/build/kati/ |
query.go | 76 // Query queries q in g. 77 func Query(w io.Writer, q string, g *DepGraph) {
|
/external/autotest/frontend/client/src/autotest/tko/ |
SpreadsheetDataProcessor.java | 9 import autotest.common.table.DataSource.Query; 35 private Query currentQuery; 152 dataSource.query(condition, this); 155 public void onQueryReady(Query query) { 156 currentQuery = query; 157 query.getPage(null, null, null, this); 163 notifyManager.showMessage("No results for query"); 224 public Query getCurrentQuery() {
|