HomeSort by relevance Sort by last modified time
    Searched defs:profile (Results 1 - 25 of 239) sorted by null

1 2 3 4 5 6 7 8 910

  /external/javasqlite/src/main/java/SQLite/
Profile.java 4 * Callback interface for SQLite's profile function.
7 public interface Profile {
10 * Callback to profile (ie log) one SQL statement
17 public void profile(String stmt, long est); method in interface:Profile
  /external/skia/src/codec/
SkEncodedInfo.cpp 12 skcms_ICCProfile profile; local
13 if (skcms_Parse(data->data(), data->size(), &profile)) {
14 return std::unique_ptr<ICCProfile>(new ICCProfile(profile, std::move(data)));
21 const skcms_ICCProfile& profile) {
22 return std::unique_ptr<ICCProfile>(new ICCProfile(profile));
25 SkEncodedInfo::ICCProfile::ICCProfile(const skcms_ICCProfile& profile, sk_sp<SkData> data)
26 : fProfile(profile)
  /external/skqp/src/codec/
SkEncodedInfo.cpp 12 skcms_ICCProfile profile; local
13 if (skcms_Parse(data->data(), data->size(), &profile)) {
14 return std::unique_ptr<ICCProfile>(new ICCProfile(profile, std::move(data)));
21 const skcms_ICCProfile& profile) {
22 return std::unique_ptr<ICCProfile>(new ICCProfile(profile));
25 SkEncodedInfo::ICCProfile::ICCProfile(const skcms_ICCProfile& profile, sk_sp<SkData> data)
26 : fProfile(profile)
  /external/perf_data_converter/src/
perf_to_profile.cc 31 LOG(FATAL) << "Expected profile vector to have one element.";
33 const auto& profile = profiles[0]->data; local
36 profile.SerializeToOstream(&outFile);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/bytecode/
InvocationProfileTest.java 14 InvocationProfile profile = new InvocationProfile("android/view/View/invalidate()V", false, getClass().getClassLoader()); local
15 assertThat(profile.clazz).isEqualTo(View.class);
16 assertThat(profile.methodName).isEqualTo("invalidate");
17 assertThat(profile.isStatic).isEqualTo(false);
18 assertThat(profile.paramTypes).isEmpty();
23 InvocationProfile profile = new InvocationProfile("android/view/View/invalidate(I[ZLjava/lang/String;)Lwhatever/Foo;", false, getClass().getClassLoader()); local
24 assertThat(profile.clazz).isEqualTo(View.class);
25 assertThat(profile.methodName).isEqualTo("invalidate");
26 assertThat(profile.isStatic).isEqualTo(false);
27 assertThat(profile.paramTypes).asList().containsExactly("int", "boolean[]", "java.lang.String")
    [all...]
  /external/compiler-rt/make/platform/
clang_linux.mk 52 Configs += builtins-i386 profile-i386
54 Arch.profile-i386 := i386
59 Configs += builtins-x86_64 profile-x86_64
61 Arch.profile-x86_64 := x86_64
74 CFLAGS.profile-i386 := $(CFLAGS) -m32
75 CFLAGS.profile-x86_64 := $(CFLAGS) -m64
79 FUNCTIONS.profile-i386 := GCDAProfiling InstrProfiling InstrProfilingBuffer \
84 FUNCTIONS.profile-x86_64 := $(FUNCTIONS.profile-i386)
  /external/ImageMagick/coders/
thumbnail.c 55 #include "MagickCore/profile.h"
98 entry=AcquireMagickInfo("THUMBNAIL","THUMBNAIL","EXIF Profile Thumbnail");
164 *profile;
187 profile=GetImageProfile(image,"exif");
188 if (profile == (const StringInfo *) NULL)
200 q=GetStringInfoDatum(profile)+offset;
201 for (i=offset; i < (ssize_t) GetStringInfoLength(profile) - 3; i++)
207 if ((q+length) > (GetStringInfoDatum(profile)+GetStringInfoLength(profile)))
159 *profile; local
  /external/aac/libMpegTPEnc/src/
tpenc_adif.h 115 int profile; member in struct:__anon14916
tpenc_adts.h 117 UCHAR profile; member in struct:__anon14917
  /external/boringssl/src/ssl/
d1_srtp.cc 176 const SRTP_PROTECTION_PROFILE *profile; local
177 if (!find_profile_by_name(ptr, &profile,
183 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) {
  /external/dynamic_depth/internal/dynamic_depth/
profiles.cc 14 LOG(ERROR) << "Namespace list is null or profile list is empty";
17 for (const auto& profile : profile_list_) {
18 profile->GetNamespaces(ns_name_href_map);
23 std::vector<std::unique_ptr<Profile>>* profile_list) {
25 LOG(ERROR) << "Profile list is empty";
45 std::unique_ptr<Profile> profile = Profile::FromDeserializer(*deserializer); local
46 if (profile != nullptr) {
47 profiles->profile_list_.emplace_back(std::move(profile));
    [all...]
  /external/libaom/libaom/third_party/libwebm/common/
hdr_util.h 38 : profile(kValueNotPresent),
44 int profile; member in struct:libwebm::Vp9CodecFeatures
  /external/libvpx/libvpx/third_party/libwebm/common/
hdr_util.h 38 : profile(kValueNotPresent),
44 int profile; member in struct:libwebm::Vp9CodecFeatures
  /external/libxaac/decoder/
ixheaacd_adts.h 28 WORD32 profile; member in struct:__anon30157
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
sample_harness.cc 60 xla::ExecutionProfile profile; local
65 /*execution_profile=*/&profile);
69 profile.compute_time_ns());
  /external/tensorflow/tensorflow/compiler/xla/service/
execution_tracker.h 44 const ExecutionProfile& profile, GlobalDataHandle result);
50 const ExecutionProfile& profile() const { return profile_; } function in class:xla::AsyncExecution
59 // Profile object of the execution to be returned to the user.
76 const ExecutionProfile& profile,
  /external/libpng/contrib/examples/
iccfrompng.c 34 static png_byte no_profile[] = "no profile";
43 /* Initialize for error or no profile: */
69 png_bytep profile; local
71 if (png_get_iCCP(png_ptr, info_ptr, &name, &compression_type, &profile,
76 memcpy(result, profile, *proflen);
79 png_error(png_ptr, "OOM allocating profile buffer");
99 png_bytep profile = extract(fp, &proflen); local
101 if (profile != NULL && profile != no_profile)
127 if (fwrite(profile, proflen, 1, of) == 1 &
    [all...]
  /external/tensorflow/tensorflow/python/profiler/
model_analyzer.py 145 # Profile the parameters of your model.
149 # Or profile the timing of your model operations.
195 id in the `options` to profile these `run_meta` together.
208 """Profile the statistics of the Python codes.
223 print_mdl.Profile('code'.encode('utf-8'), opts.SerializeToString()))
229 """Profile the statistics of the Operation types (e.g. MatMul, Conv2D).
240 print_mdl.Profile('op'.encode('utf-8'), opts.SerializeToString()))
246 """Profile the statistics of graph nodes, organized by name scope.
257 print_mdl.Profile('scope'.encode('utf-8'), opts.SerializeToString()))
263 """Profile the statistics of graph nodes, organized by dataflow graph
310 def profile(graph=None, function
    [all...]
pprof_profiler.py 17 See https://github.com/google/pprof/blob/master/proto/profile.proto for pprof
18 profile format.
30 pprof_profiler.profile(sess.graph, run_metadata, output_dir)
33 The code above would output a pprof profile to separate output_dir/.*.pb.gz
105 """Keeps track of `Function` protos for pprof profile."""
149 """Keeps track of `Location` protos for pprof profile.
206 """Keeps track of `Sample` protos for pprof profile.
254 """Returns list of `Sample` protos for pprof profile."""
274 def profile(self): member in class:PprofProfiler
278 Dictionary mapping from device name to proto in `profile_pb2.Profile`
405 def profile(graph, run_metadata, output_dir=None): function
    [all...]
  /external/adhd/cras/src/tests/
bt_profile_unittest.cc 33 void fake_profile_release(struct cras_bt_profile *profile);
34 void fake_profile_new_connection(struct cras_bt_profile *profile,
36 void fake_profile_request_disconnection(struct cras_bt_profile *profile,
38 void fake_profile_cancel(struct cras_bt_profile *profile);
66 struct cras_bt_profile *profile; local
77 profile = cras_bt_profile_get("/fake");
79 EXPECT_TRUE(profile == &fake_profile);
133 void fake_profile_release(struct cras_bt_profile *profile)
135 profile_release_arg_value = profile;
139 void fake_profile_new_connection(struct cras_bt_profile *profile,
    [all...]
  /external/libxml2/
check-xinclude-test-suite.py 198 profile = testsuite.prop('PROFILE') variable
199 if profile != None:
200 print profile
  /external/mesa3d/src/gallium/state_trackers/clover/core/
event.cpp 125 event(q.context(), deps, profile(q, action), [](event &ev){}),
207 hard_event::profile(command_queue &q, const action &action) const { function in class:hard_event
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
VpnFacade.java 62 final VpnProfile profile = VpnProfile.decode(key, keyStore.get(Credentials.VPN + key)); local
63 if (profile != null && !ArrayUtils.contains(excludeTypes, profile.type)) {
64 result.add(profile);
91 @Rpc(description = "Start legacy VPN with a profile.")
94 VpnProfile profile = genLegacyVpnProfile(vpnProfile); local
95 mConService.startLegacyVpn(profile);
117 VpnProfile profile = genLegacyVpnProfile(vpnProfile); local
118 mCertHelper.installCertificate(profile, certFile, password);
  /frameworks/av/services/mediaanalytics/
statsd_codec.cpp 102 // android.media.mediacodec.profile int32
103 int32_t profile = -1; local
104 if ( item->getInt32("android.media.mediacodec.profile", &profile)) {
105 metrics_proto.set_profile(profile);
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/mock/
MockDatabase.java 25 import com.example.android.wearable.wear.messaging.model.Profile;
44 void onUserRetrieved(Profile user);
63 public static Chat createChat(Context context, Collection<Profile> participants, Profile user) {
74 Map<String, Profile> participantMap = new HashMap<>();
75 for (Profile profile : participants) {
76 participantMap.put(profile.getId(), profile); local
232 public static List<Profile> getUserContacts(Context context)
    [all...]

Completed in 515 milliseconds

1 2 3 4 5 6 7 8 910