/external/v8/test/webkit/ |
D | dfg-dead-speculation-expected.txt | 30 PASS variable is 84 32 PASS variable is 84 34 PASS variable is 84 36 PASS variable is 84 38 PASS variable is 84 40 PASS variable is 84 42 PASS variable is 84 44 PASS variable is 84 46 PASS variable is 84 48 PASS variable is 84 [all …]
|
/external/autotest/client/site_tests/graphics_PiglitBVT/test_scripts/pinetrail/ |
D | graphics_PiglitBVT_14.sh | 38 …spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-rd" 0.0 "bin/shader_runner tests/spe… 39 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-row-rd" 0.0 "bin/shader_runner tests/s… 40 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-row-wr" 0.0 "bin/shader_runner tests/s… 41 …spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-wr" 0.0 "bin/shader_runner tests/spe… 42 …spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-rd" 0.0 "bin/shader_runner tests/spe… 43 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-row-rd" 0.0 "bin/shader_runner tests/s… 44 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-row-wr" 0.0 "bin/shader_runner tests/s… 45 …spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat3-wr" 0.0 "bin/shader_runner tests/spe… 46 …spec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat4-rd" 0.0 "bin/shader_runner tests/spe… 47 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat4-row-rd" 0.0 "bin/shader_runner tests/s… [all …]
|
D | graphics_PiglitBVT_20.sh | 33 …glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-index-col-wr" 0.0 "bin/shader_runner test… 34 …c/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-index-rd" 0.0 "bin/shader_runner tests/… 35 …glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-index-row-rd" 0.0 "bin/shader_runner test… 36 …glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-index-row-wr" 0.0 "bin/shader_runner test… 37 …c/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-index-wr" 0.0 "bin/shader_runner tests/… 38 …spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-rd" 0.0 "bin/shader_runner tests/spe… 39 …ec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-row-rd" 0.0 "bin/shader_runner tests/s… 40 …ec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-row-wr" 0.0 "bin/shader_runner tests/s… 41 …spec/glsl-1.20/execution/variable-indexing/vs-temp-array-mat4-wr" 0.0 "bin/shader_runner tests/spe… 42 …"spec/glsl-1.20/execution/variable-indexing/vs-temp-mat2-col-rd" 0.0 "bin/shader_runner tests/spec… [all …]
|
D | graphics_PiglitBVT_19.sh | 152 …spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-rd" 0.0 "bin/shader_runner tests/spe… 153 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-row-rd" 0.0 "bin/shader_runner tests/s… 154 …spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-rd" 0.0 "bin/shader_runner tests/spe… 155 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-row-rd" 0.0 "bin/shader_runner tests/s… 156 …spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-rd" 0.0 "bin/shader_runner tests/spe… 157 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat4-row-rd" 0.0 "bin/shader_runner tests/s… 158 …t "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat2-rd" 0.0 "bin/shader_runner tests/spec/g… 159 …"spec/glsl-1.20/execution/variable-indexing/fs-temp-mat2-row-rd" 0.0 "bin/shader_runner tests/spec… 160 …t "spec/glsl-1.20/execution/variable-indexing/fs-temp-mat2-wr" 0.0 "bin/shader_runner tests/spec/g… 161 …"spec/glsl-1.20/execution/variable-indexing/fs-temp-mat3-row-rd" 0.0 "bin/shader_runner tests/spec… [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 …]
|
D | rsgShaderGenerator.cpp | 65 void createAssignment (BlockStatement& block, const Variable* dstVar, const Variable* srcVar) in createAssignment() 101 const Variable* outVar = entry->getVariable(); in genVertexPassthrough() 104 if (outVar->getStorage() != Variable::STORAGE_SHADER_OUT) in genVertexPassthrough() 114 …Variable* inVar = state.getVariableManager().allocate(outVar->getType(), Variable::STORAGE_SHADER_… in genVertexPassthrough() 130 …Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->get… in genFragmentPassthrough() 197 …Variable* variable = m_state.getVariableManager().allocate(input->getVariable()->getType(), Vari… in generate() local 199 m_state.getVariableManager().setValue(variable, input->getValueRange()); in generate() 206 …Variable* fragColorVar = m_state.getVariableManager().allocate(VariableType(VariableType::TYPE_FLO… in generate() 228 const vector<Variable*>& liveVars = globalVariableScope.getLiveVariables(); in generate() 229 for (vector<Variable*>::const_iterator i = liveVars.begin(); i != liveVars.end(); i++) in generate() [all …]
|
/external/autotest/client/site_tests/graphics_PiglitBVT/test_scripts/other/ |
D | graphics_PiglitBVT_11.sh | 240 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-col-rd" 0.0 "bin/shader_runner tests/s… 241 …/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-col-row-rd" 0.0 "bin/shader_runner tests… 242 …/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-col-row-wr" 0.0 "bin/shader_runner tests… 243 …ec/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-col-wr" 0.0 "bin/shader_runner tests/s… 244 …glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-col-rd" 0.0 "bin/shader_runner test… 245 …sl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-col-row-rd" 0.0 "bin/shader_runner te… 246 …sl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-col-row-wr" 0.0 "bin/shader_runner te… 247 …glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-col-wr" 0.0 "bin/shader_runner test… 248 …c/glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-rd" 0.0 "bin/shader_runner tests/… 249 …glsl-1.10/execution/variable-indexing/fs-temp-array-mat2-index-row-rd" 0.0 "bin/shader_runner test… [all …]
|
D | graphics_PiglitBVT_15.sh | 33 …c/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-index-wr" 0.0 "bin/shader_runner tests/… 34 …spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-rd" 0.0 "bin/shader_runner tests/spe… 35 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-row-rd" 0.0 "bin/shader_runner tests/s… 36 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-row-wr" 0.0 "bin/shader_runner tests/s… 37 …spec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat2-wr" 0.0 "bin/shader_runner tests/spe… 38 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-col-rd" 0.0 "bin/shader_runner tests/s… 39 …/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-col-row-rd" 0.0 "bin/shader_runner tests… 40 …/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-col-row-wr" 0.0 "bin/shader_runner tests… 41 …ec/glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-col-wr" 0.0 "bin/shader_runner tests/s… 42 …glsl-1.20/execution/variable-indexing/fs-temp-array-mat3-index-col-rd" 0.0 "bin/shader_runner test… [all …]
|
/external/v8/src/ast/ |
D | scopes.h | 18 // A hash map to support fast variable declaration and lookup. 25 Variable* Declare(Scope* scope, const AstRawString* name, VariableMode mode, 26 Variable::Kind kind, InitializationFlag initialization_flag, 30 Variable* Lookup(const AstRawString* name); 79 // to a JavaScript variable (including global properties) is represented by a 80 // VariableProxy node. Immediately after AST construction and before variable 82 // corresponding variable (though some are bound during parse time). Variable 83 // allocation binds each unresolved VariableProxy to one Variable and assigns 85 // Script variable. 130 // Lookup a variable in this scope. Returns the variable or NULL if not found. [all …]
|
D | scopes.cc | 20 // When inserting a new variable via Declare(), we rely on the fact that 21 // the handle location remains alive for the duration of that variable 22 // use. Because a Variable holding a handle with the same location exists 31 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name, in Declare() 32 VariableMode mode, Variable::Kind kind, in Declare() 43 // The variable has not been declared yet -> insert it. in Declare() 45 if (kind == Variable::CLASS) { in Declare() 50 p->value = new (zone()) Variable( in Declare() 54 return reinterpret_cast<Variable*>(p->value); in Declare() 58 Variable* VariableMap::Lookup(const AstRawString* name) { in Lookup() [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/deqp/data/gles31/shaders/ |
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 …]
|
D | linkage_shader_storage_block.test | 92 mediump vec2 variable; 98 vtx_val = variable.y; 108 mediump float variable; 114 ${FRAG_COLOR} = vec4(vtx_val + variable); 168 mediump float variable[]; 174 vtx_val = variable[0]; 184 mediump float variable[1]; 190 ${FRAG_COLOR} = vec4(vtx_val + variable[0]); 206 mediump float variable[1]; 212 vtx_val = variable[0]; [all …]
|
/external/chromium-trace/catapult/telemetry/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/webrtc/webrtc/build/ |
D | isolate.gypi | 13 # conditional inclusion or variable expansion in include paths. 18 # * Removed passing of version_full variable created in version.gypi: 19 # '--extra-variable', 'version_full=<(version_full)', 81 '--path-variable', 'DEPTH', '<(DEPTH)', 82 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ', 86 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', 87 '--config-variable', 'OS=<(OS)', 88 '--config-variable', 'asan=<(asan)', 89 '--config-variable', 'branding=<(branding)', 90 '--config-variable', 'chromeos=<(chromeos)', [all …]
|
/external/clang/test/SemaCXX/ |
D | uninitialized.cpp | 24 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initial… 25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own ini… 26 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used wit… 27 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initia… 37 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own i… 38 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its… 39 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initializ… 40 int o = std::move(o); // expected-warning {{variable 'o' is uninitialized when used within its own … 41 const int p = std::move(p); // expected-warning {{variable 'p' is uninitialized when used within it… 42 int q = moved(std::move(q)); // expected-warning {{variable 'q' is uninitialized when used within i… [all …]
|
/external/bison/src/ |
D | muscle-tab.h | 106 /* Indicates whether a variable's value was specified with -D/--define, with 113 /* Define the muscles for %define variable VARIABLE with VALUE specified 115 grammar file while the previous definition for VARIABLE was specified 120 this as a user occurrence of VARIABLE by invoking 122 void muscle_percent_define_insert (char const *variable, location variable_loc, 127 %define variable VARIABLE is defined, return its value. Otherwise, return 128 the empty string. Also, record Bison's usage of VARIABLE by defining 129 b4_percent_define_bison_variables(VARIABLE). The caller is responsible for 131 char *muscle_percent_define_get (char const *variable); 134 if the %define variable VARIABLE is undefined, complain fatally since that's [all …]
|
/external/webrtc/talk/build/ |
D | isolate.gypi | 31 # conditional inclusion or variable expansion in include paths. 36 # * Removed passing of version_full variable created in version.gypi: 37 # '--extra-variable', 'version_full=<(version_full)', 99 '--path-variable', 'DEPTH', '<(DEPTH)', 100 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ', 104 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)', 105 '--config-variable', 'OS=<(OS)', 106 '--config-variable', 'asan=<(asan)', 107 '--config-variable', 'branding=<(branding)', 108 '--config-variable', 'chromeos=<(chromeos)', [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | DataContext.java | 22 * Manages the global Data object and local variable mappings during rendering. 32 * Creates a new Data object to hold local references, pushes it onto the variable map stack. This 39 * Removes the most recent Data object added to the local variable map stack. 44 * Creates and sets a local variable in the current scope equal to the given value. 46 * @param name the name of the local variable to fetch or create. 47 * @param value The String value to store at the local variable. 52 * Creates and sets a local variable in the current scope equal to the given value. Also set the 54 * whether to autoescape the variable. 56 * @param name the name of the local variable to fetch or create. 57 * @param value The String value to store at the local variable. [all …]
|
/external/clang/test/Analysis/ |
D | stack-addr-ps.cpp | 7 …mory associated with local variable 's' returned}} expected-warning{{reference to stack memory ass… in g() 12 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} in g2() 13 …ory associated with local variable 's1' returned}} expected-warning {{reference to stack memory as… in g2() 18 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} in g3() 19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}} in g3() 20 …ory associated with local variable 's1' returned}} expected-warning {{reference to stack memory as… in g3() 32 const int &x = get_value(); // expected-note {{binding reference variable 'x' here}} in get_reference2() 37 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} in get_reference3() 38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in get_reference3() 50 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in f2() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
D | jsilver.sablecc | 64 args, // Args to command: "some.variable=3 ?>" 222 | {set} cs_open set command_delimiter variable assignment expression cs_close 226 variable.variable, 229 | {name} cs_open name command_delimiter variable cs_close 233 variable.variable)} 253 | {with} cs_open with command_delimiter variable assignment expression cs_close 259 variable.variable, 263 | {loop_to} cs_open loop command_delimiter variable assignment expression cs_close 269 variable.variable, 273 | {loop} cs_open loop command_delimiter variable assignment [all …]
|
/external/libxml2/ |
D | libxml2.syms | 226 xmlStringComment; # variable 229 xmlStringText; # variable 230 xmlStringTextNoenc; # variable 499 xmlXPathNAN; # variable 500 xmlXPathNINF; # variable 504 xmlXPathPINF; # variable 734 xmlGetWarningsDefaultValue; # variable 821 docbDefaultSAXHandler; # variable 822 htmlDefaultSAXHandler; # variable 823 xmlDefaultSAXHandler; # variable [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | VariableStack.java | 45 * Constructor for a variable stack. 53 * Constructor for a variable stack. 64 * Returns a clone of this variable stack. 66 * @return a clone of this variable stack. 153 * @param varArraySize Initial variable array size to use 207 * @return The bottom of the stack frame, from where local variable addressing 262 * Set a local variable or parameter in the current stack frame. 265 * @param index Local variable index relative to the current stack 268 * @param val The value of the variable that is being set. 276 * Set a local variable or parameter in the specified stack frame. [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemVariable.java | 36 * Implement xsl:variable. 38 * <!ELEMENT xsl:variable %template;> 39 * <!ATTLIST xsl:variable 63 * The stack frame size for this variable if it is a global variable 65 * of variables that can be declared in the variable at one time. 71 * Sets the relative position of this variable within the stack frame (if local) 82 * variable into the stack frame. If this variable is at the top-level, get 98 * If the variable-binding element has a select attribute, 100 * the value of the variable is the object that results from 102 * of the variable must be empty. [all …]
|