Searched refs:details (Results 1 - 25 of 1638) sorted by relevance

1234567891011>>

/external/chromium_org/sync/internal_api/
H A Djs_sync_encryption_handler_observer.cc37 base::DictionaryValue details; local
38 details.SetString("reason",
40 HandleJsEvent(FROM_HERE, "onPassphraseRequired", JsEventDetails(&details));
47 base::DictionaryValue details; local
48 HandleJsEvent(FROM_HERE, "onPassphraseAccepted", JsEventDetails(&details));
57 base::DictionaryValue details; local
58 details.SetString("bootstrapToken", "<redacted>");
59 details.SetString("type", BootstrapTokenTypeToString(type));
60 HandleJsEvent(FROM_HERE, "onBootstrapTokenUpdated", JsEventDetails(&details));
69 base::DictionaryValue details; local
81 base::DictionaryValue details; local
90 base::DictionaryValue details; local
106 base::DictionaryValue details; local
116 HandleJsEvent( const tracked_objects::Location& from_here, const std::string& name, const JsEventDetails& details) argument
[all...]
H A Djs_sync_manager_observer.cc36 base::DictionaryValue details; local
37 details.Set("snapshot", snapshot.ToValue());
38 HandleJsEvent(FROM_HERE, "onSyncCycleCompleted", JsEventDetails(&details));
45 base::DictionaryValue details; local
46 details.SetString("status", ConnectionStatusToString(status));
48 "onConnectionStatusChange", JsEventDetails(&details));
56 base::DictionaryValue details; local
57 details.Set("syncError", sync_error.ToValue());
59 JsEventDetails(&details));
77 base::DictionaryValue details; local
85 HandleJsEvent( const tracked_objects::Location& from_here, const std::string& name, const JsEventDetails& details) argument
[all...]
H A Djs_mutation_event_observer.cc53 base::DictionaryValue details; local
54 details.SetString("modelType", ModelTypeToString(model_type));
55 details.SetString("writeTransactionId",
71 details.Set("changes", changes_value);
72 HandleJsEvent(FROM_HERE, "onChangesApplied", JsEventDetails(&details));
79 base::DictionaryValue details; local
80 details.SetString("modelType", ModelTypeToString(model_type));
81 HandleJsEvent(FROM_HERE, "onChangesComplete", JsEventDetails(&details));
91 base::DictionaryValue details; local
92 details
99 HandleJsEvent( const tracked_objects::Location& from_here, const std::string& name, const JsEventDetails& details) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-evlist.c18 static int __cmd_evlist(const char *file_name, struct perf_attr_details *details) argument
28 perf_evsel__fprintf(pos, details, stdout);
36 struct perf_attr_details details = { .verbose = false, }; local
39 OPT_BOOLEAN('F', "freq", &details.freq, "Show the sample frequency"),
40 OPT_BOOLEAN('v', "verbose", &details.verbose,
41 "Show all event attr details"),
42 OPT_BOOLEAN('g', "group", &details.event_group,
55 if (details.event_group && (details.verbose || details
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dset_icon.js52 * Normalizes |details| to a format suitable for sending to the browser,
55 * @param {ImageDetails} details
61 function setIcon(details, callback) {
67 if ('iconIndex' in details) {
68 callback(details);
72 if ('imageData' in details) {
76 if (sizeKey in details.imageData) {
77 verifyImageData(details.imageData[sizeKey], iconSizes[i]);
83 // If details.imageData is not dictionary with keys in set {'19', '38'},
86 var imageData = details
[all...]
H A Dgreasemonkey_api.js25 function GM_xmlhttpRequest(details) {
45 if (eventName in details) {
46 setupEvent(xhr, details.url, eventName, details[eventName]);
50 xhr.open(details.method, details.url);
52 if (details.overrideMimeType) {
53 xhr.overrideMimeType(details.overrideMimeType);
55 if (details.headers) {
56 for (var header in details
[all...]
/external/chromium_org/chrome/browser/content_settings/
H A Dmock_settings_observer.cc24 const ContentSettingsDetails details(
27 details.type(),
28 details.update_all_types(),
29 details.primary_pattern(),
30 details.secondary_pattern(),
31 details.update_all());
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_editor.cc14 const BookmarkEditor::EditDetails& details,
19 // folder's position. Because |details.index| has a index of the folder when
24 int insert_index = (parent == details.parent_node && details.index >= 0 &&
25 details.index <= child_count) ?
26 details.index : child_count;
27 if (details.type == BookmarkEditor::EditDetails::NEW_URL) {
29 } else if (details.type == BookmarkEditor::EditDetails::NEW_FOLDER) {
31 for (size_t i = 0; i < details.urls.size(); ++i) {
32 model->AddURL(node, node->child_count(), details
12 CreateNewNode(BookmarkModel* model, const BookmarkNode* parent, const BookmarkEditor::EditDetails& details, const base::string16& new_title, const GURL& new_url) argument
123 ApplyEditsWithNoFolderChange( BookmarkModel* model, const BookmarkNode* parent, const EditDetails& details, const base::string16& new_title, const GURL& new_url) argument
145 ApplyEditsWithPossibleFolderChange( BookmarkModel* model, const BookmarkNode* new_parent, const EditDetails& details, const base::string16& new_title, const GURL& new_url) argument
[all...]
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-key.js85 var details = this.super([caller]);
86 details.keyCode = this.keyCode;
87 details.keyName = this.keyName;
88 details.shiftModifier = this.shiftModifier;
89 details.sound = this.sound;
90 return details;
/external/chromium_org/sync/js/
H A Djs_event_details_unittest.cc16 JsEventDetails details; local
17 EXPECT_TRUE(details.Get().empty());
18 EXPECT_EQ("{}", details.ToString());
28 JsEventDetails details(&dict);
30 // |details| should take over |dict|'s data.
32 EXPECT_TRUE(details.Get().Equals(dict_copy.get()));
/external/chromium_org/sync/internal_api/events/
H A Dnormal_get_updates_request_event.cc35 std::string details; local
38 if (!details.empty())
39 details.append("\n");
40 details.append(base::StringPrintf(
46 if (!details.empty())
47 details.append("\n");
48 details.append(base::StringPrintf(
54 if (!details.empty())
55 details.append("\n");
56 details
[all...]
/external/chromium_org/chrome/browser/history/
H A Din_memory_history_backend.cc71 const content::NotificationDetails& details) {
74 OnURLVisitedOrModified(content::Details<URLVisitedDetails>(details)->row);
78 *content::Details<KeywordSearchUpdatedDetails>(details).ptr());
82 *content::Details<KeywordSearchDeletedDetails>(details).ptr());
86 content::Details<URLsModifiedDetails>(details).ptr();
95 OnURLsDeleted(*content::Details<URLsDeletedDetails>(details).ptr());
113 void InMemoryHistoryBackend::OnURLsDeleted(const URLsDeletedDetails& details) { argument
116 if (details.all_history) {
126 for (URLRows::const_iterator row = details.rows.begin();
127 row != details
68 Observe( int type, const content::NotificationSource& source, const content::NotificationDetails& details) argument
134 OnKeywordSearchTermUpdated( const KeywordSearchUpdatedDetails& details) argument
142 OnKeywordSearchTermDeleted( const KeywordSearchDeletedDetails& details) argument
[all...]
/external/chromium_org/third_party/blanketjs/src/
H A Dqunit_adapter.js24 QUnit.moduleStart=function( details ) {
27 QUnit.testStart=function( details ) {
30 QUnit.testDone=function( details ) {
31 blanket.noConflict().onTestDone(details.total,details.passed);
53 QUnit.moduleStart(function( details ) {
56 QUnit.testStart(function( details ) {
59 QUnit.testDone(function( details ) {
60 blanket.noConflict().onTestDone(details.total,details
[all...]
/external/chromium_org/ui/events/gesture_detection/
H A Dgesture_event_data.cc11 GestureEventData::GestureEventData(const GestureEventDetails& details, argument
22 : details(details),
33 this->details.set_touch_points(static_cast<int>(touch_point_count));
34 this->details.set_bounding_box(bounding_box);
39 : details(type),
48 details.set_touch_points(other.details.touch_points());
49 details.set_bounding_box(other.details
[all...]
/external/chromium_org/ash/wm/
H A Dwindow_resizer.cc123 if (!details().is_resizable)
124 return details().initial_bounds_in_parent;
127 int delta_x = location.x() - details().initial_location_in_parent.x();
128 int delta_y = location.y() - details().initial_location_in_parent.y();
142 if (details().bounds_change & kBoundsChange_Resizes) {
154 if (details().size_change_direction & kBoundsChangeDirection_Horizontal) {
155 if (IsRightEdge(details().window_component) &&
166 if (details().size_change_direction & kBoundsChangeDirection_Vertical) {
167 if (!IsBottomEdge(details().window_component) &&
173 } else if (details()
[all...]
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_test_util.cc21 const content::NotificationDetails& details) {
22 Notify(type, content::NotificationService::AllSources(), details);
27 const content::NotificationDetails& details) {
31 base::Bind(&ThreadNotifier::NotifyTask, this, type, source, details));
39 const content::NotificationDetails& details) {
40 content::NotificationService::current()->Notify(type, source, details);
20 Notify(int type, const content::NotificationDetails& details) argument
25 Notify(int type, const content::NotificationSource& source, const content::NotificationDetails& details) argument
37 NotifyTask(int type, const content::NotificationSource& source, const content::NotificationDetails& details) argument
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/js/
H A Dchrome_stubs.js16 'set': function(details, callback) {
17 assertObjectEquals({'id': 'myplugin'}, details.resourceIdentifier);
18 var pattern = details.primaryPattern;
19 var setting = details.setting;
31 'clear': function(details, callback) {
32 assertObjectEquals({}, details);
/external/chromium_org/chrome/browser/resources/sync_file_system_internals/
H A Dtask_log.js18 * 'task_description', 'result_description' and 'details'.
21 var details = document.createElement('td');
22 details.classList.add('task-log-details');
25 details.appendChild(label);
33 for (var i = 0; i < taskLog.details.length; ++i)
34 ul.appendChild(createElementFromText('li', taskLog.details[i]));
44 tr.appendChild(details);
/external/wpa_supplicant_8/hostapd/logwatch/
H A Dhostapd29 if (my ($iface,$mac,$layer,$details) = ($line =~ /(.*?): STA (.*?) (.*?): (.*?)$/i)) {
32 $details =~ s/^(associated) .*$/$1/i;
34 $hostapd{$iface}->{$mac}->{$layer}->{$details}++;
47 foreach my $details (sort keys %{$hostapd{$iface}->{$mac}->{$layer}}) {
48 print " $details";
49 my $count = $hostapd{$iface}->{$mac}->{$layer}->{$details};
/external/chromium_org/chrome/browser/local_discovery/
H A Dcloud_device_list.cc44 CloudDeviceListDelegate::Device details; local
49 if (!FillDeviceDetails(*device, &details))
52 result.push_back(details);
64 CloudDeviceListDelegate::Device* details) {
65 if (!device_value.GetString("id", &details->id))
68 if (!device_value.GetString("displayName", &details->display_name) &&
69 !device_value.GetString("systemName", &details->display_name)) {
73 if (!device_value.GetString("deviceKind", &details->type))
77 device_value.GetString("description", &details->description);
62 FillDeviceDetails( const base::DictionaryValue& device_value, CloudDeviceListDelegate::Device* details) argument
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dchrome_direct_setting.js16 this.get = function(details, callback) {
18 validate([details, callback], getSchema);
20 [prefKey, details, callback],
23 this.set = function(details, callback) {
27 validate([details, callback], setSchema);
29 [prefKey, details, callback],
32 this.clear = function(details, callback) {
34 validate([details, callback], clearSchema);
36 [prefKey, details, callback],
H A Dchrome_setting.js16 this.get = function(details, callback) {
18 validate([details, callback], getSchema);
20 [prefKey, details, callback],
23 this.set = function(details, callback) {
27 validate([details, callback], setSchema);
29 [prefKey, details, callback],
32 this.clear = function(details, callback) {
34 validate([details, callback], clearSchema);
36 [prefKey, details, callback],
H A Dcontent_setting.js17 this.get = function(details, callback) {
19 validate([details, callback], getSchema);
21 [contentType, details, callback],
24 this.set = function(details, callback) {
28 validate([details, callback], setSchema);
30 [contentType, details, callback],
33 this.clear = function(details, callback) {
35 validate([details, callback], clearSchema);
37 [contentType, details, callback],
/external/chromium_org/content/public/common/
H A Dspeech_recognition_error.h16 // Error details for the SPEECH_RECOGNITION_ERROR_AUDIO error.
25 SpeechAudioErrorDetails details; member in struct:content::SpeechRecognitionError
29 details(SPEECH_AUDIO_ERROR_DETAILS_NONE) {
33 details(SPEECH_AUDIO_ERROR_DETAILS_NONE) {
38 details(details_value) {
/external/chromium_org/third_party/qunit/src/
H A Dbrowser_test_harness.js30 TestReporter.prototype.onTestDone_ = function(details) {
32 this.errorMessage_ += ' ' + details.module + '.' + details.name + '\n';
43 TestReporter.prototype.onAssertion_ = function(details) {
44 if (!details.result) {
45 this.failedAssertions_.push(details);
72 this.qunit_.done(function(details){
74 passed: details.passed == details.total,

Completed in 4908 milliseconds

1234567891011>>