/external/webkit/Source/WebCore/bindings/v8/ |
ScriptProfiler.cpp | 53 const v8::CpuProfile* profile = state ? local 56 return profile ? ScriptProfile::create(profile) : 0;
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothClass.java | 288 * Check class bits for possible bluetooth profile support. 290 * given class bits might support specified profile. It is not accurate for all 292 * @param profile The profile to be checked 293 * @return True if this device might support specified profile. 296 public boolean doesClassMatch(int profile) { 297 if (profile == PROFILE_A2DP) { 313 } else if (profile == PROFILE_HEADSET) { 328 } else if (profile == PROFILE_OPP) { 351 } else if (profile == PROFILE_HID) [all...] |
BluetoothHealth.java | 30 * Public API for Bluetooth Health Profile. 60 * Health Profile Source Role - the health device. 65 * Health Profile Sink Role the device talking to the health device. 70 * Health Profile - Channel Type used - Reliable 75 * Health Profile - Channel Type used - Streaming 107 * @param dataType The dataType of the Source role of Health Profile to which 130 * @param dataType The dataType of the Source role of Health Profile. 302 * Get the current connection state of the profile. 312 * @return State of the profile connection. One of 332 * Get connected devices for the health profile [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
NfcHandler.java | 29 import android.provider.ContactsContract.Profile; 48 private static final String PROFILE_LOOKUP_KEY = "profile"; 74 shareUri = Profile.CONTENT_VCARD_URI.buildUpon().
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
A2dpProfile.java | 46 // Order of this profile in device profiles list 53 public void onServiceConnected(int profile, BluetoothProfile proxy) { 57 public void onServiceDisconnected(int profile) {
|
/external/chromium/chrome/browser/chromeos/login/ |
google_authenticator.h | 23 class Profile; 46 // an error message. Uses |profile| when doing URL fetches. 55 bool AuthenticateToLogin(Profile* profile, 100 void RetryAuth(Profile* profile,
|
/external/chromium/chrome/browser/extensions/ |
extension_sidebar_api.cc | 15 #include "chrome/browser/profiles/profile.h" 57 Profile* profile, TabContents* tab, const std::string& content_id, 69 profile->GetExtensionEventRouter()->DispatchEventToExtension( 71 kOnStateChanged, json_args, profile, GURL()); local 111 if (!ExtensionTabUtil::GetTabById(tab_id, profile(), include_incognito(),
|
/external/chromium/chrome/browser/net/gaia/ |
token_service.cc | 9 #include "chrome/browser/profiles/profile.h" 38 Profile* profile) { 45 getter_ = profile->GetRequestContext(); 48 web_data_service_ = profile->GetWebDataService(Profile::EXPLICIT_ACCESS);
|
/external/chromium/chrome/browser/prerender/ |
prerender_manager.h | 21 class Profile; 53 // Owned by a Profile object for the lifetime of the profile. 54 explicit PrerenderManager(Profile* profile); 190 Profile* profile_;
|
/external/chromium/chrome/browser/sync/glue/ |
autofill_data_type_controller.cc | 11 #include "chrome/browser/profiles/profile.h" 24 Profile* profile, 27 profile_(profile), 36 DCHECK(profile); 77 web_data_service_ = profile_->GetWebDataService(Profile::IMPLICIT_ACCESS);
|
/external/chromium/chrome/browser/themes/ |
theme_service.h | 24 class Profile; 143 virtual void Init(Profile* profile); 245 Profile* profile() { return profile_; } function in class:ThemeService 286 Profile* profile_;
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_editor_base_controller.h | 34 Profile* profile_; // weak 59 profile:(Profile*)profile 76 // to the OK button of a dialog which presents a tree view of a profile's 111 // Describes the profile's bookmark folder structure: the folder name, the
|
/external/chromium/chrome/browser/ui/views/ |
browser_actions_container_browsertest.cc | 8 #include "chrome/browser/profiles/profile.h" 20 virtual Browser* CreateBrowser(Profile* profile) { 21 browser_ = InProcessBrowserTest::CreateBrowser(profile); 231 ExtensionService* service = browser()->profile()->GetExtensionService(); 245 ExtensionService* service = browser()->profile()->GetExtensionService();
|
/external/chromium/chrome/browser/web_resource/ |
web_resource_service.cc | 17 #include "chrome/browser/profiles/profile.h" 70 // Do not let url fetcher affect existing state in profile (by setting 200 Profile* profile, 209 profile_(profile), 220 DCHECK(profile);
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
BasicValueFactory.h | 37 static void Profile(llvm::FoldingSetNodeID& ID, QualType T, 40 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, T, L); } 53 static void Profile(llvm::FoldingSetNodeID& ID, 57 void Profile(llvm::FoldingSetNodeID& ID) { Profile(ID, store, region); }
|
/external/clang/lib/CodeGen/ |
CGCall.h | 257 void Profile(llvm::FoldingSetNodeID &ID) { 264 getReturnType().Profile(ID); 266 it->type.Profile(ID); 268 static void Profile(llvm::FoldingSetNodeID &ID, 279 resultType.Profile(ID); 282 i->Profile(ID);
|
/external/llvm/include/llvm/ADT/ |
ImmutableList.h | 44 static inline void Profile(FoldingSetNodeID& ID, const T& H, 50 void Profile(FoldingSetNodeID& ID) { 51 Profile(ID, Head, Tail); 135 void Profile(FoldingSetNodeID& ID) const { 168 // Profile the new list to see if it already exists in our cache. 173 ListTy::Profile(ID, Head, TailImpl);
|
/external/valgrind/main/callgrind/docs/ |
cl-manual.xml | 27 <para>The profile data is written out to a file at program 34 <para>This command reads in the profile data, and prints a 52 or dumping of profile data.</para> 60 <para>Cachegrind collects flat profile data: event counts (data reads, 110 <para>To start a profile run for a program, execute: 121 <para>After program termination, a profile data file named 129 <para>To generate a function-by-function summary from the profile 183 <para>If the program section you want to profile is somewhere in the 197 profile data at instruction granularity. Note that the resulting profile [all...] |
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
MediaRecorderStressTest.java | 61 private static CamcorderProfile profile = field in class:MediaRecorderStressTest 86 CamcorderProfile profile = CamcorderProfile.get(cameraId, CamcorderProfile.QUALITY_HIGH); local 87 mVideoEncoder = profile.videoCodec; 88 mAudioEncoder = profile.audioCodec; 89 mFrameRate = profile.videoFrameRate; 90 mVideoWidth = profile.videoFrameWidth; 91 mVideoHeight = profile.videoFrameHeight; 92 mBitRate = profile.videoBitRate;
|
/external/antlr/antlr-3.4/tool/ |
pom.xml | 25 <profile> 41 </profile>
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
V2Form.java | 103 * -- issuerName MUST be present in this profile 105 * -- be present in this profile
|
/external/chromium/build/internal/ |
README.chromium | 18 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_instrument. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) instrumentation (first pass). Uses "Full Optimization" and "Flavor small code". 21 Included by ..\release.vsprops when CHROME_BUILD_TYPE=_pgo_optimize. Includes release_defaults.vsprops. Enables Profile Guided Optimization (PGO) optimization (second pass). Uses "Full Optimization" and "Flavor small code".
|
/external/chromium/chrome/browser/autocomplete/ |
extension_app_provider.h | 34 ExtensionAppProvider(ACProviderListener* listener, Profile* profile);
|
history_contents_provider.h | 25 HistoryContentsProvider(ACProviderListener* listener, Profile* profile);
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_index_unittest.cc | 229 TestingProfile profile; local 230 profile.CreateHistoryService(true, false); 231 profile.BlockUntilHistoryProcessesPendingRequests(); 232 profile.CreateBookmarkModel(true); 233 profile.BlockUntilBookmarkModelLoaded(); 235 BookmarkModel* model = profile.GetBookmarkModel(); 238 profile.GetHistoryService(Profile::EXPLICIT_ACCESS);
|