HomeSort by relevance Sort by last modified time
    Searched defs:Profile (Results 1 - 7 of 7) sorted by null

  /external/v8/tools/
profile.js 35 * Creates a profile object for processing profiling-related events
40 devtools.profiler.Profile = function() {
49 devtools.profiler.Profile.VERSION = 2;
58 devtools.profiler.Profile.prototype.skipThisFunction = function(name) {
69 devtools.profiler.Profile.Operation = {
79 * See the devtools.profiler.Profile.Operation enum for the list of
88 devtools.profiler.Profile.prototype.handleUnknownCode = function(
100 devtools.profiler.Profile.prototype.addLibrary = function(
116 devtools.profiler.Profile.prototype.addStaticCode = function(
133 devtools.profiler.Profile.prototype.addCode = function
    [all...]
tickprocessor.js 29 function Profile(separateIc) {
30 devtools.profiler.Profile.call(this);
32 this.skipThisFunction = function(name) { return Profile.IC_RE.test(name); };
35 Profile.prototype = devtools.profiler.Profile.prototype;
38 Profile.IC_RE =
76 Profile.prototype.handleUnknownCode = function(operation, addr) {
77 var op = devtools.profiler.Profile.Operation;
90 this.profile_ = new Profile();
182 Profile.prototype.handleUnknownCode = function
    [all...]
  /external/webkit/JavaScriptCore/profiler/
Profile.cpp 27 #include "Profile.h"
34 PassRefPtr<Profile> Profile::create(const UString& title, unsigned uid)
36 return adoptRef(new Profile(title, uid));
39 Profile::Profile(const UString& title, unsigned uid)
48 Profile::~Profile()
52 void Profile::forEach(void (ProfileNode::*function)())
68 void Profile::focus(const ProfileNode* profileNode
    [all...]
Profile.h 36 class Profile : public RefCounted<Profile> {
38 static PassRefPtr<Profile> create(const UString& title, unsigned uid);
39 virtual ~Profile();
59 Profile(const UString& title, unsigned uid);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothProfileManager.java 39 * functionality related to a profile.
82 private static Map<Profile, LocalBluetoothProfileManager> sProfileMap =
83 new HashMap<Profile, LocalBluetoothProfileManager>();
93 sProfileMap.put(Profile.A2DP, profileManager);
96 sProfileMap.put(Profile.HEADSET, profileManager);
99 sProfileMap.put(Profile.OPP, profileManager);
115 // Getting just the headset profile is fine for now. Will need to deal with A2DP
117 LocalBluetoothProfileManager profileManager = sProfileMap.get(Profile.HEADSET);
125 Profile profile) {
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/src/
OMX_VideoDec_Utils.c     [all...]
  /external/bluetooth/bluez/lib/
sdp.c 211 #define Profile ServiceClass
288 return uuid2str(Profile, uuid, str, n);
2522 sdp_profile_desc_t *profile = p->data; local
    [all...]

Completed in 248 milliseconds