/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceASanInstrumentation.cpp | 91 auto *RzArray = VariableDeclaration::create(&NewGlobals); in instrumentGlobals() 93 auto *RzSizes = VariableDeclaration::create(&NewGlobals); in instrumentGlobals() 104 for (VariableDeclaration *Global : Globals) { in instrumentGlobals() 106 VariableDeclaration *RzLeft = VariableDeclaration::create(&NewGlobals); in instrumentGlobals() 107 VariableDeclaration *NewGlobal = Global; in instrumentGlobals() 108 VariableDeclaration *RzRight = VariableDeclaration::create(&NewGlobals); in instrumentGlobals() 116 RzLeft->addInitializer(VariableDeclaration::ZeroInitializer::create( in instrumentGlobals() 118 RzRight->addInitializer(VariableDeclaration::ZeroInitializer::create( in instrumentGlobals() 121 RzLeft->addInitializer(VariableDeclaration::DataInitializer::create( in instrumentGlobals() 123 RzRight->addInitializer(VariableDeclaration::DataInitializer::create( in instrumentGlobals() [all …]
|
D | IceGlobalInits.cpp | 105 void VariableDeclaration::dumpType(Ostream &Stream) const { in dumpType() 125 void VariableDeclaration::dump(Ostream &Stream) const { in dump() 156 void VariableDeclaration::Initializer::dumpType(Ostream &Stream) const { in dumpType() 162 void VariableDeclaration::DataInitializer::dump(Ostream &Stream) const { in dump() 179 void VariableDeclaration::ZeroInitializer::dump(Ostream &Stream) const { in dump() 186 void VariableDeclaration::RelocInitializer::dumpType(Ostream &Stream) const { in dumpType() 192 void VariableDeclaration::RelocInitializer::dump(Ostream &Stream) const { in dump()
|
D | IceGlobalInits.h | 177 class VariableDeclaration : public GlobalDeclaration { 178 VariableDeclaration(const VariableDeclaration &) = delete; 179 VariableDeclaration &operator=(const VariableDeclaration &) = delete; 363 static VariableDeclaration *create(VariableDeclarationList *VDL, 367 return new (VDL->allocate_variable_declaration<VariableDeclaration>()) 368 VariableDeclaration(Linkage, SuppressMangling); 371 static VariableDeclaration *createExternal(VariableDeclarationList *VDL) { in createExternal() 446 VariableDeclaration(llvm::GlobalValue::LinkageTypes Linkage, in VariableDeclaration() function 454 const VariableDeclaration::Initializer &Init) {
|
D | IceELFObjectWriter.cpp | 274 classifyGlobalSection(const VariableDeclaration *Var) { in classifyGlobalSection() 286 for (VariableDeclaration *Var : Vars) { in partitionGlobalsBySection() 348 for (VariableDeclaration *Var : Vars) { in writeDataOfType() 393 for (VariableDeclaration *Var : Vars) { in writeDataOfType() 418 case VariableDeclaration::Initializer::DataInitializerKind: { in writeDataOfType() 420 llvm::cast<VariableDeclaration::DataInitializer>(Init) in writeDataOfType() 425 case VariableDeclaration::Initializer::ZeroInitializerKind: in writeDataOfType() 428 case VariableDeclaration::Initializer::RelocInitializerKind: { in writeDataOfType() 430 llvm::cast<VariableDeclaration::RelocInitializer>(Init); in writeDataOfType()
|
D | IceDefs.h | 78 class VariableDeclaration; variable 164 using VariableDeclarationArray = std::vector<VariableDeclaration *>; 189 void willNotBeEmitted(VariableDeclaration *) {} in willNotBeEmitted() argument 250 void push_back(VariableDeclaration *Global) { Globals.push_back(Global); } in push_back()
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | typedef.ts | 14 VariableDeclaration = 'variableDeclaration', enumerator 44 [OptionKeys.VariableDeclaration]: { type: 'boolean' }, 59 [OptionKeys.VariableDeclaration]: false, 85 case AST_NODE_TYPES.VariableDeclaration: 210 !options[OptionKeys.VariableDeclaration] || 224 case AST_NODE_TYPES.VariableDeclaration:
|
D | indent.ts | 186 VariableDeclaration(node: TSESTree.VariableDeclaration) { 192 return rules.VariableDeclaration(node); 264 return rules.VariableDeclaration({ 265 type: AST_NODE_TYPES.VariableDeclaration,
|
D | no-unused-vars.ts | 285 | TSESTree.VariableDeclaration; 302 AST_NODE_TYPES.VariableDeclaration, 321 case AST_NODE_TYPES.VariableDeclaration:
|
/third_party/vk-gl-cts/framework/opengl/ |
D | gluVarType.hpp | 256 struct VariableDeclaration struct 258 …VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE… 260 bool operator== (const VariableDeclaration& other) const; 261 bool operator!= (const VariableDeclaration& other) const; 280 std::vector<glu::VariableDeclaration> variables; argument 332 std::ostream& operator<< (std::ostream& str, const VariableDeclaration& decl);
|
D | gluVarType.cpp | 260 VariableDeclaration::VariableDeclaration (const VarType& varType_, const std::string& name_, Storag… in VariableDeclaration() function in glu::VariableDeclaration 270 bool VariableDeclaration::operator== (const VariableDeclaration& other) const in operator ==() 280 bool VariableDeclaration::operator!= (const VariableDeclaration& other) const in operator !=() 328 std::ostream& operator<< (std::ostream& str, const VariableDeclaration& decl) in operator <<()
|
/third_party/typescript/tests/baselines/reference/ |
D | classMemberWithMissingIdentifier2.errors.txt | 6 …r/classMemberWithMissingIdentifier2.ts(2,27): error TS2304: Cannot find name 'VariableDeclaration'. 12 public {[name:string]:VariableDeclaration}; 24 !!! error TS2304: Cannot find name 'VariableDeclaration'.
|
D | classMemberWithMissingIdentifier2.js | 3 public {[name:string]:VariableDeclaration}; 14 VariableDeclaration;
|
D | classMemberWithMissingIdentifier2.types | 5 public {[name:string]:VariableDeclaration}; 10 >VariableDeclaration : any
|
/third_party/typescript_eslint/packages/scope-manager/tests/eslint-scope/ |
D | get-declared-variables.test.ts | 43 verify(ast, AST_NODE_TYPES.VariableDeclaration, [ 61 verify(ast, AST_NODE_TYPES.VariableDeclaration, [ 226 verify(ast, AST_NODE_TYPES.VariableDeclaration, [['a']]);
|
D | child-visitor-keys.test.ts | 11 const decl = ast.body[0] as TSESTree.VariableDeclaration; 35 const decl = ast.body[0] as TSESTree.VariableDeclaration;
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinitionUtil.hpp | 48 …VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.d… in VariablePathComponent() 59 …const glu::VariableDeclaration* getDeclaration (void) const { DE_ASSERT(isDeclaration()); return… in getDeclaration() 75 const glu::VariableDeclaration* declaration; 97 bool matchesFilter (const glu::VariableDeclaration& variable) const;
|
D | es31fSeparateShaderTests.cpp | 82 using glu::VariableDeclaration; 200 void printInputColor (ostringstream& oss, const VariableDeclaration& input) in printInputColor() 288 vector<VariableDeclaration> vtxOutputs; 289 vector<VariableDeclaration> frgInputs; 358 VariableDeclaration(varType, vtxName, STORAGE_OUT, getGluInterpolation(vtxCompatInterp), loc)); in genVaryingInterface() 360 VariableDeclaration(varType, frgName, STORAGE_IN, getGluInterpolation(frgInterp), loc)); in genVaryingInterface() 369 vector<VariableDeclaration> varyingCompatVtxOutputs (const VaryingInterface& varyings) in varyingCompatVtxOutputs() 371 vector<VariableDeclaration> outputs = varyings.vtxOutputs; in varyingCompatVtxOutputs() 402 oss << VariableDeclaration(varType, varName, STORAGE_UNIFORM) << ";\n"; in printFloatDeclaration() 404 oss << VariableDeclaration(varType, varName, STORAGE_CONST) in printFloatDeclaration() [all …]
|
/third_party/typescript_eslint/packages/scope-manager/src/definition/ |
D | VariableDefinition.ts | 8 TSESTree.VariableDeclaration, 14 decl: TSESTree.VariableDeclaration,
|
/third_party/typescript_eslint/packages/eslint-plugin/typings/ |
D | eslint-rules.d.ts | 132 VariableDeclaration(node: TSESTree.VariableDeclaration): void; 201 VariableDeclaration: RuleFunction<TSESTree.VariableDeclaration>; 563 VariableDeclaration(node: TSESTree.VariableDeclaration): void; 673 'VariableDeclaration:exit'(node: TSESTree.VariableDeclaration): void;
|
/third_party/typescript/src/services/ |
D | breakpoints.ts | 75 case SyntaxKind.VariableDeclaration: 78 …return spanInVariableDeclaration(<VariableDeclaration | PropertyDeclaration | PropertySignature>no… 340 case SyntaxKind.VariableDeclaration: 343 … const { initializer, type } = <VariableDeclaration | ParameterDeclaration>node.parent; 369 …function textSpanFromVariableDeclaration(variableDeclaration: VariableDeclaration | PropertyDeclar… 380 …function spanInVariableDeclaration(variableDeclaration: VariableDeclaration | PropertyDeclaration … 534 return textSpanFromVariableDeclaration(<VariableDeclaration>bindingPattern.parent);
|
D | callHierarchy.ts | 14 | ClassExpression & { name: undefined, parent: VariableDeclaration & { name: Identifier } } 15 … | FunctionExpression & { name: undefined, parent: VariableDeclaration & { name: Identifier } } 16 | ArrowFunction & { name: undefined, parent: VariableDeclaration & { name: Identifier } } 389 case SyntaxKind.VariableDeclaration: 392 collect((node as VariableDeclaration | ParameterDeclaration).name); 393 collect((node as VariableDeclaration | ParameterDeclaration).initializer);
|
/third_party/typescript/src/services/refactors/ |
D | moveToNewFile.ts | 216 case SyntaxKind.VariableDeclaration: 264 case SyntaxKind.VariableDeclaration: 298 | VariableDeclaration & { initializer: RequireOrImportCall }; 363 case SyntaxKind.VariableDeclaration: 399 …nusedImportsInVariableDeclaration(sourceFile: SourceFile, varDecl: VariableDeclaration, changes: t… 570 case SyntaxKind.VariableDeclaration: 571 return isVariableDeclarationInImport(decl as VariableDeclaration); 578 function isVariableDeclarationInImport(decl: VariableDeclaration) { 596 case SyntaxKind.VariableDeclaration: { 679 …interface TopLevelVariableDeclaration extends VariableDeclaration { parent: VariableDeclarationLis… [all …]
|
/third_party/typescript/src/services/codefixes/ |
D | fixJSDocTypes.ts | 57 | TypeAliasDeclaration | TypeAssertion | VariableDeclaration; 77 case SyntaxKind.VariableDeclaration:
|
/third_party/typescript_eslint/packages/typescript-estree/tests/lib/__snapshots__/ |
D | parse.test.ts.snap | 173 "type": "VariableDeclaration", 463 "type": "VariableDeclaration", 715 "type": "VariableDeclaration", 895 "type": "VariableDeclaration", 1332 "type": "VariableDeclaration", 1622 "type": "VariableDeclaration", 1874 "type": "VariableDeclaration", 2054 "type": "VariableDeclaration", 2234 "type": "VariableDeclaration", 2414 "type": "VariableDeclaration", [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | classMemberWithMissingIdentifier2.ts | 2 public {[name:string]:VariableDeclaration};
|