Searched defs:URL (Results 1 - 25 of 87) sorted by relevance

1234

/external/chromium_org/chrome/common/extensions/docs/examples/api/permissions/extension-questions/
H A Dpopup.js6 var URL = 'http://api.stackoverflow.com/1.1/questions?max=10&sort=votes&tagged=google-chrome-extension'; variable
26 xhr.open('GET', URL);
/external/chromium_org/components/cronet/android/test/javatests/src/org/chromium/cronet_test_apk/
H A DHttpUrlRequestFactoryTest.java19 // URL used for base tests.
20 private static final String URL = "http://127.0.0.1:8000"; field in class:HttpUrlRequestFactoryTest
33 launchCronetTestAppWithUrlAndCommandLineArgs(URL,
H A DCronetUrlTest.java24 // URL used for base tests.
25 private static final String URL = "http://127.0.0.1:8000"; field in class:CronetUrlTest
30 CronetTestActivity activity = launchCronetTestAppWithUrl(URL);
37 // Make sure that the URL is set as expected.
38 assertEquals(URL, activity.getUrl());
63 launchCronetTestAppWithUrlAndCommandLineArgs(URL,
71 // Make sure that the URL is set as expected.
72 assertEquals(URL, activity.getUrl());
89 activity.startWithURL(URL);
143 CronetTestActivity activity = launchCronetTestAppWithUrl(URL);
[all...]
/external/chromium_org/content/shell/android/javatests/src/org/chromium/content_shell_apk/
H A DContentShellUrlTest.java15 // URL used for base tests.
16 private static final String URL = "data:text"; field in class:ContentShellUrlTest
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/chrome/android/shell/javatests/src/org/chromium/chrome/shell/
H A DChromeShellUrlTest.java23 // URL used for base tests.
24 private static final String URL = "data:text"; field in class:ChromeShellUrlTest
29 ChromeShellActivity activity = launchChromeShellWithUrl(URL);
75 assertNotNull("URL was null", url.get());
76 assertTrue("URL did not contain: " + welcomeUrl + ". Was: " + url.get(),
92 final ChromeShellActivity activity = launchChromeShellWithUrl(URL);
/external/chromium_org/tools/
H A Domahaproxy.py19 URL = 'https://omahaproxy.appspot.com/json' variable
24 data = json.load(urllib.urlopen(URL))
26 print 'Error: could not load %s\n\n%s' % (URL, str(e))
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dlocal_file_sync_status_unittest.cc25 FileSystemURL URL(const char* spec) { function in namespace:sync_file_system::__anon4885
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)));
45 EXPECT_TRUE(status.IsWritable(URL(kFil
[all...]
H A Dlocal_file_change_tracker_unittest.cc73 FileSystemURL URL(const std::string& path) { function in class:sync_file_system::LocalFileChangeTrackerTest
74 return file_system_.URL(path);
89 // Get the changes for URL and verify.
97 // Clear the URL from the change tracker.
128 change_tracker()->OnCreateDirectory(URL(kPath));
133 EXPECT_EQ(URL(kPath), *urls.begin());
135 change_tracker()->DemoteChangesForURL(URL(kPath));
140 change_tracker()->PromoteDemotedChangesForURL(URL(kPath));
144 EXPECT_EQ(URL(kPath), *urls.begin());
146 change_tracker()->DemoteChangesForURL(URL(kPat
[all...]
H A Dsyncable_file_operation_runner_unittest.cc81 file_system_.CreateDirectory(URL(kParent)));
93 FileSystemURL URL(const std::string& path) { function in class:sync_file_system::SyncableFileOperationRunnerTest
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(kFil
[all...]
H A Dsyncable_file_system_unittest.cc77 // Get the changes for URL and verify.
85 // Clear the URL from the change tracker.
89 FileSystemURL URL(const std::string& path) { function in class:sync_file_system::SyncableFileSystemTest
90 return file_system_.URL(path);
122 file_system_.CreateDirectory(URL("dir")));
124 file_system_.CreateFile(URL("dir/foo")));
142 file_system_.CreateFile(URL("dir/foo")));
145 file_system_.TruncateFile(URL("dir/foo"), kFileSizeToExtend));
156 file_system_.TruncateFile(URL("dir/foo"), kFileSizeToExtend + 1));
188 file_system_.CreateDirectory(URL(kPath
[all...]
/external/chromium_org/chrome/tools/
H A Dhistory-viz.py31 class URL(object): class in inherits:object
32 """Represents a broken-down URL from our most visited database."""
35 """Initialize a new URL object. |id| is the database id of the URL."""
54 """Pretty-print this URL in a form more suitable for the graph.
155 urls['0'] = URL('0', 'start') # Node name '0' is our special 'start' node.
157 urls[id] = URL(id, url)
/external/chromium_org/components/cronet/android/sample/javatests/src/org/chromium/cronet_sample_apk/
H A DCronetSampleTest.java35 // URL used for base tests.
36 private static final String URL = "http://127.0.0.1:8000"; field in class:CronetSampleTest
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
65 * arguments and loads the given URL. The URL can be null, in which case
114 // loading because it has no URL se
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DInterstitialPageTest.java27 private static final String URL = UrlUtils.encodeHtmlDataUri( field in class:InterstitialPageTest
60 ContentShellActivity activity = launchContentShellWithUrl(URL);
118 getContentViewCore().showInterstitialPage(URL, delegate);
H A DWebContentsObserverAndroidTest.java22 private static final String URL = UrlUtils.encodeHtmlDataUri( field in class:WebContentsObserverAndroidTest
71 .loadUrl(new LoadUrlParams(URL));
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfWebCaptureCommandDictionary_autogen.cpp11 SkString SkPdfWebCaptureCommandDictionary::URL(SkPdfNativeDoc* doc) { function in class:SkPdfWebCaptureCommandDictionary
12 SkPdfNativeObject* ret = get("URL", "");
20 return get("URL", "") != NULL;
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfWebCaptureCommandDictionary_autogen.cpp11 SkString SkPdfWebCaptureCommandDictionary::URL(SkPdfNativeDoc* doc) { function in class:SkPdfWebCaptureCommandDictionary
12 SkPdfNativeObject* ret = get("URL", "");
20 return get("URL", "") != NULL;
/external/smack/src/org/jivesoftware/smackx/bookmark/
H A DBookmarkedURL.java23 * Respresents one instance of a URL defined using JEP-0048 Bookmark Storage JEP.
30 private final String URL; field in class:BookmarkedURL
34 protected BookmarkedURL(String URL) { argument
35 this.URL = URL;
38 protected BookmarkedURL(String URL, String name, boolean isRss) { argument
39 this.URL = URL;
45 * Returns the name representing the URL (eg. Jive Software). This can be used in as a label, or
48 * @return the name reprenting the URL
[all...]
H A DBookmarkManager.java33 * that marks a url as a news feed and also a sub-element can be added to either a URL or conference
168 * @param URL the url of the bookmark
174 public void addBookmarkedURL(String URL, String name, boolean isRSS) throws XMPPException { argument
176 BookmarkedURL bookmark = new BookmarkedURL(URL, name, isRSS);
/external/chromium_org/content/browser/fileapi/
H A Dfile_system_operation_runner_unittest.cc57 FileSystemURL URL(const std::string& path) { function in class:content::FileSystemOperationRunnerTest
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/ui/base/dragdrop/
H A Dos_exchange_data.h60 URL = 1 << 1, enumerator in enum:ui::OSExchangeData::Format
72 // getting a URL.
176 // A URL can have an optional title in some exchange formats.
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DHtmlUtils.java54 * <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 enum constant in enum:HtmlUtils.META_REDIRECT_TYPE
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 an
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/macros/
H A DMacro.java27 public static final int URL = 1; field in class:Macro
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
H A DPrintingControllerTest.java43 private static final String URL = UrlUtils.encodeHtmlDataUri( field in class:PrintingControllerTest
83 final ChromeShellTab currentTab = launchChromeShellWithUrl(URL).getActiveTab();
/external/chromium_org/third_party/libxslt/libxslt/
H A Dsecurity.c360 * @URL: the resource to be written
369 xsltTransformContextPtr ctxt, const xmlChar *URL) {
374 uri = xmlParseURI((const char *)URL);
379 "xsltCheckWrite: out of memory for %s\n", URL);
382 uri->path = (char *)xmlStrdup(URL);
408 ret = check(sec, ctxt, (const char *)URL);
411 "File write for %s refused\n", URL);
426 * @URL: the resource to be read
434 xsltTransformContextPtr ctxt, const xmlChar *URL) {
439 uri = xmlParseURI((const char *)URL);
368 xsltCheckWrite(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const xmlChar *URL) argument
433 xsltCheckRead(xsltSecurityPrefsPtr sec, xsltTransformContextPtr ctxt, const xmlChar *URL) argument
[all...]
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/omaha/
H A DResponseParserTest.java21 // Note that the Omaha server appends "/" to the end of the URL codebase.
24 private static final String URL = STRIPPED_URL + "/"; field in class:ResponseParserTest
120 // <url codebase="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);
295 createTestXML("3.0", null, APP_STATUS_OK, false, false, UPDATE_STATUS_OK, URL);
303 createTestXML("3.0", "12345", APP_STATUS_OK, true, false, null, URL);
311 createTestXML("3.0", "12345", APP_STATUS_OK, true, false, UPDATE_STATUS_OK, URL);
[all...]

Completed in 6135 milliseconds

1234