Searched refs:destination (Results 1 - 25 of 539) sorted by path

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DLSSerializerImpl.java887 public boolean write(Node nodeArg, LSOutput destination) throws LSException { argument
888 // If the destination is null
889 if (destination == null) {
918 fEncoding = destination.getEncoding();
973 Writer writer = destination.getCharacterStream();
977 OutputStream outputStream = destination.getByteStream();
981 String uri = destination.getSystemId();
/external/bison/build-aux/
H A Dtexinfo.tex1272 % page number. We could generate a destination for the section
5756 % been typeset. If the destination for the pdf outline is after the
5914 % Write the node reference (= pdf destination for pdftex).
5965 % destination to jump to.
5992 % Tell \shipout to create a pdf destination on each page, if we're
/external/bison/
H A Dmaint.mk369 # It may fail to NUL-terminate the destination,
/external/bison/src/
H A Dgraphviz.c69 output_edge (int source, int destination, char const *label, argument
72 fprintf (fout, " %d -> %d [style=%s", source, destination, style);
H A Dgraphviz.h43 * \param destination id of the target node
49 void output_edge (int source, int destination, char const *label,
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwPrintDocumentAdapter.java66 public void onWrite(PageRange[] pages, ParcelFileDescriptor destination, argument
68 mPdfExporter.exportToPdf(destination, mAttributes, new ValueCallback<Boolean>() {
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DCommonResources.java109 public static String makeHtmlPageWithSimpleLinkTo(String headers, String destination) { argument
111 "<a href=\"" + destination + "\" id=\"link\">" +
116 public static String makeHtmlPageWithSimpleLinkTo(String destination) { argument
117 return makeHtmlPageWithSimpleLinkTo("", destination);
120 public static String makeHtmlPageWithSimplePostFormTo(String destination) { argument
122 "<form action=\"" + destination + "\" method=\"post\">" +
/external/chromium_org/ash/shelf/
H A Dshelf_view_unittest.cc477 views::View* destination = test_api_->GetButton(destination_index); local
479 gfx::Point(destination->x() - button->x(),
480 destination->y() - button->y()),
481 destination->GetBoundsInScreen().origin(), 0, 0);
/external/chromium_org/base/
H A Dtask_runner.cc20 explicit PostTaskAndReplyTaskRunner(TaskRunner* destination);
31 TaskRunner* destination) : destination_(destination) {
30 PostTaskAndReplyTaskRunner( TaskRunner* destination) argument
H A Dtask_runner_util_unittest.cc20 void StoreValue(int* destination, int value) { argument
21 *destination = value;
24 void StoreDoubleValue(double* destination, double value) { argument
25 *destination = value;
/external/chromium_org/cc/base/
H A Dmath_util.cc685 const gfx::Vector2dF& destination) {
687 gfx::DotProduct(source, destination) / destination.LengthSquared();
688 return gfx::Vector2dF(projected_length * destination.x(),
689 projected_length * destination.y());
684 ProjectVector(const gfx::Vector2dF& source, const gfx::Vector2dF& destination) argument
H A Dmath_util.h190 // Projects the |source| vector onto |destination|. Neither vector is assumed
193 const gfx::Vector2dF& destination);
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dcloud_external_data_manager_base_test_util.cc23 void ExternalDataFetchCallback(scoped_ptr<std::string>* destination, argument
26 *destination = data.Pass();
H A Dcloud_external_data_manager_base_test_util.h23 // Passes |data| to |destination| and invokes |done_callback| to indicate that
25 void ExternalDataFetchCallback(scoped_ptr<std::string>* destination,
/external/chromium_org/chrome/browser/extensions/api/bookmarks/
H A Dbookmarks_api.cc639 if (!params->destination.parent_id.get()) {
644 if (!GetBookmarkIdAsInt64(*params->destination.parent_id, &parentId))
653 if (params->destination.index.get()) { // Optional (defaults to end).
654 index = *params->destination.index;
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
H A Dwebrequest_rules_registry_unittest.cc154 const std::string& destination) {
160 action_dict.SetString(keys::kRedirectUrlKey, destination);
171 // Create a rule to ignore all other rules for a destination that
153 CreateRedirectRule( const std::string& destination) argument
/external/chromium_org/chrome/browser/extensions/api/experience_sampling_private/
H A Dexperience_sampling.cc37 const GURL& destination,
45 element_name, destination, referrer, profile));
56 const GURL& destination,
63 ui_element_.destination = destination.GetAsReferrer().possibly_invalid_spec();
35 Create( const std::string& element_name, const GURL& destination, const GURL& referrer) argument
54 ExperienceSamplingEvent( const std::string& element_name, const GURL& destination, const GURL& referrer, content::BrowserContext* browser_context) argument
H A Dexperience_sampling.h40 const GURL& destination,
47 const GURL& destination,
/external/chromium_org/chrome/browser/extensions/api/file_system/
H A Dfile_system_apitest.cc94 base::FilePath destination = temp_dir_.path().AppendASCII(destination_name); local
97 EXPECT_TRUE(base::CopyFile(source, destination));
99 return destination;
116 base::FilePath destination = temp_dir_.path().AppendASCII(*it); local
119 EXPECT_TRUE(base::CopyFile(source, destination));
121 result.push_back(destination);
/external/chromium_org/chrome/browser/extensions/api/tabs/
H A Dtabs_api.cc175 scoped_ptr<T>& destination) {
177 destination.reset(new T(*source.get()));
174 AssignOptionalValue(const scoped_ptr<T>& source, scoped_ptr<T>& destination) argument
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_history_provider_service.cc154 int destination,
169 destination),
151 MoveStatement( history::AndroidStatement* statement, int current_pos, int destination, const MoveStatementCallback& callback, base::CancelableTaskTracker* tracker) argument
H A Dandroid_history_provider_service.h107 // Moves the statement's current row from |current_pos| to |destination| in DB
113 int destination,
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend.h352 int destination);
843 // Maps recent redirect destination pages to the chain of redirects that
848 // destination.
851 // destination of the redirect (i.e., the key into recent_redirects_);
H A Dhistory_backend_android.cc69 int destination) {
71 DCHECK_LE(-1, destination);
74 if (current_pos > destination) {
78 for (; cur < destination; ++cur) {
67 MoveStatement(history::AndroidStatement* statement, int current_pos, int destination) argument
H A Dtop_sites_cache.cc155 size_t destination) {
159 // Map all the redirected URLs to the destination.
164 entry.first = &(top_sites_[destination]);
166 canonical_urls_[entry] = destination;
154 StoreRedirectChain(const RedirectList& redirects, size_t destination) argument

Completed in 7190 milliseconds

1234567891011>>