Home
last modified time | relevance | path

Searched refs:VariableDeclarationList (Results 1 – 25 of 56) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceDefs.h157 class VariableDeclarationList {
158 VariableDeclarationList(const VariableDeclarationList &) = delete;
159 VariableDeclarationList &operator=(const VariableDeclarationList &) = delete;
160 VariableDeclarationList(VariableDeclarationList &&) = delete;
161 VariableDeclarationList &operator=(VariableDeclarationList &&) = delete;
166 VariableDeclarationList() : Arena(new ArenaAllocator()) {} in VariableDeclarationList() function
168 ~VariableDeclarationList() { clearAndPurge(); } in ~VariableDeclarationList()
192 void merge(VariableDeclarationList *Other) { in merge()
DIceGlobalInits.h218 static DataInitializer *create(VariableDeclarationList *VDL, in create()
234 DataInitializer(VariableDeclarationList *VDL, in DataInitializer()
247 DataInitializer(VariableDeclarationList *VDL, const char *Str, in DataInitializer()
268 static ZeroInitializer *create(VariableDeclarationList *VDL, SizeT Size) { in create()
294 static RelocInitializer *create(VariableDeclarationList *VDL, in create()
302 static RelocInitializer *create(VariableDeclarationList *VDL, in create()
334 RelocInitializer(VariableDeclarationList *VDL,
363 static VariableDeclaration *create(VariableDeclarationList *VDL,
371 static VariableDeclaration *createExternal(VariableDeclarationList *VDL) { in createExternal()
DIceThreading.h179 EmitterWorkItem(uint32_t Seq, std::unique_ptr<VariableDeclarationList> D);
186 void setGlobalInits(std::unique_ptr<VariableDeclarationList> GloblInits);
187 std::unique_ptr<VariableDeclarationList> getGlobalInits();
194 std::unique_ptr<VariableDeclarationList> GlobalInits;
DIceThreading.cpp26 std::unique_ptr<VariableDeclarationList> D) in EmitterWorkItem()
37 std::unique_ptr<VariableDeclarationList> GloblInits) { in setGlobalInits()
42 std::unique_ptr<VariableDeclarationList> EmitterWorkItem::getGlobalInits() { in getGlobalInits()
DIceCfg.h147 std::unique_ptr<VariableDeclarationList> getGlobalInits() { in getGlobalInits()
152 GlobalInits.reset(new VariableDeclarationList); in addGlobal()
156 VariableDeclarationList *getGlobalPool() { in getGlobalPool()
158 GlobalInits.reset(new VariableDeclarationList); in getGlobalPool()
324 std::unique_ptr<VariableDeclarationList> GlobalInits;
DIceGlobalContext.h414 LockedPtr<VariableDeclarationList> getGlobals() { in getGlobals()
415 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock); in getGlobals()
435 VariableDeclarationList Globals;
521 LockedPtr<VariableDeclarationList> getInitializerAllocator() { in getInitializerAllocator()
522 return LockedPtr<VariableDeclarationList>(&Globals, &InitAllocLock); in getInitializerAllocator()
540 void accumulateGlobals(std::unique_ptr<VariableDeclarationList> Globls) { in accumulateGlobals()
541 LockedPtr<VariableDeclarationList> _(&Globals, &InitAllocLock); in accumulateGlobals()
DIceConverter.h36 GlobalDeclarationsPool(new VariableDeclarationList()) {} in Converter()
56 std::unique_ptr<VariableDeclarationList> GlobalDeclarationsPool;
DIceInstrumentation.h47 virtual void instrumentGlobals(VariableDeclarationList &) {} in instrumentGlobals() argument
53 LockedPtr<VariableDeclarationList> getGlobals();
DIceTranslator.cpp64 std::unique_ptr<VariableDeclarationList> VariableDeclarations) { in lowerGlobals()
DIceTranslator.h57 lowerGlobals(std::unique_ptr<VariableDeclarationList> VariableDeclarations);
DIceASanInstrumentation.h43 void instrumentGlobals(VariableDeclarationList &Globals) override;
DIceELFObjectWriter.h65 void writeDataSection(const VariableDeclarationList &Vars,
DIceInstrumentation.cpp129 LockedPtr<VariableDeclarationList> Instrumentation::getGlobals() { in getGlobals()
DIceASanInstrumentation.cpp85 void ASanInstrumentation::instrumentGlobals(VariableDeclarationList &Globals) { in instrumentGlobals()
89 VariableDeclarationList NewGlobals; in instrumentGlobals()
DIceELFObjectWriter.cpp284 void partitionGlobalsBySection(const VariableDeclarationList &Vars, in partitionGlobalsBySection()
312 void ELFObjectWriter::writeDataSection(const VariableDeclarationList &Vars, in writeDataSection()
/third_party/typescript/src/services/refactors/
DconvertArrowFunctionOrFunctionExpression.ts38 readonly variableDeclarationList: VariableDeclarationList;
163 function isSingleVariableDeclaration(parent: Node): parent is VariableDeclarationList {
/third_party/typescript/src/services/codefixes/
DfixUnusedIdentifier.ts66 …deleteEntireVariableStatement(t, sourceFile, token.parent as VariableDeclarationList)), Diagnostic…
135 … deleteEntireVariableStatement(changes, sourceFile, token.parent as VariableDeclarationList);
180 …tement(changes: textChanges.ChangeTracker, sourceFile: SourceFile, node: VariableDeclarationList) {
/third_party/typescript/src/services/formatting/
DsmartIndenter.ts471 case SyntaxKind.VariableDeclarationList:
472 return getList((node as VariableDeclarationList).declarations);
504 if (node.parent && node.parent.kind === SyntaxKind.VariableDeclarationList) {
/third_party/typescript/src/compiler/transformers/
Des2017.ts419 …isVariableDeclarationListWithCollidingName(node: ForInitializer): node is VariableDeclarationList {
426 …function visitVariableDeclarationListWithCollidingNames(node: VariableDeclarationList, hasReceiver…
440 function hoistVariableDeclarationList(node: VariableDeclarationList) {
Des2015.ts438 case SyntaxKind.VariableDeclarationList:
439 return visitVariableDeclarationList(node as VariableDeclarationList);
2193 … function visitVariableDeclarationList(node: VariableDeclarationList): VariableDeclarationList {
2764 initializer: VariableDeclarationList;
2886 …onStatement, initializerFunction: IterationStatementPartFunction<VariableDeclarationList> | undefi…
2897 …orStatement, initializerFunction: IterationStatementPartFunction<VariableDeclarationList> | undefi…
2941 let loopInitializer: VariableDeclarationList | undefined;
2947 if (initializer && initializer.kind === SyntaxKind.VariableDeclarationList) {
2948 loopInitializer = initializer as VariableDeclarationList;
3093 …lizer, currentState: ConvertedLoopState): IterationStatementPartFunction<VariableDeclarationList> {
/third_party/typescript/src/services/
Dbreakpoints.ts504 if (forLikeStatement.initializer!.kind === SyntaxKind.VariableDeclarationList) {
506 … const variableDeclarationList = forLikeStatement.initializer as VariableDeclarationList;
/third_party/typescript/src/compiler/factory/
DnodeTests.ts566 export function isVariableDeclarationList(node: Node): node is VariableDeclarationList {
567 return node.kind === SyntaxKind.VariableDeclarationList;
/third_party/typescript/src/compiler/
Dtypes.ts307 VariableDeclarationList, enumerator
1060 | VariableDeclarationList
1612 readonly parent: VariableDeclarationList | CatchClause;
1622 export interface VariableDeclarationList extends Node {
1623 readonly kind: SyntaxKind.VariableDeclarationList;
3110 readonly declarationList: VariableDeclarationList;
3148 | VariableDeclarationList
5182 export interface RequireVariableDeclarationList extends VariableDeclarationList {
8085 …ent(modifiers: readonly Modifier[] | undefined, declarationList: VariableDeclarationList | readonl…
8086 …nt, modifiers: readonly Modifier[] | undefined, declarationList: VariableDeclarationList): Variabl…
[all …]
/third_party/typescript/lib/
Dtypescript.d.ts368 VariableDeclarationList = 260, enumerator
745 readonly parent: VariableDeclarationList | CatchClause;
751 export interface VariableDeclarationList extends Node { interface
752 readonly kind: SyntaxKind.VariableDeclarationList;
1498 readonly declarationList: VariableDeclarationList;
1521 export type ForInitializer = VariableDeclarationList | Expression;
3798 …ent(modifiers: readonly Modifier[] | undefined, declarationList: VariableDeclarationList | readonl…
3799 …nt, modifiers: readonly Modifier[] | undefined, declarationList: VariableDeclarationList): Variabl…
3834 …tionList(declarations: readonly VariableDeclaration[], flags?: NodeFlags): VariableDeclarationList;
3835 …ariableDeclarationList(node: VariableDeclarationList, declarations: readonly VariableDeclaration[]…
[all …]
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts368 VariableDeclarationList = 260, enumerator
745 readonly parent: VariableDeclarationList | CatchClause;
751 export interface VariableDeclarationList extends Node { interface
752 readonly kind: SyntaxKind.VariableDeclarationList;
1498 readonly declarationList: VariableDeclarationList;
1521 export type ForInitializer = VariableDeclarationList | Expression;
3798 …ent(modifiers: readonly Modifier[] | undefined, declarationList: VariableDeclarationList | readonl…
3799 …nt, modifiers: readonly Modifier[] | undefined, declarationList: VariableDeclarationList): Variabl…
3834 …tionList(declarations: readonly VariableDeclaration[], flags?: NodeFlags): VariableDeclarationList;
3835 …ariableDeclarationList(node: VariableDeclarationList, declarations: readonly VariableDeclaration[]…
[all …]

123