/external/webkit/Tools/Scripts/webkitpy/common/system/ |
urlfetcher.py | 35 """Class with restricted interface to fetch URLs (makes testing easier)""" 39 def fetch(self, url): member in class:UrlFetcher 52 contents = self.fetch(url)
|
urlfetcher_mock.py | 37 def fetch(self, url): member in class:make_fetcher_cls.MockFetcher 42 f.write(self.fetch(url))
|
/external/ppp/pppd/plugins/pppoatm/ |
text2qos.c | 19 #define fetch __atmlib_fetch macro 89 switch (fetch(text,"max_pcr=","pcr=","min_pcr=","max_sdu=","sdu=", 135 item = fetch(&text,"!none","ubr","cbr","vbr","abr","aal0","aal5",NULL); 160 switch (fetch(&text,"tx","rx",NULL)) { 162 if (!fetch(&text,":none",NULL)) { 176 if (fetch(&text,"rx",NULL)) return -1; 177 if (!fetch(&text,":none",NULL) && qos) qos->rxtp.traffic_class = ATM_NONE;
|
/external/oprofile/daemon/ |
opd_ibs.h | 32 struct ibs_fetch_sample * fetch; member in struct:ibs_sample 37 * This struct represents the hardware-level IBS fetch information. 44 /* MSRC001_1030 IBS Fetch Control Register */ 47 /* MSRC001_1031 IBS Fetch Linear Address Register */ 50 /* MSRC001_1032 IBS Fetch Physical Address Register */ 85 * Handle an IBS fetch sample escape code sequence. An IBS fetch sample 90 * entries are needed in order to process a complete IBS fetch sample. 98 * IBS fetch IBS op
|
/packages/apps/Email/tests/src/com/android/emailcommon/mail/ |
MockFolder.java | 62 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) { method in class:MockFolder
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
template.rb | 39 templates = @templates || options.fetch( :templates ) do 53 @templates.fetch( name, values ) 95 namespace = options.fetch( :namespace, ::Object ) 108 namespace = options.fetch( :namespace, ::Object ) 131 def fetch( name, values = {} ) method in class:ANTLR3.Template 132 self::TEMPLATES.fetch( name.to_s ).new( values ) 156 context = self::TEMPLATES.fetch( old_name.to_s ) do 317 param.splat = options.fetch( :splat, false ) 318 param.block = options.fetch( :block, false )
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
BufferedTokenStream.java | 127 if ( n > 0 ) fetch(n); 131 protected void fetch(int n) { method in class:BufferedTokenStream
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/ |
Folder.java | 116 * each fetch completes. Messages are downloaded as (as) lightweight (as 157 public abstract void fetch(Message[] messages, FetchProfile fp, method in class:Folder
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
AddonsListFetcher.java | 91 public Site[] fetch(String url, DownloadCache cache, ITaskMonitor monitor) {
method in class:AddonsListFetcher 131 // If any exception was handled during the URL fetch, display it now.
151 monitor.logError("Failed to fetch URL %1$s, reason: %2$s", url, reason);
187 * happens during the fetch.
|
/external/chromium/chrome/browser/sync/syncable/ |
directory_backing_store.cc | 914 SQLStatement fetch; local 915 fetch.prepare(load_dbhandle_, 918 if (SQLITE_ROW != fetch.step()) 920 int64 last_sync_timestamp = fetch.column_int64(0); 921 bool initial_sync_ended = fetch.column_bool(1); 922 if (SQLITE_DONE != fetch.step()) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
GLServerVertex.java | 340 void fetch(final int maxAttrib, final int index, final int dstIdx, final ByteBuffer nonVBO, method in class:GLServerVertex 387 fetch(maxAttrib, first + i, i, arrays, msgData.attribs); method 421 fetch(maxAttrib, msgData.indices[i] & 0xffff, i, arrays, msgData.attribs); method 426 fetch(maxAttrib, msgData.indices[i], i, arrays, msgData.attribs); method
|
/external/chromium/chrome/browser/extensions/ |
extension_updater.cc | 341 ManifestFetchData* fetch = NULL; local 354 fetch = existing_iter->second; 359 if (!fetch) { 360 fetch = new ManifestFetchData(update_url); 361 fetches_.insert(std::pair<GURL, ManifestFetchData*>(update_url, fetch)); 362 bool added = fetch->AddExtension(id, version.GetString(), ping_data, 711 // available, we want to fire off requests to fetch those updates. 720 VLOG(1) << "Failed to fetch manifest '" << url.possibly_invalid_spec() 741 // below if they actually have updates we need to fetch and install). 838 VLOG(1) << "Failed to fetch extension '" << url.possibly_invalid_spec( [all...] |
/packages/apps/Email/src/com/android/email/mail/store/ |
Pop3Store.java | 634 * Fetch the items contained in the FetchProfile into the given set of 641 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:Pop3Store.Pop3Folder 662 throw new MessagingException("fetch", ioe); 667 throw new MessagingException("Pop3Store.fetch called with non-Pop3 Message"); 697 throw new MessagingException("Unable to fetch message", ioe); 722 "Pop3Store.fetch called with non-Pop3 Message"); 788 // Fetch entire message 791 // Fetch partial message. Try "TOP", and fall back to slower "RETR" if necessary [all...] |
ImapFolder.java | 508 public void fetch(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) method in class:ImapFolder 534 * FLAGS - UID FETCH (FLAGS) 535 * ENVELOPE - UID FETCH (INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK[ 537 * STRUCTURE - UID FETCH (BODYSTRUCTURE) 538 * BODY_SANE - UID FETCH (BODY.PEEK[]<0.N>) where N = max bytes returned 539 * BODY - UID FETCH (BODY.PEEK[]) 540 * Part - UID FETCH (BODY.PEEK[ID]) where ID = mime part ID 587 if (!response.isDataResponse(1, ImapConstants.FETCH)) { 796 * This will be caught by fetch and handled appropriately. [all...] |
/packages/apps/Email/tests/src/com/android/email/mail/store/ |
Pop3StoreUnitTests.java | 518 * Pop3Folder.fetch(), for a failure in the call to indexUids(). 536 // try the basic fetch of flags & envelope 541 mFolder.fetch(messages, fp, null); 543 fail("Broken stream should cause fetch() to throw."); 569 * Pop3Folder.fetch(), for a failure in the call to fetchEnvelope(). 583 // try the basic fetch of flags & envelope, but the LIST command fails 589 mFolder.fetch(messages, fp, null); 591 fail("Broken stream should cause fetch() to throw."); 617 * Pop3Folder.fetch(). 631 // try the basic fetch of flags & envelop [all...] |
ImapStoreUnitTests.java | 773 " UID FETCH 1 \\(UID FLAGS INTERNALDATE RFC822\\.SIZE BODY\\.PEEK\\[HEADER.FIELDS" + 776 "* 9 fETCH (uID 1 rFC822.sIZE 120626 iNTERNALDATE \"17-may-2010 22:00:15 +0000\"" + [all...] |
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
BeautifulSoup.py | 793 fetch = findAll variable in class:Tag [all...] |
/frameworks/base/tests/CoreTests/android/core/ |
SSLSocketTest.java | 78 private void fetch(SSLSocketFactory socketFactory, String host, int port, method in class:SSLSocketTest 178 * Invokes fetch() with the default socket factory. 180 private void fetch(String host, int port, boolean secure, String path, method in class:SSLSocketTest 183 fetch(clientFactory, host, port, secure, path, outerLoop, innerLoop, method 193 fetch("www.fortify.net", 443, true, "/sslcheck.html", 1, 1, 0, 60); 194 fetch("mail.google.com", 443, true, "/mail/", 1, 1, 0, 60); 195 fetch("www.paypal.com", 443, true, "/", 1, 1, 0, 60); 196 fetch("www.yellownet.ch", 443, true, "/", 1, 1, 0, 60); 206 fetch("www.fortify.net", 443, true, "/sslcheck.html", 10, 1, 0, 60); 207 fetch("mail.google.com", 443, true, "/mail/", 10, 1, 0, 60) 971 fetch(socketFactory, "www.fortify.net", 443, true, "\/sslcheck.html", method 973 fetch(socketFactory, "www.paypal.com", 443, true, "\/", method 975 fetch(socketFactory, "www.yellownet.ch", 443, true, "\/", method [all...] |
/frameworks/native/opengl/libagl/ |
context.h | 179 fetcher_t fetch; member in struct:android::gl::array_t
|
/packages/apps/Email/src/com/android/email/ |
MessagingController.java | 471 remoteFolder.fetch(smallMessages.toArray(new Message[smallMessages.size()]), fp, 488 remoteFolder.fetch(largeMessages.toArray(new Message[largeMessages.size()]), fp, null); 497 // the proper size after this fetch and compare the before and after size. If 499 remoteFolder.fetch(new Message[] { message }, fp, null); 518 remoteFolder.fetch(new Message[] { message }, fp, null); 543 remoteFolder.fetch(unsyncedMessages.toArray(new Message[0]), fp, 677 remoteFolder.fetch(messageList.toArray(new Message[0]), fp, [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/ |
pdebuild.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.engine_2.0.0.v20100606.jar | |
/prebuilt/common/jython/ |
jython.jar | |
/external/antlr/antlr-3.4/lib/ |
antlr-3.4-complete.jar | |
/prebuilt/common/antlr/ |
antlr-3.4-complete.jar | |