HomeSort by relevance Sort by last modified time
    Searched full:profile (Results 901 - 925 of 3371) sorted by null

<<31323334353637383940>>

  /external/chromium/chrome/browser/ui/cocoa/
history_menu_bridge.mm 16 #include "chrome/browser/profiles/profile.h"
68 HistoryMenuBridge::HistoryMenuBridge(Profile* profile)
70 profile_(profile),
75 // If we don't have a profile, do not bother initializing our data sources.
81 HistoryService* hs = profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
139 // profile. If so, perform final initialization.
142 profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
271 Profile* HistoryMenuBridge::profile() {
    [all...]
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.h 39 class Profile;
51 Profile* profile,
56 // Resets the profile. This removes any buttons for the current profile and
58 void SetProfile(Profile* profile);
60 // Returns the current profile.
61 Profile* GetProfile() { return profile_; }
74 void Init(Profile* profile)
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bubble_view.cc 15 #include "chrome/browser/profiles/profile.h"
63 Profile* profile,
66 BookmarkBubbleView::Show(parent, bounds, delegate, profile, url,
88 Profile* profile,
94 bookmark_bubble_ = new BookmarkBubbleView(delegate, profile, url,
112 Source<Profile>(profile->GetOriginalProfile()),
166 Profile* profile
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 139 void Profile(llvm::FoldingSetNodeID &ID, ASTContext &Context);
141 static void Profile(llvm::FoldingSetNodeID &ID,
315 void Profile(llvm::FoldingSetNodeID &ID) {
351 void Profile(llvm::FoldingSetNodeID &ID);
353 static void Profile(llvm::FoldingSetNodeID &ID,
416 void Profile(llvm::FoldingSetNodeID &ID) {
417 Profile(ID, getQualifier(), hasTemplateKeyword(), getTemplateDecl());
420 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS,
514 void Profile(llvm::FoldingSetNodeID &ID) {
516 Profile(ID, getQualifier(), getIdentifier())
    [all...]
  /external/v8/include/
v8-profiler.h 117 * CpuProfile contains a CPU profile in a form of two call trees:
123 /** Returns CPU profile UID (assigned by the profiler.) */
126 /** Returns CPU profile title. */
136 * Deletes the profile and removes it from CpuProfiler's list.
156 * single CPU profile. To avoid exposing function names belonging to
167 /** Returns a profile by index. */
172 /** Returns a profile by uid. */
178 * Starts collecting CPU profile. Title may be an empty string. It
181 * title are silently ignored. While collecting a profile, functions
183 * filtering is only performed when querying for a profile
    [all...]
  /external/aac/libAACenc/src/
metadata_compressor.h 156 * \param profileLine DRC profile for line mode.
157 * \param profileRF DRC profile for RF mode.
210 * \brief Configure DRC Compressor Profile.
213 * \param profileLine DRC profile for line mode.
214 * \param profileRF DRC profile for RF mode.
228 * \brief Get DRC profile for line mode.
232 * \return Current Profile.
240 * \brief Get DRC profile for RF mode.
244 * \return Current Profile.
  /external/chromium/chrome/browser/
background_page_tracker.cc 22 #include "chrome/browser/profiles/profile.h"
112 Profile* profile = g_browser_process->profile_manager()->GetDefaultProfile();
113 if (profile->GetExtensionService() &&
114 profile->GetExtensionService()->is_ready()) {
181 Profile* profile = g_browser_process->profile_manager()->GetDefaultProfile(); local
182 ExtensionService* extensions_service = profile->GetExtensionService();
237 BackgroundContentsServiceFactory::GetForProfile(profile);
process_singleton_win.cc 18 #include "chrome/browser/profiles/profile.h"
43 // Look for a Chrome instance that uses the same profile directory.
277 Profile* profile = ProfileManager::GetDefaultProfile(); local
278 if (!profile) {
279 // We should only be able to get here if the profile already exists and
286 // in the process that is running with the target profile, otherwise the
290 ext_startup_util.UninstallExtension(parsed_command_line, profile);
297 profile, NULL);
  /external/chromium/chrome/browser/bookmarks/
bookmark_pasteboard_helper_mac.mm 24 // Pasteboard type used to store profile path to determine which profile
30 // of one profile.
249 NSString* profile = [pb stringForType:kChromiumProfilePathPboardType];
250 profile_path->assign(base::SysNSStringToUTF8(profile));
305 void StartDrag(Profile* profile, const std::vector<const BookmarkNode*>& nodes,
318 profile:profile
bookmark_context_menu_controller.cc 15 #include "chrome/browser/profiles/profile.h"
26 Profile* profile,
32 profile_(profile),
36 model_(profile->GetBookmarkModel()) {
bookmark_storage.h 19 class Profile;
88 BookmarkStorage(Profile* profile, BookmarkModel* model);
140 // Keep the pointer to profile, we may need it for migration from history.
141 Profile* profile_;
  /external/chromium/chrome/browser/chromeos/
network_message_observer.cc 15 #include "chrome/browser/profiles/profile.h"
26 // Returns prefs::kShowPlanNotifications in the profile of the last active
30 if (!browser || !browser->profile())
33 PrefService* prefs = browser->profile()->GetPrefs();
41 NetworkMessageObserver::NetworkMessageObserver(Profile* profile)
42 : notification_connection_error_(profile, "network_connection.chromeos",
45 notification_low_data_(profile, "network_low_data.chromeos",
48 notification_no_data_(profile, "network_no_data.chromeos",
locale_change_guard.cc 14 #include "chrome/browser/profiles/profile.h"
41 LocaleChangeGuard::LocaleChangeGuard(Profile* profile)
42 : profile_(profile),
68 from_locale_, Profile::APP_LOCALE_CHANGED_VIA_REVERT);
  /external/chromium/chrome/browser/extensions/
extension_management_api.cc 19 #include "chrome/browser/profiles/profile.h"
56 return profile()->GetExtensionService();
187 Browser::OpenApplication(profile(), extension, launch_container, NULL);
300 Profile* profile = Source<Profile>(source).ptr(); local
301 CHECK(profile);
316 ExtensionService* service = profile->GetExtensionService();
324 profile->GetExtensionEventRouter()->DispatchEventToRenderers(
extension_preference_api.cc 18 #include "chrome/browser/profiles/profile.h"
87 Profile* profile,
91 PrefService* prefs = incognito ? profile->GetOffTheRecordPrefs()
92 : profile->GetPrefs();
96 ExtensionPrefs* ep = profile->GetExtensionService()->extension_prefs();
201 Profile* profile) : profile_(profile) {
extension_browsertest.h 73 Profile* profile) {
75 expected_change, profile);
146 Profile* profile);
extension_toolbar_model_browsertest.cc 8 #include "chrome/browser/profiles/profile.h"
28 virtual Browser* CreateBrowser(Profile* profile) {
29 Browser* b = InProcessBrowserTest::CreateBrowser(profile);
30 ExtensionService* service = b->profile()->GetExtensionService();
  /external/chromium/chrome/browser/ui/webui/
history2_ui.cc 24 #include "chrome/browser/profiles/profile.h"
131 Profile* profile = web_ui->GetProfile(); local
132 profile->GetChromeURLDataManager()->AddDataSource(
133 new FaviconSource(profile));
168 web_ui_->GetProfile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
193 web_ui_->GetProfile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
230 web_ui_->GetProfile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
384 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
history_ui.cc 24 #include "chrome/browser/profiles/profile.h"
131 Profile* profile = web_ui->GetProfile(); local
132 profile->GetChromeURLDataManager()->AddDataSource(
133 new FaviconSource(profile));
168 web_ui_->GetProfile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
193 web_ui_->GetProfile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
230 web_ui_->GetProfile()->GetHistoryService(Profile::EXPLICIT_ACCESS);
372 contents->profile()->GetChromeURLDataManager()->AddDataSource(html_source);
  /external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
WebAutofill.cpp 242 // Update the profile.
258 mTabContents->profile()->GetPersonalDataManager()->SetProfiles(&profiles);
272 // For now Chromium only ever knows about one profile, so we can just
276 mTabContents->profile()->GetPersonalDataManager()->RemoveProfile(profileGuid);
282 // Set an empty profile. This will ensure that when autofill is enabled,
285 // their own profile.
287 // Chromium code will strip the values sent into the profile so we need them to be
289 // profile to a non-empty string so that any field type can trigger the autofill
290 // suggestion. Autofill will not detect form fields if the profile value for that
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/impl/
profiler.h 31 /** @file profile/impl/profiler.h
373 #define _GLIBCXX_PROFILE_TRACE_PATH_ROOT "libstdcxx-profile"
401 #include "profile/impl/profiler_hash_func.h"
402 #include "profile/impl/profiler_hashtable_size.h"
403 #include "profile/impl/profiler_map_to_unordered_map.h"
404 #include "profile/impl/profiler_vector_size.h"
405 #include "profile/impl/profiler_vector_to_list.h"
406 #include "profile/impl/profiler_list_to_slist.h"
407 #include "profile/impl/profiler_list_to_vector.h"
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/profile/impl/
profiler.h 31 /** @file profile/impl/profiler.h
373 #define _GLIBCXX_PROFILE_TRACE_PATH_ROOT "libstdcxx-profile"
401 #include "profile/impl/profiler_hash_func.h"
402 #include "profile/impl/profiler_hashtable_size.h"
403 #include "profile/impl/profiler_map_to_unordered_map.h"
404 #include "profile/impl/profiler_vector_size.h"
405 #include "profile/impl/profiler_vector_to_list.h"
406 #include "profile/impl/profiler_list_to_slist.h"
407 #include "profile/impl/profiler_list_to_vector.h"
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_views.h 25 class Profile;
46 Profile* profile,
158 AutocompletePopupView* CreatePopupView(Profile* profile,
extension_app_provider.cc 15 #include "chrome/browser/profiles/profile.h"
20 Profile* profile)
21 : AutocompleteProvider(listener, profile, "ExtensionApps") {
160 profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);
history_provider.cc 15 #include "chrome/browser/profiles/profile.h"
20 Profile* profile,
22 : AutocompleteProvider(listener, profile, name) {
31 profile_->GetHistoryService(Profile::EXPLICIT_ACCESS);

Completed in 546 milliseconds

<<31323334353637383940>>