HomeSort by relevance Sort by last modified time
    Searched defs:URL (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
popup.js 6 var URL = 'http://api.stackoverflow.com/1.1/questions?max=10&sort=votes&tagged=google-chrome-extension';
14 chrome.tabs.create({url: 'options.html'});
26 xhr.open('GET', URL);
40 var url = ROOT + question.question_answers_url;
41 $question.innerHTML = '<a href="' + url + '" target="_blank">' +
  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_status_unittest.cc 9 #include "url/gurl.h"
25 FileSystemURL URL(const char* spec) {
34 status.StartWriting(URL(kFile));
35 status.StartWriting(URL(kFile));
36 status.EndWriting(URL(kFile));
38 EXPECT_TRUE(status.IsWriting(URL(kFile)));
39 EXPECT_TRUE(status.IsWriting(URL(kParent)));
40 EXPECT_TRUE(status.IsWriting(URL(kChild)));
41 EXPECT_FALSE(status.IsWriting(URL(kOther1)));
42 EXPECT_FALSE(status.IsWriting(URL(kOther2)))
    [all...]
syncable_file_system_unittest.cc 73 void VerifyAndClearChange(const FileSystemURL& url,
75 SCOPED_TRACE(testing::Message() << url.DebugString() <<
77 // Get the changes for URL and verify.
79 change_tracker()->GetChangesForURL(url, &changes);
81 SCOPED_TRACE(testing::Message() << url.DebugString() <<
85 // Clear the URL from the change tracker.
86 change_tracker()->ClearChangesForURL(url);
89 FileSystemURL URL(const std::string& path) {
90 return file_system_.URL(path);
122 file_system_.CreateDirectory(URL("dir")))
    [all...]
local_file_change_tracker_unittest.cc 73 FileSystemURL URL(const std::string& path) {
74 return file_system_.URL(path);
85 void VerifyAndClearChange(const FileSystemURL& url,
87 SCOPED_TRACE(testing::Message() << url.DebugString() <<
89 // Get the changes for URL and verify.
91 change_tracker()->GetChangesForURL(url, &changes);
93 SCOPED_TRACE(testing::Message() << url.DebugString() <<
97 // Clear the URL from the change tracker.
98 change_tracker()->ClearChangesForURL(url);
128 change_tracker()->OnCreateDirectory(URL(kPath))
    [all...]
syncable_file_operation_runner_unittest.cc 81 file_system_.CreateDirectory(URL(kParent)));
93 FileSystemURL URL(const std::string& path) {
94 return file_system_.URL(path);
162 sync_status()->StartSyncing(URL(kFile));
163 ASSERT_FALSE(sync_status()->IsWritable(URL(kFile)));
165 // The URL is in syncing so the write operations won't run.
168 URL(kFile), false /* exclusive */,
171 URL(kFile), 1,
178 URL(kFile), ExpectStatus(FROM_HERE, File::FILE_ERROR_NOT_FOUND));
183 sync_status()->EndSyncing(URL(kFile))
    [all...]
  /external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
ContentShellUrlTest.java 15 // URL used for base tests.
16 private static final String URL = "data:text";
21 ContentShellActivity activity = launchContentShellWithUrl(URL);
26 // Make sure that the URL is set as expected.
27 assertEquals(URL, activity.getActiveShell().getContentViewCore().getWebContents().getUrl());
  /external/chromium_org/tools/
omahaproxy.py 19 URL = 'https://omahaproxy.appspot.com/json'
24 data = json.load(urllib.urlopen(URL))
26 print 'Error: could not load %s\n\n%s' % (URL, str(e))
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
URLEncoderTest.java 34 final String URL = "http://" + Support_Configuration.HomeAddress;
39 URLEncoder.encode(URL)).equals(URL));
  /external/chromium_org/chrome/tools/
history-viz.py 31 class URL(object):
32 """Represents a broken-down URL from our most visited database."""
34 def __init__(self, id, url):
35 """Initialize a new URL object. |id| is the database id of the URL."""
37 self.url = url
38 scheme, loc, path, query, fragment = urlparse.urlsplit(url)
49 if len(fragment) > 0 or url.find('#') > 0:
54 """Pretty-print this URL in a form more suitable for the graph
    [all...]
  /external/chromium_org/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/
HttpUrlRequestFactoryTest.java 19 // URL used for base tests.
20 private static final String URL = "http://127.0.0.1:8000";
33 launchCronetTestAppWithUrlAndCommandLineArgs(URL,
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
InterstitialPageTest.java 27 private static final String URL = UrlUtils.encodeHtmlDataUri(
60 ContentShellActivity activity = launchContentShellWithUrl(URL);
118 getContentViewCore().showInterstitialPage(URL, delegate);
WebContentsObserverAndroidTest.java 22 private static final String URL = UrlUtils.encodeHtmlDataUri(
71 .loadUrl(new LoadUrlParams(URL));
  /external/chromium_org/content/browser/fileapi/
file_system_operation_runner_unittest.cc 57 FileSystemURL URL(const std::string& path) {
81 operation_runner()->Truncate(URL("foo"), 0,
93 // Invalid URL error, which calls DidFinish synchronously.
110 // Call Truncate with non-existent URL, and try to cancel it immediately
113 operation_runner()->Truncate(URL("foo"), 0,
135 // Call Truncate with invalid URL, and try to cancel it immediately
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfWebCaptureCommandDictionary_autogen.cpp 11 SkString SkPdfWebCaptureCommandDictionary::URL(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("URL", "");
20 return get("URL", "") != NULL;
  /external/chromium_org/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
ChromeShellUrlTest.java 23 // URL used for base tests.
24 private static final String URL = "data:text";
29 ChromeShellActivity activity = launchChromeShellWithUrl(URL);
58 // Ensure the correct page has been loaded, ie. not interstitial, and title/url should
62 final AtomicReference<String> url = new AtomicReference<String>(); local
69 url.set(contentViewCore.get().getWebContents().getUrl());
75 assertNotNull("URL was null", url.get());
76 assertTrue("URL did not contain: " + welcomeUrl + ". Was: " + url.get()
    [all...]
  /external/chromium_org/components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/
CronetSampleTest.java 35 // URL used for base tests.
36 private static final String URL = "http://127.0.0.1:8000";
45 CronetSampleActivity activity = launchCronetSampleWithUrl(URL);
49 // Make sure that the URL is set as expected.
50 assertEquals(URL, activity.getUrl());
55 * Starts the CronetSample activity and loads the given URL. The URL can be
59 protected CronetSampleActivity launchCronetSampleWithUrl(String url) {
60 return launchCronetSampleWithUrlAndCommandLineArgs(url, null);
65 * arguments and loads the given URL. The URL can be null, in which cas
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data.h 60 URL = 1 << 1,
72 // getting a URL.
98 virtual void SetURL(const GURL& url, const base::string16& title) = 0;
107 GURL* url,
176 // A URL can have an optional title in some exchange formats.
177 void SetURL(const GURL& url, const base::string16& title);
192 GURL* url,
  /external/jsilver/src/com/google/streamhtmlparser/util/
HtmlUtils.java 54 * <li>{@code NONE} if it does not contain a URL in the expected format.
55 * <li>{@code URL_START} if it contains a URL but hasn't seen any of
57 * <li>{@code URL} if it contains a URL and has seen at least some of
64 URL
69 * that contains a URL. Used by {@link #parseContentAttributeForUrl}.
72 "^\\s*\\d*\\s*;\\s*URL\\s*=\\s*[\'\"]?";
354 * Parses the given {@code String} to determine if it contains a URL in the
363 * a URL.
369 * value contains a URL and whether we are at the start of the URL or pas
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 46 // Set up our URL matchers to help us determine what an
60 public static final String URL = "url";
76 URL + " TEXT," +
  /development/samples/training/network-usage/src/com/example/android/networkusage/
NetworkActivity.java 42 import java.net.URL;
67 private static final String URL =
150 new DownloadXmlTask().execute(URL);
220 String url = null; local
263 // Given a string representation of a URL, sets up a connection and gets
266 URL url = new URL(urlString); local
267 HttpURLConnection conn = (HttpURLConnection) url.openConnection();
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/omaha/
ResponseParserTest.java 21 // Note that the Omaha server appends "/" to the end of the URL codebase.
24 private static final String URL = STRIPPED_URL + "/";
120 // <url codebase="URL" />
137 serializer.startTag(null, "url");
139 serializer.endTag(null, "url");
188 createTestXML("3.0", "12345", appStatus, addInstall, addPing, updateStatus, URL);
198 assertEquals("Market URL doesn't match.", STRIPPED_URL, parser.getURL());
201 assertEquals("Market URL doesn't match.", null, parser.getURL());
287 createTestXML("2.0", "12345", APP_STATUS_OK, false, false, UPDATE_STATUS_OK, URL);
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
PrintingControllerTest.java 43 private static final String URL = UrlUtils.encodeHtmlDataUri(
83 final ChromeShellTab currentTab = launchChromeShellWithUrl(URL).getActiveTab();
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
conflict_resolver_unittest.cc 42 storage::FileSystemURL URL(const GURL& origin, const std::string& path) {
155 void CreateLocalFile(const storage::FileSystemURL& url) {
157 url, FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE,
189 SyncStatusCode RunLocalToRemoteSyncer(const storage::FileSystemURL& url,
198 file_change, local_path, url));
203 remote_change_processor_->ClearLocalChanges(url);
383 storage::FileSystemURL kURL = URL(kOrigin, kTitle);
430 storage::FileSystemURL kURL = URL(kOrigin, kTitle);
466 expected_changes[URL(kOrigin, "foo/nested")].push_back(
local_to_remote_syncer_unittest.cc 43 storage::FileSystemURL URL(const GURL& origin, const std::string& path) {
167 const storage::FileSystemURL& url) {
173 file_change, local_path, url));
278 URL(kOrigin, "file1")));
282 URL(kOrigin, "folder")));
286 URL(kOrigin, "folder/file2")));
310 URL(kOrigin, "folder1/folder2/file")));
314 URL(kOrigin, "folder1/folder2/file")));
318 URL(kOrigin, "folder1/folder2/file")));
343 URL(kOrigin, "file")))
    [all...]
remote_to_local_syncer_unittest.cc 40 storage::FileSystemURL URL(const GURL& origin, const std::string& path) {
167 void CreateLocalFolder(const storage::FileSystemURL& url) {
169 url, FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE,
173 void CreateLocalFile(const storage::FileSystemURL& url) {
175 url, FileChange(FileChange::FILE_CHANGE_ADD_OR_UPDATE,
228 void AppendExpectedChange(const storage::FileSystemURL& url,
231 expected_changes_[url].push_back(FileChange(change_type, file_type));
269 // TODO(nhiroki): Clean up creating URL part.
270 AppendExpectedChange(URL(kOrigin, "folder1"),
273 AppendExpectedChange(URL(kOrigin, "file1")
    [all...]

Completed in 1117 milliseconds

1 2 3