/third_party/typescript/tests/baselines/reference/ |
D | operatorsAndIntersectionTypes.types | 31 let guid = createGuid(); 32 >guid : Guid 36 map1[guid] = 123; // Can with tagged string 37 >map1[guid] = 123 : 123 38 >map1[guid] : number 40 >guid : Guid 60 const s1 = "{" + guid + "}"; 62 >"{" + guid + "}" : string 63 >"{" + guid : string 65 >guid : Guid [all …]
|
D | operatorsAndIntersectionTypes.js | 14 let guid = createGuid(); variable 15 map1[guid] = 123; // Can with tagged string 21 const s1 = "{" + guid + "}"; 22 const s2 = guid.toLowerCase(); 23 const s3 = guid + guid; 24 const s4 = guid + serialNo; 28 const b1 = guid === ""; 29 const b2 = guid === guid; 42 var guid = createGuid(); 43 map1[guid] = 123; // Can with tagged string [all …]
|
D | operatorsAndIntersectionTypes.symbols | 28 let guid = createGuid(); 29 >guid : Symbol(guid, Decl(operatorsAndIntersectionTypes.ts, 12, 3)) 32 map1[guid] = 123; // Can with tagged string 34 >guid : Symbol(guid, Decl(operatorsAndIntersectionTypes.ts, 12, 3)) 48 const s1 = "{" + guid + "}"; 50 >guid : Symbol(guid, Decl(operatorsAndIntersectionTypes.ts, 12, 3)) 52 const s2 = guid.toLowerCase(); 54 >guid.toLowerCase : Symbol(String.toLowerCase, Decl(lib.es5.d.ts, --, --)) 55 >guid : Symbol(guid, Decl(operatorsAndIntersectionTypes.ts, 12, 3)) 58 const s3 = guid + guid; [all …]
|
/third_party/typescript/tests/cases/conformance/types/intersection/ |
D | operatorsAndIntersectionTypes.ts | 13 let guid = createGuid(); variable 14 map1[guid] = 123; // Can with tagged string 20 const s1 = "{" + guid + "}"; 21 const s2 = guid.toLowerCase(); 22 const s3 = guid + guid; 23 const s4 = guid + serialNo; 27 const b1 = guid === ""; 28 const b2 = guid === guid;
|
/third_party/ffmpeg/libavcodec/ |
D | mf_utils.c | 28 HRESULT ff_MFGetAttributeSize(IMFAttributes *pattr, REFGUID guid, in ff_MFGetAttributeSize() argument 32 HRESULT hr = IMFAttributes_GetUINT64(pattr, guid, &t); in ff_MFGetAttributeSize() 40 HRESULT ff_MFSetAttributeSize(IMFAttributes *pattr, REFGUID guid, in ff_MFSetAttributeSize() argument 44 return IMFAttributes_SetUINT64(pattr, guid, t); in ff_MFSetAttributeSize() 145 const GUID *guid; member 169 if (IsEqualGUID(&subtype, mf_pix_fmts[i].guid)) in ff_media_type_to_pix_fmt() 182 return mf_pix_fmts[i].guid; in ff_pix_fmt_to_guid() 190 int ff_fourcc_from_guid(const GUID *guid, uint32_t *out_fourcc) in ff_fourcc_from_guid() argument 192 if (guid->Data2 == 0 && guid->Data3 == 0x0010 && in ff_fourcc_from_guid() 193 guid->Data4[0] == 0x80 && in ff_fourcc_from_guid() [all …]
|
D | dxva2.c | 54 const GUID *guid; member 161 static int d3d11va_validate_output(void *service, GUID guid, const void *surface_format) in d3d11va_validate_output() argument 166 &guid, in d3d11va_validate_output() 174 static int dxva2_validate_output(void *decoder_service, GUID guid, const void *surface_format) in dxva2_validate_output() argument 180 …_GetDecoderRenderTargets((IDirectXVideoDecoderService *)decoder_service, &guid, &target_count, &ta… in dxva2_validate_output() 224 const GUID *guid = &guid_list[i]; in dxva_list_guids_debug() local 228 (unsigned) guid->Data1, guid->Data2, guid->Data3, in dxva_list_guids_debug() 229 guid->Data4[0], guid->Data4[1], in dxva_list_guids_debug() 230 guid->Data4[2], guid->Data4[3], in dxva_list_guids_debug() 231 guid->Data4[4], guid->Data4[5], in dxva_list_guids_debug() [all …]
|
D | mf_utils.h | 66 HRESULT ff_MFGetAttributeSize(IMFAttributes *pattr, REFGUID guid, 68 HRESULT ff_MFSetAttributeSize(IMFAttributes *pattr, REFGUID guid, 169 int ff_fourcc_from_guid(const GUID *guid, uint32_t *out_fourcc); 170 char *ff_guid_str_buf(char *buf, size_t buf_size, const GUID *guid); 171 #define ff_guid_str(guid) ff_guid_str_buf((char[80]){0}, 80, guid) argument
|
/third_party/gptfdisk/ |
D | bsd.cc | 270 GPTPart guid; // dump data in here, then return it in AsGPT() local 274 guid.BlankPartition(); in AsGPT() 298 guid.SetFirstLBA(sectorOne); in AsGPT() 299 guid.SetLastLBA(sectorEnd); in AsGPT() 301 guid.RandomizeUniqueGUID(); in AsGPT() 303 guid.SetAttributes(UINT64_C(0)); in AsGPT() 312 guid.SetType(0xa502); break; in AsGPT() 314 guid.SetType(0xa503); break; in AsGPT() 316 guid.SetType(0x0700); break; in AsGPT() 318 guid.SetType(0xa903); break; in AsGPT() [all …]
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | MSVSNew.py | 50 guid = ( 63 return guid 78 def __init__(self, path, name=None, entries=None, guid=None, items=None): argument 97 self.guid = guid 106 if self.guid is None: 108 self.guid = MakeGuid(self.path, seed="msvs_folder") 109 return self.guid 123 guid=None, argument 145 self.guid = guid 167 if self.guid is None: [all …]
|
D | MSVSProject.py | 54 def __init__(self, project_path, version, name, guid=None, platforms=None): argument 67 self.guid = guid 195 "ProjectGUID": self.guid,
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | MSVSNew.py | 50 guid = ( 63 return guid 78 def __init__(self, path, name=None, entries=None, guid=None, items=None): argument 97 self.guid = guid 106 if self.guid is None: 108 self.guid = MakeGuid(self.path, seed="msvs_folder") 109 return self.guid 123 guid=None, argument 145 self.guid = guid 167 if self.guid is None: [all …]
|
D | MSVSProject.py | 54 def __init__(self, project_path, version, name, guid=None, platforms=None): argument 67 self.guid = guid 195 "ProjectGUID": self.guid,
|
/third_party/gn/src/gn/ |
D | visual_studio_utils_unittest.cc | 12 std::string guid = MakeGuid(__FILE__, "foo"); in TEST() local 13 ASSERT_EQ(pattern.size(), guid.size()); in TEST() 16 ASSERT_TRUE(base::IsAsciiAlpha(guid[i]) || base::IsAsciiDigit(guid[i])); in TEST() 18 ASSERT_EQ(pattern[i], guid[i]); in TEST() 22 ASSERT_EQ(guid, MakeGuid(__FILE__, "foo")); in TEST() 25 ASSERT_NE(guid, MakeGuid(std::string(__FILE__) + ".txt", "foo")); in TEST() 26 ASSERT_NE(guid, MakeGuid(__FILE__, "bar")); in TEST()
|
D | visual_studio_writer.h | 65 const std::string& guid); 73 std::string guid; member 81 const std::string& guid,
|
D | visual_studio_writer.cc | 256 : name(_name), path(_path), guid(_guid), parent_folder(nullptr) {} in SolutionEntry() 487 globals->SubElement("ProjectGuid")->Text(solution_project.guid); in WriteProjectFileContents() 778 << folder->guid << "\"" << std::endl; in WriteSolutionFileContents() 785 << project->guid << "\"" << std::endl; in WriteSolutionFileContents() 803 out << "\t\t" << project->guid << '.' << config_mode in WriteSolutionFileContents() 805 out << "\t\t" << project->guid << '.' << config_mode in WriteSolutionFileContents() 817 out << "\t\t" << folder->guid << " = " << folder->parent_folder->guid in WriteSolutionFileContents() 822 out << "\t\t" << project->guid << " = " << project->parent_folder->guid in WriteSolutionFileContents()
|
/third_party/mbedtls/scripts/ |
D | generate_visualc_files.pl | 147 my $guid = md5_hex( "mbedTLS:$path" ); 148 $guid =~ s/(.{8})(.{4})(.{4})(.{4})(.{12})/\U{$1-$2-$3-$4-$5}/; 150 return $guid; 156 my $guid = gen_app_guid( $path ); 172 $content =~ s/<GUID>/$guid/g; 228 my $guid = gen_app_guid( $path ); 233 $app_entry =~ s/{GUID}/$guid/g; 238 $conf_entry =~ s/{GUID}/$guid/g;
|
/third_party/mesa3d/src/gallium/frontends/xvmc/tests/ |
D | test_subpicture.c | 35 static void PrintGUID(const char *guid) in PrintGUID() argument 40 printf("%c,", guid[i] == 0 ? '0' : guid[i]); in PrintGUID() 42 printf("%x,", (unsigned char)guid[i]); in PrintGUID() 43 printf("%x\n", (unsigned int)guid[15]); in PrintGUID() 112 PrintGUID(subpics[i].guid); in main()
|
/third_party/ffmpeg/libavformat/ |
D | asfdec_o.c | 56 ff_asf_guid guid; member 145 static const GUIDParseTable *find_guid(ff_asf_guid guid); 156 static void swap_guid(ff_asf_guid guid) in swap_guid() argument 158 FFSWAP(unsigned char, guid[0], guid[3]); in swap_guid() 159 FFSWAP(unsigned char, guid[1], guid[2]); in swap_guid() 160 FFSWAP(unsigned char, guid[4], guid[5]); in swap_guid() 161 FFSWAP(unsigned char, guid[6], guid[7]); in swap_guid() 363 ff_asf_guid guid; in process_metadata() local 375 ff_get_guid(s->pb, &guid); in process_metadata() 728 ff_asf_guid guid; in asf_read_ext_stream_properties() local [all …]
|
D | qcp.c | 77 static int is_qcelp_13k_guid(const uint8_t *guid) { in is_qcelp_13k_guid() argument 78 return (guid[0] == 0x41 || guid[0] == 0x42) in is_qcelp_13k_guid() 79 && !memcmp(guid+1, guid_qcelp_13k_part, sizeof(guid_qcelp_13k_part)); in is_qcelp_13k_guid()
|
D | wavdec.c | 690 uint8_t guid[16]; in find_guid() local 694 avio_read(pb, guid, 16); in find_guid() 698 if (!memcmp(guid, guid1, 16)) in find_guid() 871 uint8_t guid[16]; in w64_read_header() local 874 avio_read(pb, guid, 16); in w64_read_header() 875 if (memcmp(guid, ff_w64_guid_riff, 16)) in w64_read_header() 882 avio_read(pb, guid, 16); in w64_read_header() 883 if (memcmp(guid, ff_w64_guid_wave, 16)) { in w64_read_header() 895 if (avio_read(pb, guid, 16) != 16) in w64_read_header() 901 if (!memcmp(guid, ff_w64_guid_fmt, 16)) { in w64_read_header() [all …]
|
/third_party/mesa3d/src/intel/perf/ |
D | intel_perf.c | 185 registered_query->oa_metrics_set_id, query->guid); in register_oa_config() 264 int fd, const char *guid, in i915_query_perf_config_data() argument 271 memcpy(query->uuid, guid, sizeof(query->uuid)); in i915_query_perf_config_data() 287 const char *guid, in intel_perf_load_metric_id() argument 293 perf_cfg->sysfs_dev_dir, guid); in intel_perf_load_metric_id() 302 const char *guid) in i915_add_config() argument 306 memcpy(i915_config.uuid, guid, sizeof(i915_config.uuid)); in i915_add_config() 329 if (intel_perf_load_metric_id(perf, query->guid, &config_id)) { in init_oa_configs() 330 DBG("metric set: %s (already loaded)\n", query->guid); in init_oa_configs() 335 int ret = i915_add_config(perf, fd, &query->config, query->guid); in init_oa_configs() [all …]
|
D | intel_perf.h | 239 const char *guid; member 436 const char *guid, 442 int fd, const char *guid); 451 const char *guid);
|
/third_party/lzma/CPP/Common/ |
D | IntToString.h | 27 char *RawLeGuidToString(const Byte *guid, char *s) throw(); 28 char *RawLeGuidToString_Braced(const Byte *guid, char *s) throw();
|
/third_party/skia/third_party/externals/libwebp/imageio/ |
D | wicdec.c | 324 const GUID** guid; in ReadPictureWithWIC() local 325 for (guid = kAlphaContainers; *guid != NULL; ++guid) { in ReadPictureWithWIC() 327 MAKE_REFGUID(**guid))) { in ReadPictureWithWIC()
|
/third_party/lzma/CPP/7zip/Archive/ |
D | ArchiveExports.cpp | 45 static inline HRESULT SetPropGUID(const GUID &guid, PROPVARIANT *value) in SetPropGUID() argument 47 return SetPropStrFromBin((const char *)&guid, sizeof(guid), value); in SetPropGUID()
|