| /external/cldr/common/segments/ |
| D | root.xml | 17 <variable id="$CR">\p{Grapheme_Cluster_Break=CR}</variable> 18 <variable id="$LF">\p{Grapheme_Cluster_Break=LF}</variable> 19 <variable id="$Control">\p{Grapheme_Cluster_Break=Control}</variable> 20 <variable id="$Extend">\p{Grapheme_Cluster_Break=Extend}</variable> 21 <variable id="$ZWJ">\p{Grapheme_Cluster_Break=ZWJ}</variable> 22 <variable id="$RI">\p{Grapheme_Cluster_Break=Regional_Indicator}</variable> 23 <variable id="$Prepend">\p{Grapheme_Cluster_Break=Prepend}</variable> 24 <variable id="$SpacingMark">\p{Grapheme_Cluster_Break=SpacingMark}</variable> 25 <variable id="$L">\p{Grapheme_Cluster_Break=L}</variable> 26 <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/deqp/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 …]
|
| /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 …]
|
| D | resource_variable_ops.py | 148 """Create a variable handle, copying in handle data from `initial_value`.""" 197 """Creates a variable handle with information to do shape inference. 225 correspond to the handle data of the variant(s) stored in the Variable. 307 """Helper that checks shape compatibility and assigns variable.""" 326 def variable_accessed(variable): argument 327 """Records that `variable` was accessed for the tape and FuncGraph.""" 329 ops.get_default_graph().watch_variable(variable) 330 if variable.trainable: 331 tape.variable_accessed(variable) 335 """A python variable from an existing handle.""" [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/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/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/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/angle/third_party/vulkan-deps/glslang/src/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-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 …]
|
| /external/clang/test/Sema/ |
| D | uninit-variables.c | 7 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test1() 8 return x; // expected-warning{{variable 'x' is uninitialized when used here}} in test1() 23 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test4() 24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}} in test4() 29 int x, y; // expected-note{{initialize the variable 'y' to silence this warning}} in test5() 30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}} in test5() 35 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test6() 36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}} in test6() 41 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test7() 42 …if (y) // expected-warning{{variable 'x' is used uninitialized whenever 'if' condition is false}} \ in test7() [all …]
|
| /external/chromium-trace/catapult/third_party/pyserial/serial/ |
| D | win32.py | 163 ONESTOPBIT = 0 # Variable c_int 164 TWOSTOPBITS = 2 # Variable c_int 167 NOPARITY = 0 # Variable c_int 168 ODDPARITY = 1 # Variable c_int 169 EVENPARITY = 2 # Variable c_int 173 RTS_CONTROL_HANDSHAKE = 2 # Variable c_int 174 RTS_CONTROL_DISABLE = 0 # Variable c_int 175 RTS_CONTROL_ENABLE = 1 # Variable c_int 176 RTS_CONTROL_TOGGLE = 3 # Variable c_int 180 DTR_CONTROL_HANDSHAKE = 2 # Variable c_int [all …]
|
| /external/deqp/data/gles31/shaders/es32/ |
| D | linkage_io_block.test | 100 mediump vec2 variable; 105 variable.x = float(gl_VertexID); 106 variable.y = float(gl_InstanceID); 116 mediump float variable; 121 ${FRAG_COLOR} = vec4(variable); 169 mediump float variable[1]; 174 variable[0] = float(gl_VertexID); 184 mediump float variable[2]; 189 ${FRAG_COLOR} = vec4(variable[0] + variable[1]); 207 mediump float variable; [all …]
|
| /external/deqp/data/gles31/shaders/gl45/ |
| D | linkage_io_block.test | 100 mediump vec2 variable; 105 variable.x = float(gl_VertexID); 106 variable.y = float(gl_InstanceID); 116 mediump float variable; 121 ${FRAG_COLOR} = vec4(variable); 169 mediump float variable[1]; 174 variable[0] = float(gl_VertexID); 184 mediump float variable[2]; 189 ${FRAG_COLOR} = vec4(variable[0] + variable[1]); 207 mediump float variable; [all …]
|