HomeSort by relevance Sort by last modified time
    Searched full:details (Results 51 - 75 of 51497) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/builtins/x86_64/
floatdisf.c 2 * License. See LICENSE.TXT for details.
  /external/javassist/src/main/javassist/util/proxy/
package.html 4 See <code>ProxyFactory</code> for more details.
  /external/skia/
README 3 See full details, and build instructions, at https://sites.google.com/site/skiadocs/home
  /hardware/broadcom/wlan/bcmdhd/config/
android_dhcpcd.conf 2 # See dhcpcd.conf(5) for details.
  /hardware/qcom/wlan/qcwcn/config/
android_dhcpcd.conf 2 # See dhcpcd.conf(5) for details.
  /ndk/tests/standalone/init-fini-arrays/
foo.cpp 1 /* For details, see README */
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/css/
plugin_list.css 35 .plugin-show-details .num-rules {
48 .plugin-details {
59 .plugin-measure-details .plugin-details {
65 li.plugin-show-details {
69 .plugin-show-details .plugin-description {
73 .plugin-show-details .plugin-details {
  /external/chromium_org/chrome/browser/sync/
profile_sync_test_util.cc 21 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);
  /external/chromium_org/ui/events/
event_processor.cc 30 EventDispatchDetails details; local
32 details = DispatchEvent(target, event_to_dispatch);
41 if (details.dispatcher_destroyed)
42 return details;
44 if (details.target_destroyed || event->handled())
51 return details;
event_dispatcher.cc 53 EventDispatchDetails details = PreDispatchEvent(target, event); local
55 !details.dispatcher_destroyed &&
56 !details.target_destroyed) {
57 details = DispatchEventToTarget(target, event);
59 bool target_destroyed_during_dispatch = details.target_destroyed;
60 if (!details.dispatcher_destroyed) {
61 details = PostDispatchEvent(target_destroyed_during_dispatch ?
65 details.target_destroyed |= target_destroyed_during_dispatch;
66 return details;
91 EventDispatchDetails details; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarker.cpp 61 inline DocumentMarkerDescription* toDocumentMarkerDescription(DocumentMarkerDetails* details)
63 if (details && details->isDescription())
64 return static_cast<DocumentMarkerDescription*>(details);
92 inline DocumentMarkerTextMatch* toDocumentMarkerTextMatch(DocumentMarkerDetails* details)
94 if (details && details->isTextMatch())
95 return static_cast<DocumentMarkerTextMatch*>(details);
126 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtrWillBeRawPtr<DocumentMarkerDetails> details)
130 , m_details(details)
    [all...]
  /external/chromium_org/chrome/browser/history/
in_memory_history_backend.cc 71 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())
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/content_settings/
cookie_details_view_controller_unittest.mm 23 CocoaCookieDetails* details = [CocoaCookieDetails alloc];
24 [details initWithCookie:&cookie
26 return [details autorelease];
31 CocoaCookieDetails* details = CreateTestCookieDetails(canEditExpiration);
32 return [[[CookiePromptContentDetailsAdapter alloc] initWithDetails:details]
40 CocoaCookieDetails* details = [CocoaCookieDetails alloc];
41 [details initWithDatabase:domain
45 return [details autorelease];
49 CocoaCookieDetails* details = CreateTestDatabaseDetails();
50 return [[[CookiePromptContentDetailsAdapter alloc] initWithDetails:details]
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/
proxy_error_handler.js 31 * @typedef {{fatal: boolean, error: string, details: string}}
39 * Details of the most recent error.
64 * Handles the error event, storing the error details for later use, and
67 * @param {!ProxyErrorHandler.ErrorDetails} details The error details.
70 handleError_: function(details) {
75 var color = details.fatal ? RED : YELLOW;
79 title: chrome.i18n.getMessage('errorPopupTitle', details.error)
83 this.lastError_ = JSON.stringify(details);
88 * Returns details of the last error handled
    [all...]
  /external/chromium_org/storage/browser/database/
databases_table.cc 56 DatabaseDetails* details) {
57 DCHECK(details);
65 details->origin_identifier = origin_identifier;
66 details->database_name = database_name;
67 details->description = select_statement.ColumnString16(0);
68 details->estimated_size = select_statement.ColumnInt64(1);
75 bool DatabasesTable::InsertDatabaseDetails(const DatabaseDetails& details) {
79 insert_statement.BindString(0, details.origin_identifier);
80 insert_statement.BindString16(1, details.database_name);
81 insert_statement.BindString16(2, details.description)
130 DatabaseDetails details; local
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
drive_backend_test_util.cc 45 ExpectEquivalentDetails(left.details(), right.details());
63 FileDetails details; local
64 details.set_title(title);
65 details.set_file_kind(FILE_KIND_FOLDER);
66 details.set_missing(false);
70 *metadata->mutable_details() = details;
78 FileDetails details; local
79 details.set_title(title);
80 details.set_file_kind(FILE_KIND_FILE)
    [all...]
  /external/chromium_org/content/public/browser/
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/chromium_org/extensions/renderer/resources/
greasemonkey_api.js 25 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.headers)
    [all...]
  /external/chromium_org/chrome/browser/ui/login/
login_prompt_test_utils.cc 20 const content::NotificationDetails& details) {
22 AddHandler(content::Details<LoginNotificationDetails>(details)->handler());
25 RemoveHandler(content::Details<AuthSuppliedLoginNotificationDetails>(
26 details)->handler());
30 content::Details<LoginNotificationDetails>(details)->handler());
73 const content::NotificationDetails& details) {
76 WindowedNotificationObserver::Observe(type, source, details);
  /external/chromium_org/third_party/qunit/src/
browser_test_harness.js 30 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,
  /external/chromium_org/ui/views/widget/
root_view_unittest.cc 62 ui::EventDispatchDetails details = root_view->OnEventFromSource(&key_event); local
63 EXPECT_TRUE(details.target_destroyed);
64 EXPECT_FALSE(details.dispatcher_destroyed);
126 ui::EventDispatchDetails details = local
128 EXPECT_FALSE(details.target_destroyed);
129 EXPECT_FALSE(details.dispatcher_destroyed);
138 details = root_view->OnEventFromSource(&menu_key_event);
139 EXPECT_FALSE(details.target_destroyed);
140 EXPECT_FALSE(details.dispatcher_destroyed);
148 details = root_view->OnEventFromSource(&menu_key_event2)
210 ui::EventDispatchDetails details = root_view->OnEventFromSource(&long_press1); local
295 ui::EventDispatchDetails details = root_view->OnEventFromSource(&long_press1); local
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcleak.stdinB.gdb 14 # fprintf(stderr, "expecting details 10 bytes reachable\n"); fflush(stderr); breakme();
20 # fprintf(stderr, "expecting to have NO details\n"); fflush(stderr);
28 # fprintf(stderr, "expecting details +10 bytes lost, +21 bytes reachable\n"); fflush(stderr); breakme();
36 # fprintf(stderr, "expecting details +65 bytes reachable\n"); fflush(stderr); breakme();
42 # fprintf(stderr, "expecting to have NO details\n"); fflush(stderr); breakme();
49 # fprintf(stderr, "expecting details +10 bytes reachable\n"); fflush(stderr); breakme();
56 # fprintf(stderr, "expecting details -10 bytes reachable, +10 bytes lost\n"); fflush(stderr); breakme();
63 # fprintf(stderr, "expecting details -10 bytes lost, +10 bytes reachable\n"); fflush(stderr); breakme();
70 # fprintf(stderr, "expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable\n"); fflush(stderr); breakme();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMediaItem.java 84 MediaDetails details = super.getDetails(); local
85 details.addDetail(MediaDetails.INDEX_PATH, filePath);
86 details.addDetail(MediaDetails.INDEX_TITLE, caption);
88 details.addDetail(MediaDetails.INDEX_DATETIME,
90 details.addDetail(MediaDetails.INDEX_WIDTH, width);
91 details.addDetail(MediaDetails.INDEX_HEIGHT, height);
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
96 if (fileSize > 0) details.addDetail(MediaDetails.INDEX_SIZE, fileSize);
97 return details;
  /external/chromium_org/ash/wm/
default_window_resizer.cc 32 if (!did_move_or_resize_ && !details().restore_bounds.IsEmpty())
46 GetTarget()->SetBounds(details().initial_bounds_in_parent);
48 if (!details().restore_bounds.IsEmpty())
49 window_state_->SetRestoreBoundsInScreen(details().restore_bounds);
55 DCHECK(details().is_resizable);
  /external/chromium_org/chrome/browser/predictors/
resource_prefetch_predictor_tab_helper.cc 42 const content::LoadFromMemoryCacheDetails& details) {
53 summary.resource_url = details.url;
54 summary.mime_type = details.mime_type;
57 details.mime_type, details.resource_type);

Completed in 3545 milliseconds

1 23 4 5 6 7 8 91011>>