/third_party/typescript/tests/baselines/reference/ |
D | stringLiteralTypesAsTags01.types | 26 function hasKind(entity: Entity, kind: "A"): entity is A; 27 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; (e… 28 >entity : Entity 31 function hasKind(entity: Entity, kind: "B"): entity is B; 32 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; (e… 33 >entity : Entity 36 function hasKind(entity: Entity, kind: Kind): entity is Entity; 37 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; (e… 38 >entity : Entity 41 function hasKind(entity: Entity, kind: Kind): boolean { [all …]
|
D | stringLiteralTypesAsTags02.types | 26 function hasKind(entity: Entity, kind: "A"): entity is A; 27 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; } 28 >entity : Entity 31 function hasKind(entity: Entity, kind: "B"): entity is B; 32 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; } 33 >entity : Entity 36 function hasKind(entity: Entity, kind: Kind): entity is (A | B) { 37 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; } 38 >entity : Entity 41 return entity.kind === kind; [all …]
|
D | stringLiteralTypesAsTags03.types | 30 function hasKind(entity: Entity, kind: "A" | "A"): entity is A; 31 >hasKind : { (entity: Entity, kind: "A" | "A"): entity is A; (entity: Entity, kind: "B"): entity is… 32 >entity : Entity 35 function hasKind(entity: Entity, kind: "B" | "B"): entity is B; 36 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B" | "B"): entity is… 37 >entity : Entity 40 function hasKind(entity: Entity, kind: Kind): entity is Entity { 41 >hasKind : { (entity: Entity, kind: "A"): entity is A; (entity: Entity, kind: "B"): entity is B; } 42 >entity : Entity 45 return entity.kind === kind; [all …]
|
D | stringLiteralTypesAsTags01.js | 18 function hasKind(entity: Entity, kind: "A"): entity is A; 19 function hasKind(entity: Entity, kind: "B"): entity is B; 20 function hasKind(entity: Entity, kind: Kind): entity is Entity; 21 function hasKind(entity: Entity, kind: Kind): boolean { 22 return entity.kind === kind; 45 function hasKind(entity, kind) { 46 return entity.kind === kind; 79 declare function hasKind(entity: Entity, kind: "A"): entity is A; 80 declare function hasKind(entity: Entity, kind: "B"): entity is B; 81 declare function hasKind(entity: Entity, kind: Kind): entity is Entity;
|
D | stringLiteralTypesAsTags03.js | 22 function hasKind(entity: Entity, kind: "A" | "A"): entity is A; 23 function hasKind(entity: Entity, kind: "B" | "B"): entity is B; 24 function hasKind(entity: Entity, kind: Kind): entity is Entity { 25 return entity.kind === kind; 48 function hasKind(entity, kind) { 49 return entity.kind === kind; 82 declare function hasKind(entity: Entity, kind: "A" | "A"): entity is A; 83 declare function hasKind(entity: Entity, kind: "B" | "B"): entity is B;
|
D | stringLiteralTypesAsTags02.js | 18 function hasKind(entity: Entity, kind: "A"): entity is A; 19 function hasKind(entity: Entity, kind: "B"): entity is B; 20 function hasKind(entity: Entity, kind: Kind): entity is (A | B) { 21 return entity.kind === kind; 44 function hasKind(entity, kind) { 45 return entity.kind === kind; 78 declare function hasKind(entity: Entity, kind: "A"): entity is A; 79 declare function hasKind(entity: Entity, kind: "B"): entity is B;
|
D | stringLiteralTypesAsTags01.symbols | 35 function hasKind(entity: Entity, kind: "A"): entity is A; 37 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags01.ts, 16, 17)) 40 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags01.ts, 16, 17)) 43 function hasKind(entity: Entity, kind: "B"): entity is B; 45 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags01.ts, 17, 17)) 48 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags01.ts, 17, 17)) 51 function hasKind(entity: Entity, kind: Kind): entity is Entity; 53 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags01.ts, 18, 17)) 57 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags01.ts, 18, 17)) 60 function hasKind(entity: Entity, kind: Kind): boolean { [all …]
|
D | stringLiteralTypesAsTags02.symbols | 35 function hasKind(entity: Entity, kind: "A"): entity is A; 37 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags02.ts, 16, 17)) 40 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags02.ts, 16, 17)) 43 function hasKind(entity: Entity, kind: "B"): entity is B; 45 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags02.ts, 17, 17)) 48 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags02.ts, 17, 17)) 51 function hasKind(entity: Entity, kind: Kind): entity is (A | B) { 53 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags02.ts, 18, 17)) 57 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags02.ts, 18, 17)) 61 return entity.kind === kind; [all …]
|
D | stringLiteralTypesAsTags03.symbols | 39 function hasKind(entity: Entity, kind: "A" | "A"): entity is A; 41 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags03.ts, 20, 17)) 44 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags03.ts, 20, 17)) 47 function hasKind(entity: Entity, kind: "B" | "B"): entity is B; 49 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags03.ts, 21, 17)) 52 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags03.ts, 21, 17)) 55 function hasKind(entity: Entity, kind: Kind): entity is Entity { 57 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags03.ts, 22, 17)) 61 >entity : Symbol(entity, Decl(stringLiteralTypesAsTags03.ts, 22, 17)) 64 return entity.kind === kind; [all …]
|
D | qualifiedName_ImportDeclarations-entity-names-referencing-a-var.symbols | 1 === tests/cases/compiler/qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts === 3 >Alpha : Symbol(Alpha, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 0, … 6 >x : Symbol(x, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 1, 14)) 10 >Beta : Symbol(Beta, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 2, 1)) 13 >p : Symbol(p, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 4, 13)) 14 >Alpha : Symbol(Alpha, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 0, … 15 >x : Symbol(p, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 1, 14)) 20 >x : Symbol(x, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 9, 3)) 21 >Alpha.x : Symbol(Alpha.x, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts,… 22 >Alpha : Symbol(Alpha, Decl(qualifiedName_ImportDeclarations-entity-names-referencing-a-var.ts, 0, … [all …]
|
/third_party/libxml2/ |
D | backport-CVE-2022-40304-Fix-dict-corruption-caused-by-entity-.patch | 4 Subject: [PATCH] [CVE-2022-40304] Fix dict corruption caused by entity 7 When an entity reference cycle is detected, the entity content is 8 cleared by setting its first byte to zero. But the entity content might 13 Stop storing entity content, orig, ExternalID and SystemID in a dict. 27 @@ -128,36 +128,19 @@ xmlFreeEntity(xmlEntityPtr entity) 28 if ((entity->children) && (entity->owner == 1) && 29 (entity == (xmlEntityPtr) entity->children->parent)) 30 xmlFreeNodeList(entity->children); 32 - if ((entity->name != NULL) && (!xmlDictOwns(dict, entity->name))) 33 - xmlFree((char *) entity->name); [all …]
|
/third_party/node/deps/npm/lib/commands/ |
D | team.js | 42 async exec ([cmd, entity = '', user = '']) { argument 48 entity = entity.replace(/^@/, '') 50 case 'create': return this.create(entity, opts) 51 case 'destroy': return this.destroy(entity, opts) 52 case 'add': return this.add(entity, user, opts) 53 case 'rm': return this.rm(entity, user, opts) 55 const match = entity.match(/[^:]+:.+/) 57 return this.listUsers(entity, opts) 59 return this.listTeams(entity, opts) 68 async create (entity, opts) { argument [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
D | macro_checker.py | 65 def haveLinkTarget(self, entity): argument 70 if not self.findEntity(entity): 72 if entity in self.apiIncludes: 74 return entity in self.headings 83 def addLinkToEntity(self, entity, context): argument 85 if entity not in self.links: 86 self.links[entity] = [] 87 self.links[entity].append(context) 89 def seenRefPage(self, entity): argument 91 return entity in self.refpages [all …]
|
D | macro_checker_file.py | 164 def shouldEntityBeText(entity, subscript): argument 169 entity_only = entity 174 entity_only = entity[:-len(subscript)] 176 if ('*' in entity) or entity.startswith('_') or entity_only.endswith('_'): 179 if INTERNAL_PLACEHOLDER.search(entity): 281 for entity, includeContext in self.fs_api_includes.items(): 282 if not self.checker.entity_db.entityHasValidity(entity): 285 if entity in self.missing_validity_suppressions: 288 if entity not in self.validity_includes: 290 … ['Saw /api/ include for {}, but no matching /validity/ include'.format(entity), [all …]
|
D | console_printer.py | 176 def makeRowOfBroken(entity, uses): argument 177 fn = checker.findEntity(entity).filename 178 anchor = '[[{}]]'.format(entity) 182 printTabulated((makeRowOfBroken(entity, uses) 183 for entity, uses in sorted(broken.items())), 198 def makeRowOfMissing(entity): argument 199 fn = checker.findEntity(entity).filename 200 anchor = '[[{}]]'.format(entity) 202 printTabulated((makeRowOfMissing(entity) for entity in missing),
|
D | entity_db.py | 231 def findMacroAndEntity(self, macro, entity): argument 235 return self._byMacroAndEntity.get((macro, entity)) 237 def findEntity(self, entity): argument 242 result = self._byEntity.get(entity) 246 alias_set = self._aliasSetsByEntity.get(entity) 256 def findEntityCaseInsensitive(self, entity): argument 260 return self._byLowercaseEntity.get(entity.lower()) 297 d = {entity: _entityToDict(data) 298 for entity, data in self._byEntity.items()} 301 def entityHasValidity(self, entity): argument [all …]
|
/third_party/NuttX/drivers/usbdev/gadget/ |
D | f_dfu.c | 296 struct usb_dfu_entity *entity = usb_dfu_get_entity(0); in usb_dfu_running() local 298 if (entity == NULL) in usb_dfu_running() 303 return (entity->trans_complete || entity->trans_size) ? true: false; in usb_dfu_running() 308 struct usb_dfu_entity *entity = usb_dfu_get_entity(0); in usb_dfu_update_status() local 310 if (entity == NULL) in usb_dfu_update_status() 315 return entity->trans_complete; in usb_dfu_update_status() 320 struct usb_dfu_entity *entity = usb_dfu_get_entity(0); in usb_dfu_update_size_get() local 322 if (entity == NULL) in usb_dfu_update_size_get() 327 return &entity->trans_size; in usb_dfu_update_size_get() 332 struct usb_dfu_entity *entity = usb_dfu_get_entity(0); in dfu_ram_read() local [all …]
|
/third_party/node/deps/npm/node_modules/libnpmteam/lib/ |
D | index.js | 9 cmd.create = (entity, opts = {}) => { argument 11 const { scope, team } = splitEntity(entity) 23 cmd.destroy = async (entity, opts = {}) => { argument 24 const { scope, team } = splitEntity(entity) 36 cmd.add = (user, entity, opts = {}) => { 37 const { scope, team } = splitEntity(entity) 48 cmd.rm = async (user, entity, opts = {}) => { argument 49 const { scope, team } = splitEntity(entity) 75 cmd.lsUsers.stream = (entity, opts = {}) => { argument 76 const { scope, team } = splitEntity(entity) [all …]
|
/third_party/typescript/tests/cases/conformance/types/stringLiteral/ |
D | stringLiteralTypesAsTags01.ts | 19 function hasKind(entity: Entity, kind: "A"): entity is A; 20 function hasKind(entity: Entity, kind: "B"): entity is B; 21 function hasKind(entity: Entity, kind: Kind): entity is Entity; 22 function hasKind(entity: Entity, kind: Kind): boolean { 23 return entity.kind === kind;
|
D | stringLiteralTypesAsTags02.ts | 19 function hasKind(entity: Entity, kind: "A"): entity is A; 20 function hasKind(entity: Entity, kind: "B"): entity is B; 21 function hasKind(entity: Entity, kind: Kind): entity is (A | B) { 22 return entity.kind === kind;
|
D | stringLiteralTypesAsTags03.ts | 23 function hasKind(entity: Entity, kind: "A" | "A"): entity is A; 24 function hasKind(entity: Entity, kind: "B" | "B"): entity is B; 25 function hasKind(entity: Entity, kind: Kind): entity is Entity { 26 return entity.kind === kind;
|
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/ |
D | gstv4l2codecdevice.c | 131 struct media_v2_entity *entity = in find_v4l_entity() local 133 if (entity->function != MEDIA_ENT_F_IO_V4L) in find_v4l_entity() 135 if (entity->id == id) in find_v4l_entity() 136 return entity; in find_v4l_entity() 164 struct media_v2_entity *entity = in find_codec_entity() local 167 switch (entity->function) { in find_codec_entity() 170 g_queue_push_tail (&entities, entity); in find_codec_entity() 182 struct media_v2_entity *entity, struct media_v2_pad **sink_pad, in find_codec_entity_pads() argument 194 if (pad->entity_id != entity->id) in find_codec_entity_pads() 271 struct media_v2_entity *entity) in find_video_devnode() argument [all …]
|
/third_party/libabigail/tests/data/test-abidiff-exit/ |
D | qualifier-typedef-array-report-1.txt | 12 entity changed from 'typedef A' to compatible type 'void* const[7]' 14 entity changed from 'void*' to 'void* const' 19 entity changed from 'typedef A' to compatible type 'void* volatile[7]' 21 entity changed from 'void*' to 'void* volatile' 26 entity changed from 'typedef A' to compatible type 'void*[7]' 30 entity changed from 'typedef A' to compatible type 'void* const[7]' 32 entity changed from 'void*' to 'void* const' 39 entity changed from 'typedef A' to compatible type 'void* volatile[7]' 41 entity changed from 'void*' to 'void* volatile' 48 entity changed from 'typedef A' to compatible type 'void*[7]' [all …]
|
/third_party/icu/tools/currency/src/com/ibm/icu/dev/tool/currency/ |
D | CurrencyDataEntry.java | 16 private String entity; field in CurrencyDataEntry 25 …private CurrencyDataEntry(String entity, String currency, String alphabeticCode, Integer numericCo… in CurrencyDataEntry() argument 26 this.entity = entity; in CurrencyDataEntry() 36 public String entity() { in entity() method in CurrencyDataEntry 37 return entity; in entity() 79 public Builder setEntity(String entity) { in setEntity() argument 80 entity_ = entity; in setEntity()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
D | UnitsConverter.java | 403 private void addEntity(String entity, int power) { in addEntity() argument 404 if ("ft_to_m".equals(entity)) { in addEntity() 406 } else if ("ft2_to_m2".equals(entity)) { in addEntity() 408 } else if ("ft3_to_m3".equals(entity)) { in addEntity() 410 } else if ("in3_to_m3".equals(entity)) { in addEntity() 413 } else if ("gal_to_m3".equals(entity)) { in addEntity() 417 } else if ("gal_imp_to_m3".equals(entity)) { in addEntity() 419 } else if ("G".equals(entity)) { in addEntity() 421 } else if ("gravity".equals(entity)) { in addEntity() 423 } else if ("lb_to_kg".equals(entity)) { in addEntity() [all …]
|