HomeSort by relevance Sort by last modified time
    Searched refs:Profile (Results 1 - 25 of 28) sorted by null

1 2

  /external/webkit/WebCore/ForwardingHeaders/profiler/
Profile.h 3 #include <JavaScriptCore/Profile.h>
  /external/webkit/WebCore/bindings/js/
ScriptProfile.h 31 #include <profiler/Profile.h>
35 typedef JSC::Profile ScriptProfile;
JSConsoleCustom.cpp 41 typedef Vector<RefPtr<JSC::Profile> > ProfilesArray;
  /external/webkit/WebCore/inspector/
JavaScriptProfile.h 35 class Profile;
40 JSC::JSValue toJS(JSC::ExecState*, JSC::Profile*);
JavaScriptProfile.cpp 32 #include <profiler/Profile.h>
47 typedef HashMap<Profile*, JSObject*> ProfileMap;
64 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject));
65 return JSValueMakeString(ctx, OpaqueJSString::create(profile->title()).get());
74 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(thisObject)); local
75 return toRef(exec, toJS(exec, profile->head()))
136 Profile* profile = static_cast<Profile*>(JSObjectGetPrivate(object)); local
    [all...]
  /external/webkit/JavaScriptCore/profiler/
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);
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...]
ProfileGenerator.h 29 #include "Profile.h"
37 class Profile;
48 PassRefPtr<Profile> profile() const { return m_profile; } function in class:JSC::ProfileGenerator
68 RefPtr<Profile> m_profile;
Profiler.h 32 #include "Profile.h"
58 PassRefPtr<Profile> stopProfiling(ExecState*, const UString& title);
Profiler.cpp 38 #include "Profile.h"
65 // Check if we currently have a Profile for this global ExecState and title.
66 // If so return early and don't create a new Profile.
80 PassRefPtr<Profile> Profiler::stopProfiling(ExecState* exec, const UString& title)
87 RefPtr<Profile> returnProfile = profileGenerator->profile();
ProfileGenerator.cpp 35 #include "Profile.h"
52 m_profile = Profile::create(title, uid);
145 if (currentNode->callIdentifier().m_name != "profile")
  /packages/apps/Settings/src/com/android/settings/bluetooth/
ConnectSpecificProfilesActivity.java 30 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
55 * or offline mode). In online mode, user interactions with the profile
56 * checkboxes will also toggle the profile's connectivity. In offline mode,
58 * profile.
97 // Add a preference for each profile
127 for (Profile profile : mCachedDevice.getConnectableProfiles()) {
128 Preference pref = createProfilePreference(profile);
134 * Creates a checkbox preference for the particular profile. The key will be
135 * the profile's name
169 Profile profile = getProfileOf(preference); local
    [all...]
LocalBluetoothProfileManager.java 37 * functionality related to a profile.
57 private static Map<Profile, LocalBluetoothProfileManager> sProfileMap =
58 new HashMap<Profile, LocalBluetoothProfileManager>();
68 sProfileMap.put(Profile.A2DP, profileManager);
71 sProfileMap.put(Profile.HEADSET, profileManager);
74 sProfileMap.put(Profile.OPP, profileManager);
80 Profile profile) {
85 LocalBluetoothProfileManager profileManager = sProfileMap.get(profile);
87 Log.e(TAG, "profileManager can't be found for " + profile.toString())
    [all...]
CachedBluetoothDevice.java 36 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
68 private List<Profile> mProfiles = new ArrayList<Profile>();
83 * Last time a bt profile auto-connect was attempted.
104 final Profile profile; // HEADSET, A2DP, etc field in class:CachedBluetoothDevice.BluetoothJob
109 CachedBluetoothDevice cachedDevice, Profile profile) {
112 this.profile = profile;
    [all...]
DockService.java 20 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
94 * If disconnected unexpectedly, reconnect up to 6 times. Each profile counts
114 private Profile[] mProfiles;
184 handleUnexpectedDisconnect(disconnectedDevice, Profile.HEADSET, startId);
194 handleUnexpectedDisconnect(disconnectedDevice, Profile.A2DP, startId);
495 mProfiles = new Profile[numOfProfiles];
503 mProfiles[0] = Profile.HEADSET;
504 mProfiles[1] = Profile.A2DP;
511 Profile.HEADSET).isPreferred(device);
513 Profile.A2DP).isPreferred(device)
    [all...]
BluetoothEventRedirector.java 20 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
109 Profile.HEADSET, newState);
120 Profile.A2DP, newState);
CachedBluetoothDeviceManager.java 26 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
232 public synchronized void onProfileStateChanged(BluetoothDevice device, Profile profile,
237 cachedDevice.onProfileStateChanged(profile, newProfileState);
DockEventReceiver.java 19 import com.android.settings.bluetooth.LocalBluetoothProfileManager.Profile;
  /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...]
profile_view.js 35 * Creates a Profile View builder object.
46 * Builds a profile view for the specified call tree.
81 * Factory method for a profile view.
84 * @return {devtools.profiler.ProfileView} Profile view.
92 * Factory method for a profile view node.
97 * profile they can be either callees or callers.)
100 * @param {devtools.profiler.ProfileView.Node} head Profile view head.
101 * @return {devtools.profiler.ProfileView.Node} Profile view node.
111 * Creates a Profile View object. It allows to perform sorting
112 * and filtering actions on the profile
    [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/ppp/pppd/plugins/radius/etc/
dictionary.ascend 22 ATTRIBUTE Ascend-Shared-Profile-Enable 128 integer
74 ATTRIBUTE Ascend-FR-Profile-Name 180 string
114 ATTRIBUTE Ascend-FR-Direct-Profile 220 string
292 VALUE Ascend-Shared-Profile-Enable Shared-Profile-No 0
293 VALUE Ascend-Shared-Profile-Enable Shared-Profile-Yes 1
  /external/webkit/WebKit/chromium/src/js/
ProfilerProcessor.js 33 * by V8 and produce an internal profile representation which is used
34 * for building profile views in "Profiles" tab.
39 * Creates a Profile View builder object compatible with WebKit Profiler UI.
61 * Constructs a Profile View node object for displaying in WebKit Profiler UI.
66 * profile they can be either callees or callers.)
69 * @param {devtools.profiler.ProfileView.Node} head Profile view head.
122 * Ancestor of a profile object that leaves out only JS-related functions.
127 devtools.profiler.Profile.call(this);
129 devtools.profiler.JsProfile.prototype.__proto__ = devtools.profiler.Profile.prototype;
153 * Profiler processor. Consumes profiler log and builds profile views
    [all...]
  /external/webkit/JavaScriptCore/
Android.mk 69 profiler/Profile.cpp \
  /dalvik/vm/
Dvm.mk 59 # "Debug" profile:
82 # "Performance" profile:
119 Profile.c \

Completed in 1201 milliseconds

1 2