/external/chromium_org/third_party/angle/src/compiler/translator/ |
ParseContext.cpp | 566 // This function checks to see if a void variable has been declared and raise an error message for such a case 655 error(line, "location must only be specified for a single input or output variable", "location"); 788 bool TParseContext::arrayErrorCheck(const TSourceLoc& line, const TString& identifier, const TPublicType &type, TVariable*& variable) 802 variable = new TVariable(&identifier, TType(type)); 805 variable->getType().setArraySize(type.arraySize); 807 if (! symbolTable.declare(variable)) { 808 delete variable; 814 error(line, "variable expected", identifier.c_str()); 818 variable = static_cast<TVariable*>(symbol); 819 if (! variable->getType().isArray()) 1025 const TVariable *variable = NULL; local 1277 TVariable* variable = 0; local 1319 TVariable* variable = 0; local 1372 const TVariable *variable = getNamedVariable(identifierLoc, identifier, symbol); local 1398 TVariable* variable = 0; local 1429 TVariable* variable = NULL; local 1441 TVariable* variable = NULL; local [all...] |
glslang_lex.cpp | 13 #pragma GCC diagnostic ignored "-Wunused-variable" 211 * access to the local variable yy_act. Since yyless() is a macro, it would break 215 * normally declared as a register variable-- so it is not worth it. 3206 TVariable* variable = static_cast<TVariable*>(symbol); local [all...] |
glslang_tab.cpp | 78 #pragma GCC diagnostic ignored "-Wunused-variable" 462 /* Suppress unused-variable warnings by "using" E. */ 4924 TVariable *variable = new TVariable(param.name, *param.type); local [all...] |
/external/chromium_org/v8/src/ |
scopes.cc | 22 // When inserting a new variable via Declare(), we rely on the fact that 23 // the handle location remains alive for the duration of that variable 24 // use. Because a Variable holding a handle with the same location exists 33 Variable* VariableMap::Declare(Scope* scope, const AstRawString* name, 35 Variable::Kind kind, 45 // The variable has not been declared yet -> insert it. 48 Variable(scope, name, mode, is_valid_lhs, kind, initialization_flag, 51 return reinterpret_cast<Variable*>(p->value); 55 Variable* VariableMap::Lookup(const AstRawString* name) { 61 return reinterpret_cast<Variable*>(p->value) 139 Variable* variable = variables_.Declare(this, local [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
TemplateInterpreter.java | 209 Data variable = dataContext.findVariable(variableName, true); local 211 variable.setValue(value.asString()); 213 // "set" was used to set a variable to a constant or escaped value like 216 variable.setEscapeMode(value.getEscapeMode()); 225 * <?cs name:blah > command. Writes out the name of the original variable referred to by a 232 Data variable = dataContext.findVariable(variableName, false); local 233 if (variable != null) { 234 context.writeEscaped(variable.getSymlink().getName()); 299 // With refers to a non-existent variable. Do nothing. 467 * <?cs call:someMacro(x,y) command. Call a macro. Need to create a new variable scope to hol [all...] |
/external/chromium_org/third_party/libxslt/libxslt/ |
transform.c | 174 * Pops all variable values at the given @depth from the stack. 176 * Returns the stored variable value 183 xsltStackElemPtr variable; local 191 variable = ctxt->varsTab[ctxt->varsNr - 1]; 192 if (variable->level <= level) 194 if (variable->level >= 0) 195 xsltFreeStackElemList(variable); 208 * variable-stack. Only xsl:with-param items are not freed. [all...] |
/external/chromium_org/v8/src/compiler/ |
ast-graph-builder.cc | 116 // Left-hand side can only be a property, a global or a variable slot. 117 enum LhsKind { VARIABLE, NAMED_PROPERTY, KEYED_PROPERTY }; 125 (property == NULL) ? VARIABLE : (property->key()->IsPropertyName()) 169 // Bind the receiver variable. 355 Variable* variable = decl->proxy()->var(); local 358 switch (variable->location()) { 359 case Variable::UNALLOCATED: { 360 Handle<Oddball> value = variable->binding_needs_init() 363 globals()->Add(variable->name(), zone()) 388 Variable* variable = decl->proxy()->var(); local 1089 Variable* variable = expr->target()->AsVariableProxy()->var(); local 1124 Variable* variable = expr->target()->AsVariableProxy()->var(); local 1202 Variable* variable = callee->AsVariableProxy()->var(); local 1208 Variable* variable = callee->AsVariableProxy()->var(); local 1389 Variable* variable = expr->expression()->AsVariableProxy()->var(); local 1432 Variable* variable = expr->expression()->AsVariableProxy()->var(); local 1586 Variable* variable = expr->expression()->AsVariableProxy()->var(); local 1616 Variable* variable = expr->expression()->AsVariableProxy()->var(); local 1693 Variable* variable = info()->scope()->parameter(i); local [all...] |
/external/clang/lib/CodeGen/ |
CGBlocks.cpp | 271 // We can only do this if the variable is const. 282 // If the variable doesn't have any initializer (shouldn't this be 374 const VarDecl *variable = CI.getVariable(); local 395 if (llvm::Constant *constant = tryCaptureAsConstant(CGM, CGF, variable)) { 396 info.Captures[variable] = CGBlockInfo::Capture::makeConstant(constant); 403 variable->getType().getObjCLifetime(); 417 } else if (variable->getType()->isObjCRetainableType()) { 430 variable->getType()->getAsCXXRecordDecl()) { 438 QualType VT = variable->getType(); 440 CharUnits align = C.getDeclAlign(variable); 588 const VarDecl *variable = CI.getVariable(); local 742 const VarDecl *variable = CI.getVariable(); local 1175 const VarDecl *variable = CI.getVariable(); local 1217 const VarDecl *variable = CI.getVariable(); local 1327 const VarDecl *variable = CI.getVariable(); local 1496 const VarDecl *variable = CI.getVariable(); local [all...] |
CGClass.cpp | 440 // If we have an array index variable, load it and use it as an offset. 481 assert(IndexVar && "Array index variable not loaded"); 483 // Initialize this index variable to zero. 656 // call necessarily creates a second copy of the parameter variable. 2129 const VarDecl *variable = BD->capture_begin()->getVariable(); local [all...] |
CGObjC.cpp | 39 /// Given the address of a variable of pointer type, find the correct 254 // receiver is loaded from a variable with precise lifetime. 1435 AutoVarEmission variable = AutoVarEmission::invalid(); local [all...] |
CGDebugInfo.cpp | 831 // has the name and the location of the variable so we should iterate over 2994 const VarDecl *variable = capture.getVariable(); local 3027 const VarDecl *variable = capture->getVariable(); local [all...] |
/external/deqp/framework/randomshaders/ |
rsgExpression.cpp | 51 if ((m_exprFlags & CONST_EXPR) && (entry->getVariable()->getStorage() != Variable::STORAGE_CONST)) 147 DE_ASSERT(entry->getVariable()->getStorage() == Variable::STORAGE_UNIFORM); 889 return 0.0f; // Would require creating a new variable 912 // - variable valuerange is made unbound 958 Variable* allocateNewVariable (GeneratorState& state, ConstValueRangeAccess valueRange) 960 Variable* variable = state.getVariableManager().allocate(valueRange.getType()); local 963 state.getVariableManager().setValue(variable, valueRange); 966 static const Variable::Storage storages[] = 968 Variable::STORAGE_CONST [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar | |
org.eclipse.core.expressions_3.4.200.v20100505.jar | |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCParser.java | 150 // SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) ); 172 // SimpleC.g:21:5: ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) ) 177 // SimpleC.g:21:9: variable 182 variable2=variable(); 303 // $ANTLR start "variable" 304 // SimpleC.g:26:1: variable : type declarator ';' -> ^( VAR_DEF type declarator ) ; 305 public final SimpleCParser.variable_return variable() throws RecognitionException { method in class:SimpleCParser 387 // $ANTLR end "variable" 749 // SimpleC.g:50:1: block : lc= '{' ( variable )* ( stat )* '}' -> ^( BLOCK[$lc,@\"BLOCK\"] ( variable )* ( stat )* ) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCParser.java | 150 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:20:1: declaration : ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) ); 172 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:21:5: ( variable | functionHeader ';' -> ^( FUNC_DECL functionHeader ) | functionHeader block -> ^( FUNC_DEF functionHeader block ) ) 177 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:21:9: variable 182 variable2=variable(); 303 // $ANTLR start "variable" 304 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:26:1: variable : type declarator ';' -> ^( VAR_DEF type declarator ) ; 305 public final SimpleCParser.variable_return variable() throws RecognitionException { method in class:SimpleCParser 387 // $ANTLR end "variable" 749 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleC.g:50:1: block : lc= '{' ( variable )* ( stat )* '}' -> ^( BLOCK[$lc,@\"BLOCK\"] ( variable )* ( stat )* ) [all...] |
/external/lldb/tools/debugserver/source/ |
RNBRemote.cpp | 181 t.push_back (Packet (set_environment_variable, &RNBRemote::HandlePacket_QEnvironment , NULL, "QEnvironment:", "Add an environment variable to the inferior's environment")); 182 t.push_back (Packet (set_environment_variable_hex, &RNBRemote::HandlePacket_QEnvironmentHexEncoded , NULL, "QEnvironmentHexEncoded:", "Add an environment variable to the inferior's environment")); 1582 std::string variable = get_identifier (line); local [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
TransformerImpl.java | 145 // * Use member variable to store param variables as they're 146 // * being created, use member variable so we don't 1392 ElemVariable variable = (ElemVariable)vars.elementAt(i); local [all...] |
/external/chromium_org/v8/src/arm/ |
full-codegen-arm.cc | 219 Variable* var = scope()->parameter(i); 243 Variable* arguments = scope()->arguments(); 298 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 476 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 481 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 487 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 494 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 719 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 733 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 745 void FullCodeGenerator::GetVar(Register dest, Variable* var) 818 Variable* variable = proxy->var(); local 878 Variable* variable = proxy->var(); local 932 Variable* variable = declaration->proxy()->var(); local 964 Variable* variable = proxy->var(); local [all...] |
/external/chromium_org/v8/src/arm64/ |
full-codegen-arm64.cc | 220 Variable* var = scope()->parameter(i); 244 Variable* arguments = scope()->arguments(); 297 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 463 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 468 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 474 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 481 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 713 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 726 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 738 void FullCodeGenerator::GetVar(Register dest, Variable* var) 812 Variable* variable = proxy->var(); local 873 Variable* variable = proxy->var(); local 927 Variable* variable = declaration->proxy()->var(); local 959 Variable* variable = proxy->var(); local [all...] |
/external/chromium_org/v8/src/ia32/ |
full-codegen-ia32.cc | 213 Variable* var = scope()->parameter(i); 239 Variable* arguments = scope()->arguments(); 292 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 427 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 432 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 438 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 446 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 664 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 678 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 690 void FullCodeGenerator::GetVar(Register dest, Variable* var) 758 Variable* variable = proxy->var(); local 816 Variable* variable = proxy->var(); local 867 Variable* variable = declaration->proxy()->var(); local 898 Variable* variable = proxy->var(); local [all...] |
/external/chromium_org/v8/src/mips/ |
full-codegen-mips.cc | 228 Variable* var = scope()->parameter(i); 252 Variable* arguments = scope()->arguments(); 307 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 463 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 468 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 474 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 481 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 710 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 724 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 736 void FullCodeGenerator::GetVar(Register dest, Variable* var) 809 Variable* variable = proxy->var(); local 870 Variable* variable = proxy->var(); local 924 Variable* variable = declaration->proxy()->var(); local 956 Variable* variable = proxy->var(); local [all...] |
/external/chromium_org/v8/src/mips64/ |
full-codegen-mips64.cc | 225 Variable* var = scope()->parameter(i); 248 Variable* arguments = scope()->arguments(); 302 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 459 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 464 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 470 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 477 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 706 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 720 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 732 void FullCodeGenerator::GetVar(Register dest, Variable* var) 805 Variable* variable = proxy->var(); local 866 Variable* variable = proxy->var(); local 920 Variable* variable = declaration->proxy()->var(); local 951 Variable* variable = proxy->var(); local [all...] |
/external/chromium_org/v8/src/x64/ |
full-codegen-x64.cc | 212 Variable* var = scope()->parameter(i); 236 Variable* arguments = scope()->arguments(); 290 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 440 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 445 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 451 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 458 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 685 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 700 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 712 void FullCodeGenerator::GetVar(Register dest, Variable* var) 779 Variable* variable = proxy->var(); local 838 Variable* variable = proxy->var(); local 890 Variable* variable = declaration->proxy()->var(); local 921 Variable* variable = proxy->var(); local [all...] |
/external/chromium_org/v8/src/x87/ |
full-codegen-x87.cc | 213 Variable* var = scope()->parameter(i); 236 Variable* arguments = scope()->arguments(); 289 DCHECK(function->proxy()->var()->location() != Variable::UNALLOCATED); 424 void FullCodeGenerator::EffectContext::Plug(Variable* var) const { 429 void FullCodeGenerator::AccumulatorValueContext::Plug(Variable* var) const { 435 void FullCodeGenerator::StackValueContext::Plug(Variable* var) const { 443 void FullCodeGenerator::TestContext::Plug(Variable* var) const { 661 MemOperand FullCodeGenerator::StackOperand(Variable* var) { 675 MemOperand FullCodeGenerator::VarOperand(Variable* var, Register scratch) { 687 void FullCodeGenerator::GetVar(Register dest, Variable* var) 755 Variable* variable = proxy->var(); local 813 Variable* variable = proxy->var(); local 860 Variable* variable = declaration->proxy()->var(); local 887 Variable* variable = proxy->var(); local [all...] |