/build/soong/androidmk/parser/ |
ast.go | 86 type Variable struct { 90 func (x *Variable) Pos() Pos { return x.Name.Pos() } 91 func (x *Variable) End() Pos { return x.Name.End() } 93 func (x *Variable) Dump() string {
|
scope.go | 61 func (v Variable) EvalFunction(scope Scope) (string, bool) { 83 func (v Variable) Value(scope Scope) string { 90 func toVariable(ms *MakeString) (Variable, bool) { 94 return Variable{}, false
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
XPathVisitor.java | 30 import org.apache.xpath.operations.Variable; 129 * Visit a variable reference. 132 * @param var The variable reference object. 135 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
|
/external/deqp/framework/randomshaders/ |
rsgFunctionGenerator.cpp | 66 for (vector<Variable*>::iterator i = m_requiredAssignments.begin(); i != m_requiredAssignments.end(); i++) 68 Variable* variable = *i; local 69 const ValueEntry* entry = m_state.getVariableManager().getValue(variable); 70 ValueRange valueRange(variable->getType()); 76 m_state.getVariableManager().removeValueFromCurrentScope(variable); 79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange.asAccess()));
|
rsgStatement.cpp | 229 inline bool canDeclareVariable (const Variable* variable) 231 return variable->getStorage() == Variable::STORAGE_LOCAL; 236 const vector<Variable*>& liveVars = varMgr.getLiveVariables(); 237 for (vector<Variable*>::const_iterator i = liveVars.begin(); i != liveVars.end(); i++) 247 DeclarationStatement::DeclarationStatement (GeneratorState& state, Variable* variable) 251 if (variable == DE_NULL) 256 const vector<Variable*>& liveVars = state.getVariableManager().getLiveVariables() [all...] |
/external/skia/src/sksl/ir/ |
SkSLInterfaceBlock.h | 25 * At the IR level, this is represented by a single variable of struct type. 28 InterfaceBlock(Position position, const Variable* var, String typeName, String instanceName, 61 const Variable& fVariable;
|
SkSLVarDeclarations.h | 19 * A single variable declaration within a var declaration statement. For instance, the statement 24 VarDeclaration(const Variable* var, 47 const Variable* fVar; 55 * A variable declaration statement, which may consist of one or more individual variables.
|
SkSLExpression.h | 21 typedef std::unordered_map<const Variable*, std::unique_ptr<Expression>*> DefinitionMap; 77 * Given a map of known constant variable values, substitute them in for references to those
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug475.go | 7 // Variable in enclosing function with same name as field in struct
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug475.go | 7 // Variable in enclosing function with same name as field in struct
|
/system/update_engine/update_manager/ |
real_random_provider.cc | 28 #include "update_engine/update_manager/variable.h" 41 // A random seed variable. 42 class RandomSeedVariable : public Variable<uint64_t> { 48 : Variable<uint64_t>(name, kVariableModeConst), fp_(fp) {}
|
variable.h | 33 // The VariableMode specifies important behavior of the variable in terms of 34 // whether, how and when the value of the variable changes. 41 // Poll variables, or synchronous variables, represent a variable with a value 44 // the variable changes, it has to be queried again. 55 // depend on the variable's type, implemented by all the variables. 58 // Interface for observing changes on variable value. 63 // Called when the value on the variable changes. 64 virtual void ValueChanged(BaseVariable* variable) = 0; 69 LOG(WARNING) << "Variable " << name_ << " deleted with " 72 DCHECK(observer_list_.empty()) << "Don't destroy the variable without [all...] |
evaluation_context-inl.h | 27 const T* EvaluationContext::GetValue(Variable<T>* var) { 29 LOG(ERROR) << "GetValue received an uninitialized variable."; 38 // Get the value from the variable if not found on the cache. 43 LOG(WARNING) << "Error reading Variable " << var->GetName() << ": \""
|
/external/swiftshader/third_party/subzero/src/ |
IceInstX86BaseImpl.h | 53 Variable *Beacon) 61 InstImpl<TraitsType>::InstX86GetIP::InstX86GetIP(Cfg *Func, Variable *Dest) 65 InstImpl<TraitsType>::InstX86Mul::InstX86Mul(Cfg *Func, Variable *Dest, 66 Variable *Source1, 74 InstImpl<TraitsType>::InstX86Shld::InstX86Shld(Cfg *Func, Variable *Dest, 75 Variable *Source1, 84 InstImpl<TraitsType>::InstX86Shrd::InstX86Shrd(Cfg *Func, Variable *Dest, 85 Variable *Source1, 176 InstImpl<TraitsType>::InstX86Call::InstX86Call(Cfg *Func, Variable *Dest, 184 InstImpl<TraitsType>::InstX86Movmsk::InstX86Movmsk(Cfg *Func, Variable *Dest [all...] |
IceLiveness.cpp | 17 /// to Variable::Number, we create a mapping such that global variables are 36 // added since starting phi lowering, and FirstVar points to the first Variable 50 Variable *Var = *I; 78 // Sort each variable into the appropriate LiveToVarMap. Set VarToLiveMap. 79 // Set RangeMask correctly for each variable. 82 Variable *Var = *I; 102 Variable *Var = *I; 135 Variable *Liveness::getVariable(SizeT LiveIndex, const CfgNode *Node) const {
|
IceTargetLowering.cpp | 116 // Since isVarAssign() is true, the source operand must be a Variable. 118 LastSrc = llvm::cast<Variable>(Instr->getSrc(0)); 121 Variable *LoweringContext::availabilityGet(Operand *Src) const { 409 // Dest variable will likely get marked as non-SSA. See 410 // Variable::setDefinition(). However, just pass-through FakeDef and 524 CfgSet<Variable *> EmptySet; 582 CfgSet<Variable *> SplitCandidates; 587 for (Variable *Var : Func->getVariables()) { 596 CfgSet<Variable *> ExtraVars; 599 Variable *Replacing = nullptr [all...] |
/external/v8/src/ast/ |
scopes.cc | 27 bool IsLexical(Variable* variable) { 28 if (variable == kDummyPreParserLexicalVariable) return true; 29 if (variable == kDummyPreParserVariable) return false; 30 return IsLexicalVariableMode(variable->mode()); 39 // When inserting a new variable via Declare(), we rely on the fact that 40 // the handle location remains alive for the duration of that variable 41 // use. Because a Variable holding a handle with the same location exists 47 Variable* VariableMap::Declare(Zone* zone, Scope* scope, 61 // The variable has not been declared yet -> insert it 283 Variable* variable = Declare(zone, catch_variable_name, VAR); local [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
Parser.py | 395 for Variable in VariableList:
396 Variable = Variable.strip()
397 # Get index of the variable
398 if Variable.find('[') > -1:
399 Index = int(Variable[Variable.find('[') + 1 : Variable.find(']')])
400 Variable = Variable[:Variable.find('[')] [all...] |
/external/v8/src/ic/ |
accessor-assembler.h | 44 Label* if_handler, Variable* var_handler, 108 Label* if_handler, Variable* var_handler, 111 Label* if_handler, Variable* var_handler, 114 Label* if_handler, Variable* var_handler, 116 Variable* var_transition_map_cell, 131 Variable* var_holder, 132 Variable* var_smi_handler, 192 Label* rebox_double, Variable* var_double_value, 209 Label* if_handler, Variable* var_handler, 214 // tailcalls and Return, while indirect exits store the result in a variable [all...] |
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
test_variables.py | 3 from Tkinter import (Variable, StringVar, IntVar, DoubleVar, BooleanVar, Tcl, 22 v = Variable(self.root) 27 v = Variable(self.root, "sample string", "varname") 33 v = Variable(self.root, "sample string", "varname") 40 v1 = Variable(self.root, name="name") 41 v2 = Variable(self.root, name="name") 50 v1 = Variable(self.root, name="abc") 51 v2 = Variable(self.root, name="abc") 54 v3 = Variable(self.root, name="abc") 60 Variable(self.root, name=123 [all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/ |
EdkIIGluePeim.h | 86 #include EFI_PPI_DEFINITION (Variable)
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
VariableSafeAbsRef.java | 31 * This is a "smart" variable reference that is used in situations where 32 * an absolute path is optimized into a variable reference, but may 38 * to make sure the document context of the referenced variable is the same as 39 * the current document context, and, if it is not, execute the referenced variable's 42 public class VariableSafeAbsRef extends Variable 47 * Dereference the variable, and return the reference value. Note that lazy 48 * evaluation will occur. If a variable within scope is not found, a warning 54 * @return The evaluated variable, or an empty nodeset if not found.
|
/external/deqp/modules/glshared/ |
glsRandomShaderProgram.cpp | 103 static const rsg::Variable* findShaderOutputByName (const rsg::Shader& shader, const char* name) 105 vector<const rsg::Variable*> outputs; 108 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); ++iter) 117 static const rsg::Variable* findShaderOutputByLocation (const rsg::Shader& shader, int location) 119 vector<const rsg::Variable*> outputs; 122 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); iter++) 148 const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()->getName()); 161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable(); 183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable(); 224 const rsg::Variable* var = m_vertexOutputs[varNdx] [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/ |
EmuVariableRuntimeDxe.inf | 2 # Emulation Variable for EFI_RUNTIME_SERVICES.
4 # This module installs variable arch protocol and variable write arch protocol to provide
37 Variable.h
63 ## SOMETIMES_CONSUMES ## Variable:L"PlatformLang"
64 ## SOMETIMES_PRODUCES ## Variable:L"PlatformLang"
65 ## SOMETIMES_CONSUMES ## Variable:L"Lang"
66 ## SOMETIMES_PRODUCES ## Variable:L"Lang"
68 ## PRODUCES ## GUID # Signature of Variable store header
69 ## CONSUMES ## GUID # Signature of Variable store header [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
HasPositionalPredChecker.java | 36 import org.apache.xpath.operations.Variable; 73 // * Visit a variable reference. 76 // * @param var The variable reference object. 79 // public boolean visitVariableRef(ExpressionOwner owner, Variable var) 101 if((pred instanceof Variable) ||
|