| /external/chromium_org/third_party/libjingle/source/talk/build/ |
| common.gypi | 44 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-6-sun\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")', 89 '-Wunused-variable',
|
| /external/lldb/test/lang/c/array_types/ |
| TestArrayTypes.py | 16 """Test 'frame variable var_name' on some variables with array types.""" 30 """Test 'frame variable var_name' on some variables with array types.""" 48 """Test 'frame variable var_name' on some variables with array types.""" 72 # Issue 'variable list' command on several array-type variables. 74 self.expect("frame variable --show-types strings", VARIABLES_DISPLAYED_CORRECTLY, 85 self.expect("frame variable --show-types --raw -- char_16", VARIABLES_DISPLAYED_CORRECTLY, 89 self.expect("frame variable --show-types ushort_matrix", VARIABLES_DISPLAYED_CORRECTLY, 92 self.expect("frame variable --show-types long_6", VARIABLES_DISPLAYED_CORRECTLY, 154 # Lookup the "strings" string array variable and sanity check its print 156 variable = frame.FindVariable("strings" [all...] |
| /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
| p10.cpp | 19 int variable; // expected-note {{declared here}} local 20 (void)[&Overload] () {}; // expected-error {{does not name a variable}} 23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}} 33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
|
| /external/deqp/framework/randomshaders/ |
| 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; } 55 const Variable* m_variable; 59 // Variable scope manages variable allocation. 66 Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name) [all...] |
| rsgShaderGenerator.cpp | 65 void createAssignment (BlockStatement& block, const Variable* dstVar, const Variable* srcVar) 101 const Variable* outVar = entry->getVariable(); 104 if (outVar->getStorage() != Variable::STORAGE_SHADER_OUT) 114 Variable* inVar = state.getVariableManager().allocate(outVar->getType(), Variable::STORAGE_SHADER_IN, inVarName.c_str()); 130 Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->getType(), Variable::STORAGE_SHADER_IN, "v_color"); 197 Variable* variable = m_state.getVariableManager().allocate(input->getVariable()->getType(), Variable::STORAGE_SHADER_ (…) local 231 Variable* variable = *i; local 277 Variable* variable = *i; local [all...] |
| rsgShader.cpp | 58 ShaderInput::ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange) 59 : m_variable (variable) 60 , m_min (variable->getType().getScalarSize()) 61 , m_max (variable->getType().getScalarSize()) 63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value(); 64 ValueAccess(variable->getType(), &m_max[0]) = valueRange.getMax().value(); 81 void Shader::getOutputs (vector<const Variable*>& outputs) const 84 const vector<Variable*>& globalVars = m_globalScope.getDeclaredVariables(); 85 for (vector<Variable*>::const_iterator i = globalVars.begin(); i != globalVars.end(); i++ [all...] |
| /external/chromium_org/third_party/angle/src/common/ |
| debug.h | 80 #define UNUSED_ASSERTION_VARIABLE(variable) 83 #define UNUSED_ASSERTION_VARIABLE(variable) ((void)variable) 87 #define UNUSED_TRACE_VARIABLE(variable) ((void)variable) 89 #define UNUSED_TRACE_VARIABLE(variable)
|
| blocklayout.cpp | 210 void HLSLVariableRegisterCount(const ShaderVarType &variable, HLSLBlockEncoder *encoder) 212 if (variable.isStruct()) 214 for (size_t arrayElement = 0; arrayElement < variable.elementCount(); arrayElement++) 218 for (size_t fieldIndex = 0; fieldIndex < variable.fields.size(); fieldIndex++) 220 HLSLVariableRegisterCount(variable.fields[fieldIndex], encoder); 229 encoder->encodeType(variable.type, variable.arraySize, false); 233 unsigned int HLSLVariableRegisterCount(const Varying &variable) 236 HLSLVariableRegisterCount(variable, &encoder); 242 unsigned int HLSLVariableRegisterCount(const Uniform &variable, ShShaderOutput outputType [all...] |
| /external/chromium_org/v8/test/mjsunit/harmony/ |
| block-scoping.js | 144 // Variable shadowing and lookup. 174 // catch variable shadowing argument 178 // let variable shadowing catch variable 185 // catch variable shadowing let variable 196 // catch variable shadowing var variable 199 // const variable shadowing catch variable [all...] |
| /external/chromium_org/content/shell/tools/plugin/Tests/ |
| NPDeallocateCalledBeforeNPShutdown.cpp | 84 virtual NPError NPP_GetValue(NPPVariable variable, void *value) OVERRIDE 86 if (variable != NPPVpluginScriptableNPObject)
|
| NPRuntimeObjectFromDestroyedPlugin.cpp | 80 virtual NPError NPP_GetValue(NPPVariable variable, void *value) OVERRIDE 82 if (variable != NPPVpluginScriptableNPObject)
|
| PluginScriptableObjectOverridesAllProperties.cpp | 75 virtual NPError NPP_GetValue(NPPVariable variable, void *value) OVERRIDE 77 if (variable != NPPVpluginScriptableNPObject)
|
| SlowNPPNew.cpp | 74 virtual NPError NPP_GetValue(NPPVariable variable, void *value) 76 if (variable != NPPVpluginScriptableNPObject)
|
| /external/clang/ |
| clang.mk | 2 $(error Must set variable CLANG_ROOT_PATH before including this! $(LOCAL_PATH))
|
| /external/chromium_org/third_party/WebKit/Source/wtf/ |
| Alignment.h | 32 #define WTF_ALIGNED(variable_type, variable, n) variable_type variable __attribute__((__aligned__(n))) 35 #define WTF_ALIGNED(variable_type, variable, n) __declspec(align(n)) variable_type variable
|
| /external/chromium_org/tools/gyp/pylib/gyp/ |
| ninja_syntax.py | 30 def variable(self, key, value, indent=0): member in class:Writer 39 self.variable('depth', depth, indent=1) 45 self.variable('command', command, indent=1) 47 self.variable('description', description, indent=1) 49 self.variable('depfile', depfile, indent=1) 51 self.variable('generator', '1', indent=1) 53 self.variable('pool', pool, indent=1) 55 self.variable('restat', '1', indent=1) 57 self.variable('rspfile', rspfile, indent=1) 59 self.variable('rspfile_content', rspfile_content, indent=1 [all...] |
| /external/lldb/source/Expression/ |
| ClangPersistentVariables.cpp | 50 ClangPersistentVariables::RemovePersistentVariable (lldb::ClangExpressionVariableSP variable) 52 RemoveVariable(variable); 54 const char *name = variable->GetName().AsCString();
|
| /external/chromium_org/tools/telemetry/telemetry/util/ |
| exception_formatter.py | 73 local_variables = [(variable, value) for variable, value in 74 frame.f_locals.iteritems() if variable != 'self'] 79 for variable, value in sorted(local_variables): 85 print >> sys.stderr, ' %s: %s%s' % (variable.ljust(longest_variable + 1),
|
| /external/chromium_org/third_party/angle/src/compiler/translator/ |
| util.cpp | 289 VarT variable; local 290 variable.name = name.c_str(); 291 variable.arraySize = static_cast<unsigned int>(type.getArraySize()); 295 variable.type = GLVariableType(type); 296 variable.precision = GLVariablePrecision(type); 301 variable.type = GL_STRUCT_ANGLEX; 302 variable.structName = structure->name().c_str(); 309 traverse(*field->type(), field->name(), &variable.fields); 313 visitVariable(&variable); 316 output->push_back(variable); [all...] |
| /external/chromium_org/v8/src/compiler/ |
| ast-graph-builder.h | 78 Node* BuildArgumentsObject(Variable* arguments); 80 // Builders for variable load and assignment. 81 Node* BuildVariableAssignment(Variable* var, Node* value, Token::Value op, 83 Node* BuildVariableDelete(Variable* var); 84 Node* BuildVariableLoad(Variable* var, BailoutId bailout_id, 97 Node* BuildThrowReferenceError(Variable* var); 101 Node* BuildHoleCheckThrow(Node* value, Variable* var, Node* not_hole); 209 void Bind(Variable* variable, Node* node) { 210 DCHECK(variable->IsStackAllocated()) [all...] |
| /external/clang/test/CXX/temp/temp.spec/ |
| cxx1y-variable-template-no-body.cpp | 13 template double pi_var0; // expected-error {{explicit instantiation of 'pi_var0' does not refer to a function template, variable template, member function, member class, or static data member}} 17 template double pi_var = 5; // expected-error {{variable cannot be defined in an explicit instantiation; if this declaration is meant to be a variable definition, remove the 'template' keyword}} 22 template int pi0 = 10; // expected-error {{variable cannot be defined in an explicit instantiation; if this declaration is meant to be a variable definition, remove the 'template' keyword}} \ 33 template<> double pi1<double> = 1.5; // expected-error {{variable template specialization of 'pi1' must originally be declared in the global scope}} 35 expected-error {{variable template specialization of 'pi1' must originally be declared in the global scope}}
|
| /external/clang/test/PCH/ |
| pragma-diag-section.cpp | 29 T b = a; // expected-warning {{variable 'a' is uninitialized}} \ 31 expected-note@28 {{initialize the variable 'a' to silence}}
|
| /external/clang/test/SemaCXX/ |
| err_init_conversion_failed.cpp | 4 char variable = (void)0; local 5 // expected-error@-1{{cannot initialize a variable}}
|
| /external/lldb/include/lldb/Expression/ |
| ClangPersistentVariables.h | 51 /// A string that contains the next persistent variable name. 57 RemovePersistentVariable (lldb::ClangExpressionVariableSP variable);
|
| /external/chromium_org/build/linux/ |
| pkg-config-wrapper | 15 # the PKG_CONFIG_PATH environment variable- these will be prepended to the 56 # pkg-config's |prefix| variable. 57 prefix=`PKG_CONFIG_PATH=$config_path pkg-config --variable=prefix "$package" | sed -e 's|/usr$||'`
|