/external/dynamic_depth/internal/dynamic_depth/ |
D | profiles.cc | 1 #include "dynamic_depth/profiles.h" 11 void Profiles::GetNamespaces( in GetNamespaces() 22 std::unique_ptr<Profiles> Profiles::FromProfileArray( in FromProfileArray() 28 std::unique_ptr<Profiles> profiles(new Profiles()); in FromProfileArray() local 29 profiles->profile_list_ = std::move(*profile_list); in FromProfileArray() 30 return profiles; in FromProfileArray() 33 std::unique_ptr<Profiles> Profiles::FromDeserializer( in FromDeserializer() 35 std::unique_ptr<Profiles> profiles(new Profiles()); in FromDeserializer() local 39 DynamicDepthConst::Namespace(DynamicDepthConst::Profiles()), in FromDeserializer() 40 DynamicDepthConst::Profiles(), i); in FromDeserializer() [all …]
|
D | device.cc | 59 auto profiles = Profiles::FromDeserializer(deserializer); in ParseFields() local 71 params->profiles = std::move(profiles); in ParseFields() 146 const Profiles* Device::GetProfiles() const { return params_->profiles.get(); } in GetProfiles() 226 if (params_->profiles && !params_->profiles->Serialize(&device_serializer)) { in Serialize() 274 if (params_->profiles) { in GetNamespaces() 275 params_->profiles->GetNamespaces(ns_name_href_map); in GetNamespaces()
|
D | depth_jpeg.cc | 32 // Check profiles in ValidateAndroidDynamicDepthBuffer() 33 const Profiles* profiles = device->GetProfiles(); in ValidateAndroidDynamicDepthBuffer() local 34 if (profiles == nullptr) { in ValidateAndroidDynamicDepthBuffer() 39 const std::vector<const Profile*> profile_list = profiles->GetProfiles(); in ValidateAndroidDynamicDepthBuffer()
|
/external/dynamic_depth/includes/dynamic_depth/ |
D | profiles.h | 15 // Implements the Device:Profiles field from the Dynamic Depth specification, 17 class Profiles : public Element { 28 // Creates this object from the given profiles. If the list is empty, returns 30 static std::unique_ptr<Profiles> FromProfileArray( 33 // Returns the deserialized profiles in a Profiles object, a unique_ptr owning 34 // nothing if parsing failed for all the profiles. 35 static std::unique_ptr<Profiles> FromDeserializer( 44 Profiles(const Profiles&) = delete; 45 void operator=(const Profiles&) = delete; 48 Profiles() = default;
|
D | device.h | 20 #include "dynamic_depth/profiles.h" 34 std::unique_ptr<Profiles> profiles; member 43 profiles(nullptr), in DeviceParams() 55 profiles.get() == other.profiles.get() && 97 const Profiles* GetProfiles() const;
|
/external/python/google-api-python-client/docs/dyn/ |
D | analytics_v3.management.webproperties.html | 114 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this… 115 "href": "A String", # Link to the list of views (profiles) for this web property. 116 "type": "analytics#profiles", # Type of the parent link. Its value is "analytics#profiles". 154 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this… 155 "href": "A String", # Link to the list of views (profiles) for this web property. 156 "type": "analytics#profiles", # Type of the parent link. Its value is "analytics#profiles". 188 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this… 189 "href": "A String", # Link to the list of views (profiles) for this web property. 190 "type": "analytics#profiles", # Type of the parent link. Its value is "analytics#profiles". 235 …"childLink": { # Child link for this web property. Points to the list of views (profiles) for this… [all …]
|
D | analytics_v2_4.management.profiles.html | 75 …nagement.html">management</a> . <a href="analytics_v2_4.management.profiles.html">profiles</a></h1> 79 <p class="firstline">Lists views (profiles) to which the user has access.</p> 83 <pre>Lists views (profiles) to which the user has access. 86 …accountId: string, Account ID for the views (profiles) to retrieve. Can either be a specific accou… 87 …webPropertyId: string, Web property ID for the views (profiles) to retrieve. Can either be a speci… 88 max_results: integer, The maximum number of views (profiles) to include in this response.
|
D | analytics_v3.management.accountSummaries.html | 79 …ts account summaries (lightweight tree comprised of accounts/properties/profiles) to which the use… 83 …<pre>Lists account summaries (lightweight tree comprised of accounts/properties/profiles) to which… 92 …{ # An AccountSummary collection lists a summary of accounts, properties and views (profiles) to w… 96 …Analytics AccountSummary. An AccountSummary is a lightweight tree comprised of properties/profiles. 104 "profiles": [ # List of profiles under this web property.
|
/external/tensorflow/tensorflow/python/profiler/ |
D | pprof_profiler_test.py | 42 profiles = pprof_profiler.get_profiles(graph, run_metadata) 43 self.assertEquals(0, len(profiles)) 58 profiles = pprof_profiler.get_profiles(graph, run_metadata) 59 self.assertEquals(0, len(profiles)) 125 profiles = pprof_profiler.get_profiles(graph, run_metadata) 126 self.assertEquals(1, len(profiles)) 127 self.assertTrue('deviceA' in profiles) 128 self.assertEquals(expected_proto, str(profiles['deviceA'])) 152 profiles = pprof_profiler.get_profiles(sess.graph, run_metadata) 153 self.assertEquals(1, len(profiles)) [all …]
|
/external/freetype/docs/ |
D | raster.txt | 18 2. Profiles and Spans 20 b. Decomposing Outlines into Profiles 22 d. Computing Profiles Extents 23 e. Computing Profiles Coordinates 164 2. Profiles and Spans 235 b. Decomposing Outlines into Profiles 247 `decomposition' which converts the glyph into *profiles*. 261 | | profiles | | 276 | | \ \ profiles | \ | 286 A more general contour can be made of more than two profiles: [all …]
|
/external/perf_data_converter/src/ |
D | perf_data_converter.h | 63 // Whether to produce multiple, per-process profiles from the single input 65 // still get a list of profiles back; it just has only one entry). 78 perftools::profiles::Profile data; 88 // Converts raw Linux perf data to a vector of process profiles. 91 // profiles. options governs other conversion options such as whether per-PID 92 // profiles should be returned or all processes should be merged into the same 95 // Returns a vector of process profiles, empty if any error occurs. 100 // Converts a PerfDataProto to a vector of process profiles.
|
D | perf_to_profile.cc | 25 const auto profiles = perftools::RawPerfDataToProfiles( in main() local 28 // With kNoOptions, all of the PID profiles should be merged into a in main() 30 if (profiles.size() != 1) { in main() 33 const auto& profile = profiles[0]->data; in main()
|
/external/boringssl/src/ssl/ |
D | d1_srtp.cc | 164 UniquePtr<STACK_OF(SRTP_PROTECTION_PROFILE)> profiles( in ssl_ctx_make_profiles() local 166 if (profiles == nullptr) { in ssl_ctx_make_profiles() 183 if (!sk_SRTP_PROTECTION_PROFILE_push(profiles.get(), profile)) { in ssl_ctx_make_profiles() 192 *out = std::move(profiles); in ssl_ctx_make_profiles() 196 int SSL_CTX_set_srtp_profiles(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_srtp_profiles() argument 197 return ssl_ctx_make_profiles(profiles, &ctx->srtp_profiles); in SSL_CTX_set_srtp_profiles() 200 int SSL_set_srtp_profiles(SSL *ssl, const char *profiles) { in SSL_set_srtp_profiles() argument 202 ssl_ctx_make_profiles(profiles, &ssl->config->srtp_profiles); in SSL_set_srtp_profiles() 224 int SSL_CTX_set_tlsext_use_srtp(SSL_CTX *ctx, const char *profiles) { in SSL_CTX_set_tlsext_use_srtp() argument 226 return !SSL_CTX_set_srtp_profiles(ctx, profiles); in SSL_CTX_set_tlsext_use_srtp() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/ |
D | prepare-code-coverage-artifact.py | 7 - Collate raw profiles into one indexed profile. 21 print(':: Merging raw profiles...', end='') 24 manifest_path = os.path.join(profile_data_dir, 'profiles.manifest') 74 help='Path to the directory containing the raw profiles') 80 help='Only merge raw profiles together, skip report ' 82 parser.add_argument('--preserve-profiles', 83 help='Do not delete raw profiles', action='store_true')
|
/external/llvm/utils/ |
D | prepare-code-coverage-artifact.py | 5 - Collate raw profiles into one indexed profile. 6 - Delete the raw profiles. 17 print ':: Merging raw profiles...', 20 manifest_path = os.path.join(profile_data_dir, 'profiles.manifest') 48 help='Path to the directory containing the raw profiles')
|
/external/autotest/client/site_tests/network_BasicProfileProperties/ |
D | network_BasicProfileProperties.py | 14 """Test that shill's DBus properties for profiles work.""" 47 profiles = shill.get_profiles() 48 logging.info('Got profiles %r', profiles) 50 profile = profiles[-1]
|
/external/v4l2_codec2/vda/ |
D | v4l2_device.cc | 101 std::vector<VideoCodecProfile> profiles; in V4L2PixFmtToVideoCodecProfiles() local 106 // TODO(posciak): need to query the device for supported H.264 profiles, in V4L2PixFmtToVideoCodecProfiles() 128 return profiles; in V4L2PixFmtToVideoCodecProfiles() 132 profiles.push_back(static_cast<VideoCodecProfile>(profile)); in V4L2PixFmtToVideoCodecProfiles() 134 return profiles; in V4L2PixFmtToVideoCodecProfiles() 272 const auto& profiles = in GetSupportedDecodeProfiles() local 274 supported_profiles.insert(supported_profiles.end(), profiles.begin(), in GetSupportedDecodeProfiles() 275 profiles.end()); in GetSupportedDecodeProfiles() 350 VideoDecodeAccelerator::SupportedProfiles profiles; in EnumerateSupportedDecodeProfiles() local 369 profiles.push_back(profile); in EnumerateSupportedDecodeProfiles() [all …]
|
/external/toolchain-utils/cwp/ |
D | demo_pipeline.sh | 8 RECORD_FILE=/tmp/profiles.rio 9 COLUMN_FILE=/tmp/profiles.cio 32 rm /tmp/profiles.* 51 fileutil cp -f /tmp/profiles.cio-* ${CNS_LOC} 53 echo " dremel> define table t /cns/ag-d/home/${USER}/profiledb/profiles.cio-*"
|
/external/clang/docs/ |
D | SourceBasedCodeCoverage.rst | 82 is specified, the runtime creates a pool of N raw profiles which are used for 97 Raw profiles have to be **indexed** before they can be used to generate 99 named because it can combine and index profiles at the same time: 164 indexed profiles. This option should not be used if the indexed profile will 167 * Raw profiles can be discarded after they are indexed. Advanced use of the 173 indexed profiles. To combine profiling data from multiple runs of a program, 184 profile format. Raw profiles may be dependent on the specific compiler 185 revision used to generate them. It's inadvisable to store raw profiles for 200 profile output path and to register a writer function. To collect profiles
|
/external/autotest/client/cros/scripts/ |
D | profile | 23 print cmd, 'clean - Pop and remove profiles above the default profile.' 24 print cmd, 'list - List profiles and their properties.' 27 'profile called |name| or all profiles if no name is given.' 40 """ Pop and remove all profiles until 'default' is found. """ 57 Remove an entry from the specified profile, or all profiles if no profile 103 """ List shill profiles and their properties. """
|
/external/python/google-api-python-client/samples/analytics/ |
D | management_v3_reference.py | 27 first account, then all the profiles for the first web property and finally 94 retrieves and prints all the profiles for the first web property, 117 profiles = service.management().profiles().list( 121 print_profiles(profiles) 123 if profiles.get('items'): 124 firstProfileId = profiles.get('items')[0].get('id') 201 """Prints all the profile info in the Profiles Collection. 205 Profiles collection. 208 print('------ Profiles Collection -------') 245 print('No profiles found.\n')
|
/external/harfbuzz_ng/test/subset/ |
D | subset_test_suite.py | 46 self.profiles = set() 65 for profile in self.profiles: 66 profile = os.path.join(self._base_path(), "profiles", profile) 78 "PROFILES:": self.profiles,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
D | SampleProfReader.h | 10 // This file contains definitions needed for reading sample profiles. 19 // Sample profiles are written as ASCII text. The file is divided into 269 : Profiles(0), Ctx(C), Buffer(std::move(B)), Format(Format) {} 276 /// Read sample profiles from the associated file. 282 /// Print all the profiles on stream \p OS. 293 if (Profiles.count(Fname)) in getSamplesFor() 294 return &Profiles[Fname]; in getSamplesFor() 298 /// Return all the profiles. 299 StringMap<FunctionSamples> &getProfiles() { return Profiles; } in getProfiles() 326 /// to their corresponding profiles. [all …]
|
/external/llvm/include/llvm/ProfileData/ |
D | SampleProfReader.h | 10 // This file contains definitions needed for reading sample profiles. 19 // Sample profiles are written as ASCII text. The file is divided into 260 : Profiles(0), Ctx(C), Buffer(std::move(B)) {} in SampleProfileReader() 267 /// \brief Read sample profiles from the associated file. 273 /// \brief Print all the profiles on stream \p OS. 278 return &Profiles[F.getName()]; in getSamplesFor() 281 /// \brief Return all the profiles. 282 StringMap<FunctionSamples> &getProfiles() { return Profiles; } in getProfiles() 306 /// to their corresponding profiles. 307 StringMap<FunctionSamples> Profiles; [all …]
|
/external/e2fsprogs/debian/ |
D | control.legacy-dbg | 2 Build-Profiles: <pkg.e2fsprogs.legacy-dbg> 14 Build-Profiles: <pkg.e2fsprogs.legacy-dbg> 25 Build-Profiles: <pkg.e2fsprogs.legacy-dbg> 36 Build-Profiles: <pkg.e2fsprogs.legacy-dbg>
|