/third_party/gettext/gettext-tools/woe32dll/ |
D | gettextsrc-exports.c | 25 VARIABLE(allow_duplicates) 26 VARIABLE(format_language) 27 VARIABLE(format_language_pretty) 28 VARIABLE(formatstring_awk) 29 VARIABLE(formatstring_boost) 30 VARIABLE(formatstring_c) 31 VARIABLE(formatstring_csharp) 32 VARIABLE(formatstring_elisp) 33 VARIABLE(formatstring_gcc_internal) 34 VARIABLE(formatstring_gfc_internal) [all …]
|
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/ |
D | no-shadow.ts | 26 'Disallow variable declarations from shadowing variables declared in the outer scope', 82 * Check if variable is a `this` parameter. 84 function isThisParam(variable: TSESLint.Scope.Variable): boolean { 85 return variable.defs[0].type === 'Parameter' && variable.name === 'this'; 89 variable: TSESLint.Scope.Variable, 90 shadowed: TSESLint.Scope.Variable, 96 if (!('isValueVariable' in variable)) { 103 return variable.isValueVariable !== isShadowedValue; 107 variable: TSESLint.Scope.Variable, 108 shadowed: TSESLint.Scope.Variable, [all …]
|
D | no-use-before-define.ts | 43 * Checks whether or not a given variable is a function declaration. 45 function isFunction(variable: TSESLint.Scope.Variable): boolean { 46 return variable.defs[0].type === 'FunctionName'; 50 * Checks whether or not a given variable is a type declaration. 52 function isTypedef(variable: TSESLint.Scope.Variable): boolean { 53 return variable.defs[0].type === 'Type'; 57 * Checks whether or not a given variable is a enum declaration. 60 variable: TSESLint.Scope.Variable, 64 variable.defs[0].type == 'TSEnumName' && 65 variable.scope.variableScope !== reference.from.variableScope [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTargetLoweringMIPS32.h | 64 void setImplicitRet(Variable *Ret) { ImplicitRet = Ret; } in setImplicitRet() 65 Variable *getImplicitRet() const { return ImplicitRet; } in getImplicitRet() 67 Variable *getPhysicalRegister(RegNumT RegNum, 73 getRegistersForVariable(const Variable *Var) const override { in getRegistersForVariable() 79 getAllRegistersForVariable(const Variable *Var) const override { in getAllRegistersForVariable() 134 void emitVariable(const Variable *Var) const override; 166 void _add(Variable *Dest, Variable *Src0, Variable *Src1) { in _add() 170 void _addu(Variable *Dest, Variable *Src0, Variable *Src1) { in _addu() 174 void _and(Variable *Dest, Variable *Src0, Variable *Src1) { in _and() 178 void _andi(Variable *Dest, Variable *Src, uint32_t Imm) { in _andi() [all …]
|
D | IceTargetLoweringARM32.h | 93 Variable *getPhysicalRegister(RegNumT RegNum, 99 getRegistersForVariable(const Variable *Var) const override { in getRegistersForVariable() 110 getAllRegistersForVariable(const Variable *Var) const override { in getAllRegistersForVariable() 153 void emitVariable(const Variable *Var) const override; 168 void finishArgumentLowering(Variable *Arg, Variable *FramePtr, 188 Variable *legalizeToReg(Operand *From, RegNumT RegNum = RegNumT()); 211 void lowerInt64Arithmetic(InstArithmetic::OpKind Op, Variable *Dest, 276 std::function<Variable *(Variable *)> Operation, 278 void lowerInt64AtomicRMW(Variable *Dest, uint32_t Operation, Operand *Ptr, 280 void lowerAtomicRMW(Variable *Dest, uint32_t Operation, Operand *Ptr, [all …]
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | variable.h | 31 class Variable; variable 41 /// Variable is the base class for local variables, global variables and 43 class Variable : public Castable<Variable, Node> { 47 /// @param type the variable type 48 /// @param storage_class the variable storage class 49 /// @param access the variable access control type 50 /// @param constant_value the constant value for the variable. May be invalid 51 Variable(const ast::Variable* declaration, 58 ~Variable() override; 61 const ast::Variable* Declaration() const { return declaration_; } in Declaration() [all …]
|
/third_party/vk-gl-cts/framework/randomshaders/ |
D | rsgVariableManager.cpp | 21 * \brief Variable manager. 95 ValueEntry::ValueEntry (const Variable* variable) in ValueEntry() argument 96 : m_variable (variable) in ValueEntry() 97 , m_valueRange (variable->getType()) in ValueEntry() 107 …for (vector<Variable*>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end(); … in ~VariableScope() 110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++) in ~VariableScope() 114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char*… in allocate() 116 Variable* variable = new Variable(type, storage, name); in allocate() local 119 m_liveVariables.push_back(variable); in allocate() 120 return variable; in allocate() [all …]
|
D | rsgVariableManager.hpp | 23 * \brief Variable manager. 26 * Variable manager owns variable objects until they are either explictly 46 ValueEntry (const Variable* variable); 49 const Variable* getVariable (void) const { return m_variable; } in getVariable() 55 const Variable* m_variable; 59 // Variable scope manages variable allocation. 66 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name… 67 void declare (Variable* variable); //!< Move from live set to declared set 68 …void removeLive (const Variable* variable); //!< Just remove from live set (when migrati… 70 const std::vector<Variable*>& getDeclaredVariables (void) const { return m_declaredVariables; } in getDeclaredVariables() [all …]
|
/third_party/python/Tools/msi/bundle/ |
D | bundle.wxs | 20 <Variable Name="ActionLikeInstalling" Value="Installing" /> 22 <Variable Name="ActionLikeInstallation" Value="Setup" /> 24 <Variable Name="ShortVersion" Value="$(var.MajorVersionNumber).$(var.MinorVersionNumber)" /> 25 <Variable Name="ShortVersionNoDot" Value="$(var.MajorVersionNumber)$(var.MinorVersionNumber)" /> 26 …<Variable Name="WinVer" Value="$(var.MajorVersionNumber).$(var.MinorVersionNumber)$(var.PyArchExt)… 27 …<Variable Name="WinVerNoDot" Value="$(var.MajorVersionNumber)$(var.MinorVersionNumber)$(var.PyArch… 29 <Variable Name="InstallAllUsers" Value="0" bal:Overridable="yes" /> 31 <Variable Name="InstallLauncherAllUsers" Value="1" bal:Overridable="yes" /> 33 <Variable Name="InstallLauncherAllUsers" Value="0" /> 35 <Variable Name="TargetDir" Value="" bal:Overridable="yes" /> [all …]
|
/third_party/typescript_eslint/packages/scope-manager/tests/fixtures/functions/function-declaration/ |
D | params.ts.shot | 7 Variable$2 { 23 resolved: Variable$2, 32 resolved: Variable$2, 38 Variable$3 { 50 Variable$4 { 57 Variable$5 { 72 resolved: Variable$5, 80 resolved: Variable$5, 86 Variable$6 { 98 Variable$7 { [all …]
|
/third_party/typescript_eslint/packages/scope-manager/tests/fixtures/class/declaration/ |
D | parameter-properties.ts.shot | 7 Variable$2 { 23 resolved: Variable$2, 32 resolved: Variable$2, 38 Variable$3 { 53 resolved: Variable$3, 59 Variable$4 { 71 Variable$5 { 83 Variable$6 { 90 Variable$7 { 105 resolved: Variable$7, [all …]
|
D | method.ts.shot | 7 Variable$2 { 19 Variable$3 { 31 Variable$4 { 38 Variable$5 { 53 resolved: Variable$5, 61 resolved: Variable$5, 67 Variable$6 { 79 Variable$7 { 91 Variable$8 { 107 resolved: Variable$8, [all …]
|
/third_party/glib/glib/ |
D | genviron.c | 49 g_environ_matches (const gchar *env, const gchar *variable, gsize len) in g_environ_matches() argument 52 /* TODO handle Unicode environment variable names */ in g_environ_matches() 54 return g_ascii_strncasecmp (env, variable, len) == 0 && env[len] == '='; in g_environ_matches() 56 return strncmp (env, variable, len) == 0 && env[len] == '='; in g_environ_matches() 62 const gchar *variable) in g_environ_find() argument 70 len = strlen (variable); in g_environ_find() 74 if (g_environ_matches (envp[i], variable, len)) in g_environ_find() 86 * @variable: (type filename): the environment variable to get 88 * Returns the value of the environment variable @variable in the 91 * Returns: (type filename): the value of the environment variable, or %NULL if [all …]
|
/third_party/typescript_eslint/packages/scope-manager/tests/fixtures/functions/function-expression/ |
D | params.ts.shot | 7 Variable$2 { 23 resolved: Variable$2, 32 resolved: Variable$2, 38 Variable$3 { 54 resolved: Variable$3, 61 Variable$4 { 68 Variable$5 { 83 resolved: Variable$5, 91 resolved: Variable$5, 97 Variable$6 { [all …]
|
/third_party/typescript/tests/baselines/reference/ |
D | letDeclarations-scopes-duplicates.errors.txt | 1 …eclarations-scopes-duplicates.ts(2,5): error TS2451: Cannot redeclare block-scoped variable 'var1'. 2 …eclarations-scopes-duplicates.ts(3,5): error TS2451: Cannot redeclare block-scoped variable 'var1'. 3 …eclarations-scopes-duplicates.ts(5,5): error TS2451: Cannot redeclare block-scoped variable 'var2'. 4 …eclarations-scopes-duplicates.ts(6,7): error TS2451: Cannot redeclare block-scoped variable 'var2'. 5 …eclarations-scopes-duplicates.ts(8,7): error TS2451: Cannot redeclare block-scoped variable 'var3'. 6 …eclarations-scopes-duplicates.ts(9,5): error TS2451: Cannot redeclare block-scoped variable 'var3'. 7 …clarations-scopes-duplicates.ts(11,7): error TS2451: Cannot redeclare block-scoped variable 'var4'. 8 …clarations-scopes-duplicates.ts(12,7): error TS2451: Cannot redeclare block-scoped variable 'var4'. 11 …clarations-scopes-duplicates.ts(17,5): error TS2451: Cannot redeclare block-scoped variable 'var6'. 12 …clarations-scopes-duplicates.ts(18,5): error TS2451: Cannot redeclare block-scoped variable 'var6'. [all …]
|
D | invalidMultipleVariableDeclarations.errors.txt | 1 …Declarations.ts(32,5): error TS2403: Subsequent variable declarations must have the same type. Va… 2 …Declarations.ts(33,5): error TS2403: Subsequent variable declarations must have the same type. Va… 3 …Declarations.ts(34,5): error TS2403: Subsequent variable declarations must have the same type. Va… 4 …Declarations.ts(35,5): error TS2403: Subsequent variable declarations must have the same type. Va… 5 …Declarations.ts(36,5): error TS2403: Subsequent variable declarations must have the same type. Va… 6 …Declarations.ts(39,5): error TS2403: Subsequent variable declarations must have the same type. Va… 7 …Declarations.ts(40,5): error TS2403: Subsequent variable declarations must have the same type. Va… 8 …Declarations.ts(43,5): error TS2403: Subsequent variable declarations must have the same type. Va… 9 …Declarations.ts(46,5): error TS2403: Subsequent variable declarations must have the same type. Va… 10 …Declarations.ts(47,5): error TS2403: Subsequent variable declarations must have the same type. Va… [all …]
|
D | forStatementsMultipleInvalidDecl.errors.txt | 1 …InvalidDecl.ts(32,10): error TS2403: Subsequent variable declarations must have the same type. Va… 2 …InvalidDecl.ts(33,10): error TS2403: Subsequent variable declarations must have the same type. Va… 3 …InvalidDecl.ts(34,10): error TS2403: Subsequent variable declarations must have the same type. Va… 4 …InvalidDecl.ts(35,10): error TS2403: Subsequent variable declarations must have the same type. Va… 5 …InvalidDecl.ts(36,10): error TS2403: Subsequent variable declarations must have the same type. Va… 6 …InvalidDecl.ts(39,10): error TS2403: Subsequent variable declarations must have the same type. Va… 7 …InvalidDecl.ts(40,10): error TS2403: Subsequent variable declarations must have the same type. Va… 8 …InvalidDecl.ts(43,10): error TS2403: Subsequent variable declarations must have the same type. Va… 9 …InvalidDecl.ts(46,10): error TS2403: Subsequent variable declarations must have the same type. Va… 10 …InvalidDecl.ts(47,10): error TS2403: Subsequent variable declarations must have the same type. Va… [all …]
|
D | assignmentLHSIsValue.errors.txt | 1 … error TS2364: The left-hand side of an assignment expression must be a variable or a property acc… 2 … error TS2364: The left-hand side of an assignment expression must be a variable or a property acc… 3 … error TS2364: The left-hand side of an assignment expression must be a variable or a property acc… 4 … error TS2364: The left-hand side of an assignment expression must be a variable or a property acc… 5 … error TS2364: The left-hand side of an assignment expression must be a variable or a property acc… 6 …tor/assignmentLHSIsValue.ts(17,1): error TS2539: Cannot assign to 'M' because it is not a variable. 7 …tor/assignmentLHSIsValue.ts(19,1): error TS2539: Cannot assign to 'C' because it is not a variable. 8 …tor/assignmentLHSIsValue.ts(22,1): error TS2539: Cannot assign to 'E' because it is not a variable. 9 …r/assignmentLHSIsValue.ts(24,1): error TS2539: Cannot assign to 'foo' because it is not a variable. 10 … error TS2364: The left-hand side of an assignment expression must be a variable or a property acc… [all …]
|
D | differentTypesWithSameName.types | 5 export class variable{ 6 >variable : variable 11 export function doSomething(v: m.variable) { 12 >doSomething : (v: m.variable) => void 13 >v : variable 19 class variable { 20 >variable : variable 27 var v: variable = new variable(); 28 >v : variable 29 >new variable() : variable [all …]
|
/third_party/typescript_eslint/packages/scope-manager/tests/fixtures/class/expression/ |
D | parameter-properties.ts.shot | 7 Variable$2 { 23 resolved: Variable$2, 32 resolved: Variable$2, 38 Variable$3 { 53 resolved: Variable$3, 59 Variable$4 { 75 resolved: Variable$4, 82 Variable$5 { 89 Variable$6 { 104 resolved: Variable$6, [all …]
|
D | method.ts.shot | 7 Variable$2 { 23 resolved: Variable$2, 30 Variable$3 { 37 Variable$4 { 52 resolved: Variable$4, 60 resolved: Variable$4, 66 Variable$5 { 78 Variable$6 { 90 Variable$7 { 106 resolved: Variable$7, [all …]
|
/third_party/typescript_eslint/packages/scope-manager/tests/fixtures/functions/arrow/ |
D | params.ts.shot | 7 Variable$2 { 23 resolved: Variable$2, 32 resolved: Variable$2, 38 Variable$3 { 53 resolved: Variable$3, 61 resolved: Variable$3, 67 Variable$4 { 79 Variable$5 { 91 Variable$6 { 107 resolved: Variable$6, [all …]
|
/third_party/glslang/Test/baseResults/ |
D | spv.ext.AnyHitShader.rahit.out | 76 11(gl_LaunchIDEXT): 10(ptr) Variable Input 77 14(gl_LaunchSizeEXT): 10(ptr) Variable Input 81 20(gl_PrimitiveID): 19(ptr) Variable Input 82 23(gl_InstanceID): 19(ptr) Variable Input 83 26(gl_InstanceCustomIndexEXT): 19(ptr) Variable Input 88 33(gl_WorldRayOriginEXT): 32(ptr) Variable Input 89 36(gl_WorldRayDirectionEXT): 32(ptr) Variable Input 90 39(gl_ObjectRayOriginEXT): 32(ptr) Variable Input 91 42(gl_ObjectRayDirectionEXT): 32(ptr) Variable Input 94 47(gl_RayTminEXT): 46(ptr) Variable Input [all …]
|
D | spv.ext.ClosestHitShader.rchit.out | 81 11(gl_LaunchIDEXT): 10(ptr) Variable Input 82 14(gl_LaunchSizeEXT): 10(ptr) Variable Input 86 20(gl_PrimitiveID): 19(ptr) Variable Input 87 23(gl_InstanceID): 19(ptr) Variable Input 88 26(gl_InstanceCustomIndexEXT): 19(ptr) Variable Input 93 33(gl_WorldRayOriginEXT): 32(ptr) Variable Input 94 36(gl_WorldRayDirectionEXT): 32(ptr) Variable Input 95 39(gl_ObjectRayOriginEXT): 32(ptr) Variable Input 96 42(gl_ObjectRayDirectionEXT): 32(ptr) Variable Input 99 47(gl_RayTminEXT): 46(ptr) Variable Input [all …]
|
/third_party/vk-gl-cts/data/gles31/shaders/es31/ |
D | linkage_io_block.test | 84 mediump vec2 variable; 89 variable.x = float(gl_VertexID); 90 variable.y = float(gl_InstanceID); 100 mediump float variable; 105 ${FRAG_COLOR} = vec4(variable); 155 mediump float variable[1]; 160 variable[0] = float(gl_VertexID); 170 mediump float variable[2]; 175 ${FRAG_COLOR} = vec4(variable[0] + variable[1]); 194 mediump float variable; [all …]
|