HomeSort by relevance Sort by last modified time
    Searched refs:Details (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/public/browser/
notification_service.h 33 // Details is a reference to an object containing additional data about
38 const NotificationDetails& details) = 0;
58 // Returns a NotificationDetails object that represents a lack of details
60 static Details<void> NoDetails() { return Details<void>(NULL); }
notification_details.h 5 // This file defines the type used to provide details for NotificationService
17 // "Details<detailsclassname>(detailsclasspointer)" or
26 // returns the pointer to the current details as an identifier, for use as a
41 // Declaring this const allows Details<T> to be used with both T = Foo and
47 class Details : public NotificationDetails {
50 Details(T* ptr) : NotificationDetails(ptr) {} // NOLINT
51 Details(const NotificationDetails& other) // NOLINT
  /external/llvm/lib/Analysis/
LibCallAliasAnalysis.cpp 6 // License. See LICENSE.TXT for details.
56 const LibCallFunctionInfo::LocationMRInfo *Details = FI->LocationDetails;
57 if (Details == nullptr)
60 // If the details array is of the 'DoesNot' kind, we only know something if
61 // the pointer is a match for one of the locations in 'Details'. If we find a
66 for (unsigned i = 0; Details[i].LocationID != ~0U; ++i) {
68 LCI->getLocationInfo(Details[i].LocationID);
74 return ModRefResult(MRInfo & ~Details[i].MRInfo);
79 // If the details are of the 'DoesOnly' sort, we know something if the pointer
80 // is a match for one of the locations in 'Details'. Also, if we can prov
    [all...]
  /external/chromium_org/chrome/browser/history/
in_memory_history_backend.cc 66 const content::NotificationDetails& details) {
69 OnURLVisitedOrModified(content::Details<URLVisitedDetails>(details)->row);
73 *content::Details<KeywordSearchUpdatedDetails>(details).ptr());
77 *content::Details<KeywordSearchDeletedDetails>(details).ptr());
81 content::Details<URLsModifiedDetails>(details).ptr();
90 OnURLsDeleted(*content::Details<URLsDeletedDetails>(details).ptr())
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/cookies/
cookies_helpers.h 80 // match vector all the cookies that both match the given URL and cookie details
84 const extensions::api::cookies::GetAll::Params::Details* details,
93 // This class is essentially a convenience wrapper for the details dictionary
99 // Takes the details dictionary argument given by the user as input.
100 // This class does not take ownership of the lifetime of the Details
103 const extensions::api::cookies::GetAll::Params::Details* details);
119 const extensions::api::cookies::GetAll::Params::Details* details_;
  /external/chromium_org/ui/events/
gesture_event_details.cc 67 GestureEventDetails::Details::Details() {
68 memset(this, 0, sizeof(Details));
  /external/chromium_org/chrome/browser/content_settings/
mock_settings_observer.cc 24 const content::NotificationDetails& details) {
28 content::Details<ContentSettingsDetails>(details).ptr();
content_settings_internal_extension_provider.cc 72 const content::NotificationDetails& details) {
76 content::Details<extensions::ExtensionHost>(details).ptr();
138 content::Details<extensions::Extension>(details).ptr();
145 *(content::Details<UnloadedExtensionInfo>(details).ptr());
  /external/chromium_org/chrome/browser/tab_contents/
background_contents.cc 82 content::Details<BackgroundContents>(this));
93 content::Details<BackgroundContents>(this));
112 content::Details<BackgroundContents>(this));
136 content::Details<BackgroundContents>(this));
147 const content::NotificationDetails& details) {
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 6 // License. See LICENSE.TXT for details.
62 const EmittedFunctionDetails &Details);
119 const EmittedFunctionDetails &Details) {
127 if (!Details.LineStarts.empty()) {
129 // format in Details to the offset/lineno in Intel JIT API format.
131 LineInfo.reserve(Details.LineStarts.size() + 1);
133 DebugLoc FirstLoc = Details.LineStarts[0].Loc;
150 Details.LineStarts.begin(), E = Details.LineStarts.end();
164 Details.MF->getFunction()->getContext())
    [all...]
  /external/llvm/lib/ExecutionEngine/OProfileJIT/
OProfileJITEventListener.cpp 6 // License. See LICENSE.TXT for details.
54 const JITEvent_EmittedFunctionDetails &Details);
100 const JITEvent_EmittedFunctionDetails &Details) {
111 if (!Details.LineStarts.empty()) {
113 // format in Details to the address/filename/lineno format that OProfile
118 LineInfo.reserve(1 + Details.LineStarts.size());
120 DebugLoc FirstLoc = Details.LineStarts[0].Loc;
138 I = Details.LineStarts.begin(), E = Details.LineStarts.end();
141 *Details.MF, Filenames, I->Address, I->Loc))
    [all...]
  /external/chromium_org/chrome/browser/google/
google_search_counter_android.cc 30 const content::NotificationDetails& details) {
33 if (!counter->ShouldRecordCommittedDetails(details))
37 *content::Details<content::LoadCommittedDetails>(details)->entry;
51 const content::NotificationDetails& details) {
53 ProcessCommittedEntry(source, details);
google_search_counter.cc 49 const content::NotificationDetails& details) const {
51 content::Details<content::LoadCommittedDetails>(details).ptr();
64 const content::NotificationDetails& details) {
69 content::Details<content::LoadCommittedDetails>(details).ptr();
71 if (ShouldRecordCommittedDetails(details)) {
92 const content::NotificationDetails& details) {
95 ProcessCommittedEntry(source, details);
  /external/chromium_org/chrome/browser/sync/glue/
extensions_activity_monitor.cc 39 const content::NotificationDetails& details) {
44 content::Details<const extensions::BookmarksFunction>(details).ptr();
  /external/chromium_org/chrome/browser/ui/webui/
chrome_url_data_manager_browsertest.cc 27 const content::NotificationDetails& details) OVERRIDE {
31 content::Details<content::LoadCommittedDetails>(details)->
  /external/chromium_org/chrome/test/base/
extension_load_waiter_one_shot.cc 36 const content::NotificationDetails& details) {
40 content::Details<extensions::ExtensionHost>(details).ptr();
find_in_page_observer.cc 40 const content::NotificationDetails& details) {
42 content::Details<FindNotificationDetails> find_details(details);
  /frameworks/base/telecomm/java/android/telecom/
Call.java 99 public static class Details {
217 if (o instanceof Details) {
218 Details d = (Details) o;
257 public Details(
313 * Invoked when the details of this {@code Call} have changed. See {@link #getDetails()}.
316 * @param details A {@code Details} object describing the {@code Call}.
318 public void onDetailsChanged(Call call, Details details) {}
651 Details details = new Details( local
    [all...]
  /external/chromium_org/chrome/browser/ssl/
ssl_client_auth_observer.cc 41 CertDetails details; local
42 details.first = cert_request_info_.get();
43 details.second = certificate;
48 content::Details<CertDetails>(&details));
57 const content::NotificationDetails& details) {
62 CertDetails* cert_details = content::Details<CertDetails>(details).ptr();
  /external/chromium_org/chrome/browser/background/
background_contents_service.cc 362 const content::NotificationDetails& details) {
373 content::Details<BackgroundContents>(details).ptr());
377 DCHECK(IsTracked(content::Details<BackgroundContents>(details).ptr()));
379 content::Details<BackgroundContents>(details).ptr());
384 DCHECK(IsTracked(content::Details<BackgroundContents>(details).ptr()));
389 content::Details<BackgroundContents>(details).ptr()
670 BackgroundContentsOpenedDetails details = {contents, local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_notification_observer.cc 97 const content::NotificationDetails& details) {
101 content::Details<const InstalledExtensionInfo>(details)->extension;
109 content::Details<const Extension>(details).ptr();
117 content::Details<UnloadedExtensionInfo>(details).ptr();
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_dialog.cc 185 const content::NotificationDetails& details) {
193 if (content::Details<extensions::ExtensionHost>(host()) == details)
198 if (content::Details<extensions::ExtensionHost>(host()) != details)
203 if (content::Details<extensions::ExtensionHost>(host()) != details)
  /external/chromium_org/extensions/browser/
lazy_background_task_queue.cc 138 const content::NotificationDetails& details) {
144 content::Details<ExtensionHost>(details).ptr();
159 content::Details<ExtensionHost>(details).ptr();
170 content::Details<UnloadedExtensionInfo>(details).ptr();
extension_host.cc 159 content::Details<ExtensionHost>(this));
215 content::Details<ExtensionHost>(this));
220 const content::NotificationDetails& details) {
227 if (extension_ == content::Details<UnloadedExtensionInfo>(details)->
261 content::Details<ExtensionHost>(this));
293 content::Details<ExtensionHost>(this));
419 content::Details<ExtensionHost>(this));
  /external/chromium_org/apps/
app_lifetime_monitor.cc 51 const content::NotificationDetails& details) {
54 ExtensionHost* host = content::Details<ExtensionHost>(details).ptr();
64 ExtensionHost* host = content::Details<ExtensionHost>(details).ptr();

Completed in 1024 milliseconds

1 2 3 4 5 6 7 8 91011>>