HomeSort by relevance Sort by last modified time
    Searched refs:Profile (Results 76 - 100 of 279) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 372 /// passing non-trivial types with inalloca. Not part of the profile.
476 void Profile(llvm::FoldingSetNodeID &ID) {
485 getReturnType().Profile(ID);
487 I.type.Profile(ID);
489 static void Profile(llvm::FoldingSetNodeID &ID,
504 resultType.Profile(ID);
507 i->Profile(ID);
  /packages/apps/Messaging/src/com/android/messaging/util/
ContactUtil.java 32 import android.provider.ContactsContract.Profile;
151 Profile._ID, // 0
152 Profile.DISPLAY_NAME_PRIMARY, // 1
153 Profile.PHOTO_THUMBNAIL_URI, // 2
154 Profile.LOOKUP_KEY // 3
156 // Profile CONTENT_URI doesn't include this information. Also, we don't need it
217 return new CursorQueryData(context, Profile.CONTENT_URI, SelfQuery.PROJECTION, null, null,
277 * Get a list of destinations (phone, email) matching the partial destination in work profile.
301 * Similar to {@link #filterPhones(Context, String)}, but search in work profile instead.
365 * Similar to {@link #filterEmails(Context, String)}, but search in work profile instead
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNamesFragment.java 105 // Attempt to prefill the name field from the profile if we don't have it,
111 new String[] { ContactsContract.Profile.DISPLAY_NAME };
112 return new CursorLoader(loaderContext, ContactsContract.Profile.CONTENT_URI,
  /system/connectivity/shill/bin/
set_cellular_ppp 40 IPROFILE=${FLIMFLAM}.Profile
43 PROFILE_PROPERTY=Profile
121 local profile
124 for profile in $(get_profiles); do
125 profile_name="$(get_property ${IPROFILE} ${profile} Name)"
127 echo "${profile}"
148 local profile="$2"
154 if [ -z "${profile}" ]; then
159 "string:${PROFILE_PROPERTY}" "variant:string:${profile}"
163 if [ "${new_profile}" != "${profile}" ]; the
    [all...]
  /system/connectivity/shill/
control_interface.h 35 class Profile;
100 virtual ProfileAdaptorInterface* CreateProfileAdaptor(Profile* profile) = 0;
default_profile.cc 89 : Profile(
173 if (Profile::ConfigureService(service)) {
177 // Ethernet services should have an affinity towards the default profile,
216 return Profile::Save();
manager.cc 57 #include "shill/profile.h"
134 user_profile_list_path_(FilePath(Profile::kUserProfileListPathname)),
299 // Persist profile, service information to disk.
300 for (const auto& profile : profiles_) {
304 profile->Save();
330 DCHECK(profiles_.empty()); // The default profile must go first on stack.
333 // Ensure that we have storage for the default profile, and that
334 // the persistent copy of the default profile is not corrupt.
342 // The default profile may fail to initialize if it's corrupted.
343 // If so, recreate the default profile
389 ProfileRefPtr profile; local
439 ProfileRefPtr profile; local
645 ProfileRefPtr profile; local
1072 ProfileRefPtr profile = LookupProfileByRpcIdentifier(profile_rpcid); local
2311 ProfileRefPtr profile = ActiveProfile(); local
2398 ProfileRefPtr profile = LookupProfileByRpcIdentifier(profile_rpcid); local
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 40 void Profile(llvm::FoldingSetNodeID &ID) const {
MemRegion.cpp 248 void MemSpaceRegion::Profile(llvm::FoldingSetNodeID& ID) const {
252 void StackSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const {
257 void StaticGlobalSpaceRegion::Profile(llvm::FoldingSetNodeID &ID) const {
287 void AllocaRegion::Profile(llvm::FoldingSetNodeID& ID) const {
291 void CompoundLiteralRegion::Profile(llvm::FoldingSetNodeID& ID) const {
311 void CXXThisRegion::Profile(llvm::FoldingSetNodeID &ID) const {
328 void DeclRegion::Profile(llvm::FoldingSetNodeID& ID) const {
332 void VarRegion::Profile(llvm::FoldingSetNodeID &ID) const {
343 void SymbolicRegion::Profile(llvm::FoldingSetNodeID& ID) const {
353 Idx.Profile(ID)
    [all...]
PathDiagnostic.cpp 257 // Profile the node to see if we already have something matching it
258 llvm::FoldingSetNodeID profile; local
259 D->Profile(profile);
262 if (PathDiagnostic *orig = Diags.FindNodeOrInsertPos(profile, InsertPos)) {
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
Profile.java 30 public class Profile {
85 strings.add("Profile:");
  /external/mesa3d/src/egl/main/
eglcontext.c 153 ctx->Profile = val;
222 switch (ctx->Profile) {
236 * not support the requested profile, then an EGL_BAD_MATCH error
371 ctx->Profile = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
376 ctx->Profile = EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_KHR;
eglcontext.h 58 EGLint Profile;
  /system/connectivity/shill/binder/
binder_control.h 44 ProfileAdaptorInterface* CreateProfileAdaptor(Profile* profile) override;
  /external/llvm/include/llvm/ADT/
ImmutableSet.h 305 ImutInfo::Profile(ID,V);
830 // Trait classes for Profile information.
833 /// Generic profile template. The default behavior is to invoke the
834 /// profile method of an object. Specializations for primitive integers
841 static void Profile(FoldingSetNodeID &ID, value_type_ref X) {
842 FoldingSetTrait<T>::Profile(X,ID);
846 /// Profile traits for integers.
852 static void Profile(FoldingSetNodeID &ID, value_type_ref X) {
873 /// Profile traits for booleans.
879 static void Profile(FoldingSetNodeID &ID, value_type_ref X)
    [all...]
  /external/llvm/include/llvm/IR/
LegacyPassManagers.h 260 void Profile(FoldingSetNodeID &ID) const {
261 Profile(ID, AU);
263 static void Profile(FoldingSetNodeID &ID, const AnalysisUsage &AU) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
43 statement and filename have the same semantics as profile.run
45 prof = Profile()
61 print "Documentation for the profile/cProfile modules can be found "
66 class Profile(_lsprof.Profiler):
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
130 # a profiler to profile a statement, given as a string.
145 # This method is more useful to profile a single function call
    [all...]
profile.py 6 # Based on prior profile module by Sjoerd Mullender...
33 __all__ = ["run", "runctx", "help", "Profile"]
45 # Note that an instance of Profile() is *not* needed to call them.
59 prof = Profile()
73 statement and filename have the same semantics as profile.run
75 prof = Profile()
88 print "Documentation for the profile module can be found "
111 class Profile:
280 if not isinstance(rframe, Profile.fake_frame):
385 code = self.fake_code('profile', 0, name
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
43 statement and filename have the same semantics as profile.run
45 prof = Profile()
61 print "Documentation for the profile/cProfile modules can be found "
66 class Profile(_lsprof.Profiler):
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
130 # a profiler to profile a statement, given as a string.
145 # This method is more useful to profile a single function call
    [all...]
profile.py 6 # Based on prior profile module by Sjoerd Mullender...
33 __all__ = ["run", "runctx", "help", "Profile"]
45 # Note that an instance of Profile() is *not* needed to call them.
59 prof = Profile()
73 statement and filename have the same semantics as profile.run
75 prof = Profile()
88 print "Documentation for the profile module can be found "
111 class Profile:
280 if not isinstance(rframe, Profile.fake_frame):
385 code = self.fake_code('profile', 0, name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
43 statement and filename have the same semantics as profile.run
45 prof = Profile()
61 print "Documentation for the profile/cProfile modules can be found "
66 class Profile(_lsprof.Profiler):
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
130 # a profiler to profile a statement, given as a string.
145 # This method is more useful to profile a single function call
    [all...]
profile.py 6 # Based on prior profile module by Sjoerd Mullender...
33 __all__ = ["run", "runctx", "help", "Profile"]
45 # Note that an instance of Profile() is *not* needed to call them.
59 prof = Profile()
73 statement and filename have the same semantics as profile.run
75 prof = Profile()
88 print "Documentation for the profile module can be found "
111 class Profile:
280 if not isinstance(rframe, Profile.fake_frame):
385 code = self.fake_code('profile', 0, name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 4 Compatible with the 'profile' module.
7 __all__ = ["run", "runctx", "help", "Profile"]
25 prof = Profile()
43 statement and filename have the same semantics as profile.run
45 prof = Profile()
61 print "Documentation for the profile/cProfile modules can be found "
66 class Profile(_lsprof.Profiler):
67 """Profile(custom_timer=None, time_unit=None, subcalls=True, builtins=True)
130 # a profiler to profile a statement, given as a string.
145 # This method is more useful to profile a single function call
    [all...]
profile.py 6 # Based on prior profile module by Sjoerd Mullender...
33 __all__ = ["run", "runctx", "help", "Profile"]
45 # Note that an instance of Profile() is *not* needed to call them.
59 prof = Profile()
73 statement and filename have the same semantics as profile.run
75 prof = Profile()
88 print "Documentation for the profile module can be found "
111 class Profile:
280 if not isinstance(rframe, Profile.fake_frame):
385 code = self.fake_code('profile', 0, name
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactDelta.java 28 import android.provider.ContactsContract.Profile;
71 * It can be set to query the profile's raw contact(s).
482 // Use the profile data URI if the contact is the profile.
483 if (mContactsQueryUri.equals(Profile.CONTENT_RAW_CONTACTS_URI)) {
484 builder = child.buildDiff(Uri.withAppendedPath(Profile.CONTENT_URI,
555 // Use the profile data URI if the contact is the profile.
556 if (mContactsQueryUri.equals(Profile.CONTENT_RAW_CONTACTS_URI)) {
557 bw = child.buildDiffWrapper(Uri.withAppendedPath(Profile.CONTENT_URI
    [all...]

Completed in 1409 milliseconds

1 2 34 5 6 7 8 91011>>