| /external/cldr/common/segments/ |
| D | root.xml | 18 <variable id="$CR">\p{Grapheme_Cluster_Break=CR}</variable> 19 <variable id="$LF">\p{Grapheme_Cluster_Break=LF}</variable> 20 <variable id="$Control">\p{Grapheme_Cluster_Break=Control}</variable> 21 <variable id="$Extend">\p{Grapheme_Cluster_Break=Extend}</variable> 22 <variable id="$ZWJ">\p{Grapheme_Cluster_Break=ZWJ}</variable> 23 <variable id="$RI">\p{Grapheme_Cluster_Break=Regional_Indicator}</variable> 24 <variable id="$Prepend">\p{Grapheme_Cluster_Break=Prepend}</variable> 25 <variable id="$SpacingMark">\p{Grapheme_Cluster_Break=SpacingMark}</variable> 26 <variable id="$L">\p{Grapheme_Cluster_Break=L}</variable> 27 <variable id="$V">\p{Grapheme_Cluster_Break=V}</variable> [all …]
|
| /external/python/cpython2/PC/VS7.1/ |
| D | Uninstal.wse | 37 item: Set Variable 38 Variable=UNINSTALL_PATH 42 item: Set Variable 43 Variable=UNINSTALL_PATH 46 item: Compiler Variable If 47 Variable=_EXE_OS_TYPE_ 55 item: Compiler Variable Else 62 item: Compiler Variable End 71 item: Set Variable 72 Variable=UNINSTALL_LANG [all …]
|
| /external/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 …]
|
| D | IceTargetLoweringX8664.h | 48 /// Instr is the instruction producing the i1-type variable of interest. 104 /// Producers maps Variable::Number to a BoolFoldingEntry. 138 Inst *createLoweredMove(Variable *Dest, Variable *SrcVar) override { in createLoweredMove() 148 Variable *getPhysicalRegister(RegNumT RegNum, 173 getRegistersForVariable(const Variable *Var) const override { in getRegistersForVariable() 180 getAllRegistersForVariable(const Variable *Var) const override { in getAllRegistersForVariable() 236 void emitVariable(const Variable *Var) const override; 248 void finishArgumentLowering(Variable *Arg, Variable *FramePtr, 290 Variable *Base = nullptr; 291 Variable *Index = nullptr; [all …]
|
| D | IceTargetLoweringX8632.h | 47 /// Instr is the instruction producing the i1-type variable of interest. 103 /// Producers maps Variable::Number to a BoolFoldingEntry. 137 Inst *createLoweredMove(Variable *Dest, Variable *SrcVar) override { in createLoweredMove() 147 Variable *getPhysicalRegister(RegNumT RegNum, 172 getRegistersForVariable(const Variable *Var) const override { in getRegistersForVariable() 179 getAllRegistersForVariable(const Variable *Var) const override { in getAllRegistersForVariable() 237 void emitVariable(const Variable *Var) const override; 252 void finishArgumentLowering(Variable *Arg, Variable *FramePtr, 294 Variable *Base = nullptr; 295 Variable *Index = nullptr; [all …]
|
| /external/sdk-platform-java/gapic-generator-java/src/test/java/com/google/api/generator/engine/ast/ |
| D | VariableExprTest.java | 27 Variable variable = Variable.builder().setName("x").setType(TypeNode.INT).build(); in validVariableExpr_basic() local 28 VariableExpr variableExpr = VariableExpr.builder().setVariable(variable).build(); in validVariableExpr_basic() 29 assertThat(variableExpr.variable()).isEqualTo(variable); in validVariableExpr_basic() 40 .setVariable(Variable.builder().setType(TypeNode.INT).setName("MAX_VALUE").build()) in validVariableExpr_staticReference() 49 Variable.builder() in validVariableExpr_classFieldOnStaticReference() 61 Variable.builder() in validVariableExpr_classFieldOnExprReference() 75 Variable variable = Variable.builder().setName("x").setType(TypeNode.STRING).build(); in validVariableExpr_withFields() local 78 .setVariable(variable) in validVariableExpr_withFields() 83 assertThat(variableExpr.variable()).isEqualTo(variable); in validVariableExpr_withFields() 93 Variable variable = Variable.builder().setName("x").setType(TypeNode.BOOLEAN).build(); in validVariableExpr_declaration() local [all …]
|
| D | CastExprTest.java | 24 Variable variable = Variable.builder().setName("x").setType(TypeNode.STRING).build(); in validCastExpr_basic() local 25 VariableExpr variableExpr = VariableExpr.builder().setVariable(variable).build(); in validCastExpr_basic() 44 Variable variable = Variable.builder().setName("x").setType(TypeNode.LONG).build(); in validCastExpr_basicPrimitiveSame() local 45 VariableExpr variableExpr = VariableExpr.builder().setVariable(variable).build(); in validCastExpr_basicPrimitiveSame() 52 Variable variable = Variable.builder().setName("x").setType(TypeNode.BOOLEAN).build(); in validCastExpr_basicPrimitiveBoolean() local 53 VariableExpr variableExpr = VariableExpr.builder().setVariable(variable).build(); in validCastExpr_basicPrimitiveBoolean() 60 Variable variable = Variable.builder().setName("x").setType(TypeNode.LONG).build(); in validCastExpr_basicPrimitiveNarrowing() local 61 VariableExpr variableExpr = VariableExpr.builder().setVariable(variable).build(); in validCastExpr_basicPrimitiveNarrowing() 65 variable = Variable.builder().setName("x").setType(TypeNode.DOUBLE).build(); in validCastExpr_basicPrimitiveNarrowing() 66 variableExpr = VariableExpr.builder().setVariable(variable).build(); in validCastExpr_basicPrimitiveNarrowing() [all …]
|
| D | GeneralForStatementTest.java | 26 // validGeneralForStatement_basicIsDecl tests declare a variable inside in initialization expr. 28 Variable variable = Variable.builder().setName("i").setType(TypeNode.INT).build(); in validGeneralForStatement_basicIsDecl() local 30 VariableExpr.builder().setVariable(variable).setIsDecl(true).build(); in validGeneralForStatement_basicIsDecl() 42 // validGeneralForStatement_basicIsNotDecl tests assigning a method-level local variable in 45 Variable variable = Variable.builder().setName("i").setType(TypeNode.INT).build(); in validGeneralForStatement_basicIsNotDecl() local 47 VariableExpr.builder().setVariable(variable).setIsDecl(false).build(); in validGeneralForStatement_basicIsNotDecl() 61 Variable variable = Variable.builder().setName("i").setType(TypeNode.INT).build(); in validGeneralForStatement_emptyBody() local 63 VariableExpr.builder().setVariable(variable).setIsDecl(false).build(); in validGeneralForStatement_emptyBody() 75 // validForStatement_privateNotIsDeclVariable tests assigning an instance variable with private 78 Variable variable = Variable.builder().setName("i").setType(TypeNode.INT).build(); in validForStatement_privateNotIsDeclVariable() local [all …]
|
| D | AssignmentExprTest.java | 27 Variable variable = Variable.builder().setName("x").setType(TypeNode.INT).build(); in assignMatchingValue() local 29 VariableExpr.builder().setVariable(variable).setIsDecl(true).build(); in assignMatchingValue() 39 Variable variable = Variable.builder().setName("x").setType(TypeNode.BOOLEAN).build(); in assignMismatchedValue() local 41 VariableExpr.builder().setVariable(variable).setIsDecl(true).build(); in assignMismatchedValue() 51 Variable variable = in assignSubtypeValue() local 52 Variable.builder() in assignSubtypeValue() 57 VariableExpr.builder().setVariable(variable).setIsDecl(true).build(); in assignSubtypeValue() 70 Variable variable = Variable.builder().setName("x").setType(TypeNode.INT).build(); in assignMatchingVariable() local 72 VariableExpr.builder().setVariable(variable).setIsDecl(true).build(); in assignMatchingVariable() 74 Variable anotherVariable = Variable.builder().setName("y").setType(TypeNode.INT).build(); in assignMatchingVariable() [all …]
|
| /external/deqp/framework/randomshaders/ |
| D | rsgVariableManager.cpp | 21 * \brief Variable manager. 96 ValueEntry::ValueEntry(const Variable *variable) : m_variable(variable), m_valueRange(variable->get… in ValueEntry() argument 106 …for (vector<Variable *>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end();… in ~VariableScope() 109 for (vector<Variable *>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++) in ~VariableScope() 113 Variable *VariableScope::allocate(const VariableType &type, Variable::Storage storage, const char *… in allocate() 115 Variable *variable = new Variable(type, storage, name); in allocate() local 118 m_liveVariables.push_back(variable); in allocate() 119 return variable; in allocate() 123 delete variable; in allocate() 128 void VariableScope::declare(Variable *variable) in declare() argument [all …]
|
| D | rsgVariableManager.hpp | 23 * \brief Variable manager. 26 * Variable manager owns variable objects until they are either explictly 46 ValueEntry(const Variable *variable); 51 const Variable *getVariable(void) const in getVariable() 66 const Variable *m_variable; 70 // Variable scope manages variable allocation. 77 Variable *allocate(const VariableType &type, Variable::Storage storage, const char *name); 78 void declare(Variable *variable); //!< Move from live set to declared set 79 …void removeLive(const Variable *variable); //!< Just remove from live set (when migrating to paren… 81 const std::vector<Variable *> &getDeclaredVariables(void) const in getDeclaredVariables() [all …]
|
| /external/python/cpython3/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 …]
|
| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/env/ |
| D | EnvFormatTest.java | 22 * ${VARIABLE:-default} evaluates to default if VARIABLE is unset or empty in the environment. 23 * ${VARIABLE-default} evaluates to default only if VARIABLE is unset in the environment. 27 * ${VARIABLE:?err} exits with an error message containing err if VARIABLE is unset or empty in the 28 * environment. ${VARIABLE?err} exits with an error message containing err if VARIABLE is unset in 36 assertTrue(ENV_FORMAT.matcher("${VARIABLE}").matches()); in testMatchBasic() 37 assertTrue(ENV_FORMAT.matcher("${ VARIABLE}").matches()); in testMatchBasic() 38 assertTrue(ENV_FORMAT.matcher("${ VARIABLE}").matches()); in testMatchBasic() 39 assertTrue(ENV_FORMAT.matcher("${ VARIABLE }").matches()); in testMatchBasic() 40 assertTrue(ENV_FORMAT.matcher("${ VARIABLE}").matches()); in testMatchBasic() 43 Matcher matcher = ENV_FORMAT.matcher("${VARIABLE}"); in testMatchBasic() [all …]
|
| /external/eigen/ci/ |
| D | CTest2JUnit.xsl | 4 <xsl:variable name="Name"><xsl:value-of select="@Name"/></xsl:variable> 5 <xsl:variable name="Hostname"><xsl:value-of select="@Hostname"/></xsl:variable> 6 <xsl:variable name="TestCount"><xsl:value-of select="count(//TestList/Test)"/> </xsl:variable> 7 …<xsl:variable name="ErrorCount"><xsl:value-of select="count(//TestList/Test[@Status='error'])"/> <… 8 …<xsl:variable name="FailureCount"><xsl:value-of select="count(//Testing/Test[@Status='failed'])"/>… 10 <xsl:variable name="BuildName"><xsl:value-of select="@BuildName"/></xsl:variable> 11 <xsl:variable name="BuildStamp"><xsl:value-of select="@BuildStamp"/></xsl:variable> 12 <xsl:variable name="Generator"><xsl:value-of select="@Generator"/></xsl:variable> 13 <xsl:variable name="CompilerName"><xsl:value-of select="@CompilerName"/></xsl:variable> 14 <xsl:variable name="OSName"><xsl:value-of select="@OSName"/></xsl:variable> [all …]
|
| /external/tensorflow/tensorflow/python/ops/ |
| D | variables.py | 15 """Variable class.""" 72 """Indicates when a distributed variable will be synced. 77 * `NONE`: Indicates that there will only be one copy of the variable, so 79 * `ON_WRITE`: Indicates that the variable will be updated across devices 81 * `ON_READ`: Indicates that the variable will be aggregated across devices 83 the variable). 86 >>> temp_grad=[tf.Variable([0.], trainable=False, 100 """Indicates how a distributed variable will be aggregated. 104 batch. When performing some variable-update operation, say 109 variable-update operation with multiple replicas. [all …]
|
| /external/google-cloud-java/java-debugger-client/proto-google-cloud-debugger-client-v2/src/main/java/com/google/devtools/clouddebugger/v2/ |
| D | Variable.java | 25 * Represents a variable or an argument possibly of a compound object type. 27 * 1) A simple variable: 29 * { name: "x", value: "5", type: "int" } // Captured variable 36 * { // Captured variable 45 * { // Captured variable 54 * { // Captured variable 65 * { // Captured variable 73 * { // Captured variable 88 * variable table and be referenced using the `var_table_index` field. The 90 * a partition of the complete variable. To reconstruct the complete [all …]
|
| D | VariableOrBuilder.java | 23 // @@protoc_insertion_point(interface_extends:google.devtools.clouddebugger.v2.Variable) 30 * Name of the variable, if any. 42 * Name of the variable, if any. 55 * Simple value of the variable. 67 * Simple value of the variable. 80 * Variable type (e.g. `MyClass`). If the variable is split with 95 * Variable type (e.g. `MyClass`). If the variable is split with 111 * Members contained or pointed to by the variable. 114 * <code>repeated .google.devtools.clouddebugger.v2.Variable members = 3;</code> 116 java.util.List<com.google.devtools.clouddebugger.v2.Variable> getMembersList(); in getMembersList() [all …]
|
| /external/tensorflow/tensorflow/lite/delegates/gpu/gl/compiler/ |
| D | variable_accessor.cc | 75 // Returns GLSL uniform type of the given variable. 76 std::string GetVariableType(const Variable::ValueType& value) { in GetVariableType() 91 int GetLength(const Variable::ValueType& value) { in GetLength() 160 // Appends string representation of a variable value. 161 void GetValue(const Variable::ValueType& value, std::string* result) { in GetValue() 168 absl::StrAppend(result, "shared highp ", GetVariableType(variable.value), in operator ()() 169 " ", variable.name, ";\n"); in operator ()() 174 absl::StrAppend(result, "shared highp ", GetVariableType(variable.value), in operator ()() 175 " ", variable.name); in operator ()() 187 const Variable& variable; member [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | clouddebugger_v2.debugger.debuggees.breakpoints.html | 140 …ession. If the expression cannot be evaluated, the `status` inside the `Variable` will indicate an… 141 …variable or an argument possibly of a compound object type. Note how the following variables are r… 142 "members": [ # Members contained or pointed to by the variable. 143 # Object with schema name: Variable 145 "name": "A String", # Name of the variable, if any. 146 …variable. This field will usually stay unset. A status of a single variable only applies to that v… 156 …"type": "A String", # Variable type (e.g. `MyClass`). If the variable is split… 157 "value": "A String", # Simple value of the variable. 158 …x": 42, # Reference to a variable in the shared variable table. More than one variable can re… 180 …variable or an argument possibly of a compound object type. Note how the following variables are r… [all …]
|
| D | runtimeconfig_v1beta1.projects.configs.variables.html | 82 …variable within the given configuration. You cannot create a variable with a name that is a prefix… 85 <p class="firstline">Deletes a variable or multiple variables. If you specify a variable name, then… 88 <p class="firstline">Gets information about a single variable.</p> 91 …n given a configuration, matching any provided filters. This only lists variable names, not the va… 100 <p class="firstline">Updates an existing variable with a new value.</p> 103 …variable and waits for a change in the variable's value. When there is a change, this method retur… 112 …variable within the given configuration. You cannot create a variable with a name that is a prefix… 115 …parent: string, The path to the RutimeConfig resource that this variable should belong to. The con… 119 …variable within a RuntimeConfig resource. The name denotes the hierarchical variable name. For exa… 120 …variable resource, in the format: projects/[PROJECT_ID]/configs/[CONFIG_NAME]/variables/[VARIABLE_… [all …]
|
| D | clouddebugger_v2.controller.debuggees.breakpoints.html | 116 …ession. If the expression cannot be evaluated, the `status` inside the `Variable` will indicate an… 117 …variable or an argument possibly of a compound object type. Note how the following variables are r… 118 "members": [ # Members contained or pointed to by the variable. 119 # Object with schema name: Variable 121 "name": "A String", # Name of the variable, if any. 122 …variable. This field will usually stay unset. A status of a single variable only applies to that v… 132 …"type": "A String", # Variable type (e.g. `MyClass`). If the variable is split… 133 "value": "A String", # Simple value of the variable. 134 …x": 42, # Reference to a variable in the shared variable table. More than one variable can re… 156 …variable or an argument possibly of a compound object type. Note how the following variables are r… [all …]
|
| /external/deqp-deps/glslang/Test/baseResults/ |
| D | spv.ext.ClosestHitShader.rchit.out | 87 11(gl_LaunchIDEXT): 10(ptr) Variable Input 88 14(gl_LaunchSizeEXT): 10(ptr) Variable Input 92 20(gl_PrimitiveID): 19(ptr) Variable Input 93 23(gl_InstanceID): 19(ptr) Variable Input 94 26(gl_InstanceCustomIndexEXT): 19(ptr) Variable Input 99 33(gl_WorldRayOriginEXT): 32(ptr) Variable Input 100 36(gl_WorldRayDirectionEXT): 32(ptr) Variable Input 101 39(gl_ObjectRayOriginEXT): 32(ptr) Variable Input 102 42(gl_ObjectRayDirectionEXT): 32(ptr) Variable Input 105 47(gl_RayTminEXT): 46(ptr) Variable Input [all …]
|
| D | spv.ext.AnyHitShader.rahit.out | 90 11(gl_LaunchIDEXT): 10(ptr) Variable Input 91 14(gl_LaunchSizeEXT): 10(ptr) Variable Input 95 20(gl_PrimitiveID): 19(ptr) Variable Input 96 23(gl_InstanceID): 19(ptr) Variable Input 97 26(gl_InstanceCustomIndexEXT): 19(ptr) Variable Input 102 33(gl_WorldRayOriginEXT): 32(ptr) Variable Input 103 36(gl_WorldRayDirectionEXT): 32(ptr) Variable Input 104 39(gl_ObjectRayOriginEXT): 32(ptr) Variable Input 105 42(gl_ObjectRayDirectionEXT): 32(ptr) Variable Input 108 47(gl_RayTminEXT): 46(ptr) Variable Input [all …]
|
| /external/deqp/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 …]
|