/external/chromium_org/third_party/angle/src/compiler/translator/ |
OutputGLSLBase.cpp | 633 // Variable declaration. 637 const TIntermTyped *variable = sequence.front()->getAsTyped(); local 638 writeVariableType(variable->getType());
|
VariableInfo.cpp | 41 void ExpandUserDefinedVariable(const ShaderVariable &variable, 47 void ExpandVariable(const ShaderVariable &variable, 53 if (variable.isStruct()) 55 if (variable.isArray()) 57 for (size_t elementIndex = 0; elementIndex < variable.elementCount(); elementIndex++) 61 ExpandUserDefinedVariable(variable, lname, lmappedName, markStaticUse, expanded); 66 ExpandUserDefinedVariable(variable, name, mappedName, markStaticUse, expanded); 71 ShaderVariable expandedVar = variable; 92 void ExpandUserDefinedVariable(const ShaderVariable &variable, 98 ASSERT(variable.isStruct()) 338 const TIntermSymbol *variable = sequence[seqIndex]->getAsSymbolNode(); local 430 const ShaderVariable &variable = compact[variableIndex]; local [all...] |
OutputHLSL.cpp | 1850 TIntermTyped *variable = (*sequence)[0]->getAsTyped(); local 2546 TIntermTyped *variable = (*sequence)[0]->getAsTyped(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
lower_variable_index_to_cond_assign.cpp | 39 * temporary variable. 126 * Replace a dereference of a variable with a specified r-value 157 * Find a variable index dereference of an array in an rvalue tree 200 * underlying variable. 205 * the old variable index with the new constant index. 216 ir_rvalue *variable = new(mem_ctx) ir_dereference_variable(this->var); local 218 ? new(mem_ctx) ir_assignment(element, variable, condition, write_mask) 219 : new(mem_ctx) ir_assignment(variable, element, condition); 351 /* If a variable isn't eventually the target of this dereference, then
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/ |
bitmap_size_table.cc | 216 bool variable = false; local 226 variable = (sub_table_size > 0) ? variable : true; 230 fprintf(stderr, "bitmap table size=%d\n", variable ? -size : size); 232 return variable ? -size : size;
|
eblc_table.cc | 213 bool variable = false; local 225 variable = size_builder_size > 0 ? variable : true; 231 return variable ? -size : size;
|
/external/deqp/framework/randomshaders/ |
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...] |
rsgVariableManager.cpp | 21 * \brief Variable manager. 95 ValueEntry::ValueEntry (const Variable* variable) 96 : m_variable (variable) 97 , m_valueRange (variable->getType()) 107 for (vector<Variable*>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end(); i++) 110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++) 114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char* name) 116 Variable* variable = new Variable(type, storage, name) local 249 Variable* variable = varScope.allocate(type, Variable::STORAGE_LOCAL, name); local [all...] |
/external/deqp/modules/gles31/functional/ |
es31fProgramInterfaceQueryTestCase.cpp | 226 const glu::VarType* variable = (path.back().isVariableType()) ? (path.back().getVariableType()) : (DE_NULL); local 228 if (!variable || !variable->isBasicType()) 236 // finding matching variable in any shader is sufficient 349 const glu::VarType* variable = path.back().getVariableType(); local 353 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying type, expecting " << glu::getDataTypeName(variable->getBasicType()) << tcu::TestLog::EndMessage; 355 if (variable->getBasicType() != glu::getDataTypeFromGLType(propValue)) [all...] |
/external/e2fsprogs/ext2ed/ |
general_com.c | 304 wprintw (command_win, "Variable %s set to %s\n", 339 wprintw (command_win, "Variable %s set to %s\n", 352 wprintw (command_win, "Variable %s set to %s\n", 364 char *ptr,buffer [80],variable [80],value [80]; local 386 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0; 394 if (strcmp (current_type->field_names [i],variable)==0) { 400 set_int(len, ptr, variable, value); 403 set_uint(len, ptr, variable, value); 406 set_char(len, ptr, variable, value) [all...] |
/external/lldb/examples/python/ |
sbvalue.py | 86 class variable(object): class in inherits:object 88 a variable would be in code. So if you have a Point structure variable 105 return variable(self.sbvalue.GetValueForExpressionPath("[%i]" % key)) 111 return variable(child_sbvalue)
|
/external/lldb/include/lldb/Expression/ |
ClangASTSource.h | 438 bool variable : 1; member in struct:lldb_private::NameSearchContext::__anon4784
|
/external/lldb/source/Core/ |
Value.cpp | 26 #include "lldb/Symbol/Variable.h" 175 case eContextTypeVariable: // Variable * 196 case eContextTypeVariable: // Variable * 243 Variable *variable = GetVariable(); local 244 if (variable) 246 Type *variable_type = variable->GetType(); 440 // we can resolve a file address, is a variable. 441 Variable *variable = GetVariable() local 483 Variable *variable = GetVariable(); local [all...] |
/external/lldb/source/Symbol/ |
Variable.cpp | 1 //===-- Variable.cpp --------------------------------------------*- C++ -*-===// 10 #include "lldb/Symbol/Variable.h" 33 // Variable constructor 35 Variable::Variable 39 const char *mangled, // The mangled variable name for variables in namespaces 64 Variable::~Variable() 70 Variable::GetName() const 78 Variable::NameMatches (const RegularExpression& regex) cons 690 Variable *variable = variable_list->GetVariableAtIndex(i).get(); local 835 Variable *variable = variable_list->GetVariableAtIndex(i).get(); local [all...] |
/external/mesa3d/src/glsl/ |
lower_variable_index_to_cond_assign.cpp | 39 * temporary variable. 126 * Replace a dereference of a variable with a specified r-value 157 * Find a variable index dereference of an array in an rvalue tree 200 * underlying variable. 205 * the old variable index with the new constant index. 216 ir_rvalue *variable = new(mem_ctx) ir_dereference_variable(this->var); local 218 ? new(mem_ctx) ir_assignment(element, variable, condition, write_mask) 219 : new(mem_ctx) ir_assignment(variable, element, condition); 351 /* If a variable isn't eventually the target of this dereference, then
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.variables_3.2.400.v20100505.jar | |
/external/bison/src/ |
muscle-tab.c | 399 /** If the \a variable name is obsolete, return the name to use, 400 * otherwise \a variable. */ 403 muscle_percent_variable_update (char const *variable) 416 char const *res = variable; 419 if (STREQ (conversion[i].obsolete, variable)) 433 char const *variable = muscle_percent_variable_update (var); local 434 char const *name = UNIQSTR_CONCAT ("percent_define(", variable, ")"); 435 char const *loc_name = UNIQSTR_CONCAT ("percent_define_loc(", variable, ")"); 437 UNIQSTR_CONCAT ("percent_define_syncline(", variable, ")"); 438 char const *how_name = UNIQSTR_CONCAT ("percent_define_how(", variable, ")"); [all...] |
/external/clang/lib/Sema/ |
JumpDiagnostics.cpp | 165 // A program that jumps from a point where a variable with automatic 167 // is ill-formed unless the variable has scalar type, class type with 173 // A program that jumps from a point where a local variable 175 // where it is in scope is ill-formed unless the variable has 180 // For a variable of (array of) class type declared without an 254 llvm_unreachable("non-lifetime captured variable"); 302 // Evaluate the condition variable before entering the scope of the switch 454 VarDecl *variable = CI.getVariable(); local 455 BuildScopeInformation(variable, BDecl, ParentScope);
|
/external/clang/test/SemaCXX/ |
expression-traits.cpp | 168 extern int variable; 183 static int variable; member in struct:Class 189 static int& NestedFuncTemplate() { return variable; } // expected-note{{possible target for call}} 192 int& NestedMemfunTemplate() { return variable; } // expected-note{{possible target for call}} 219 // a function or variable. 221 ASSERT_LVALUE(::variable); // identifier: variable 228 ASSERT_LVALUE(::Class::variable); // qualified-id: variable 254 // the entity is a function, variable, or data member... (cont'd [all...] |
/cts/tools/signature-tools/test/signature/converter/ |
ConvertClassTest.java | 155 //test type variable 157 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0); local 158 assertEquals("T", variable.getName()); 159 //test type variable bound 160 assertEquals(1, variable.getUpperBounds().size()); 161 IClassReference bound = (IClassReference) variable.getUpperBounds().get(0); 174 //test type variable 176 ITypeVariableDefinition variable = sigClass.getTypeParameters().get(0); local 177 assertEquals("T", variable.getName()); 178 //test type variable bound 586 ITypeVariableReference variable = (ITypeVariableReference) parametrizedType.getTypeArguments().get(0); local [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/compiler/ |
Compiler.java | 59 import org.apache.xpath.operations.Variable; 166 expr = variable(opPos); break; 529 * Compile a variable reference. 533 * @return reference to {@link org.apache.xpath.operations.Variable} instance. 537 protected Expression variable(int opPos) throws TransformerException method in class:Compiler 540 Variable var = new Variable(); [all...] |
/external/chromium_org/third_party/libxslt/libxslt/ |
variables.c | 2 * variables.c: Implementation of the variable storage and lookup 127 * insinde an xsl:variable and xsl:param to the lifetime of the 163 * When evaluating "select" expressions of xsl:variable 165 * to the variable itself; otherwise the tragment will be 298 * global variable or a doc acquired via the 558 * Example: The fragment of the variable must not be freed 561 * <xsl:variable name="bar"> 563 * </xsl:variable> 576 * Cache or free the variable structure. 638 * First lookup expects the variable name and URI t 1780 xsltStackElemPtr variable; local 2223 xsltStackElemPtr variable = NULL, cur; local [all...] |
/external/llvm/lib/CodeGen/ |
LiveDebugVariables.cpp | 57 "Debug Variable Analysis", false, false) 61 "Debug Variable Analysis", false, false) 100 /// UserValue - A user value is a part of a debug info user variable. 103 /// holds part of a user variable. The part is identified by a byte offset. 106 /// user values are related if they refer to the same variable, or if they are 112 const MDNode *variable; ///< The debug info variable we are part of. member in class:__anon5307::UserValue 113 unsigned offset; ///< Byte offset into variable. 115 DebugLoc dl; ///< The debug location for the variable. This is 144 : variable(var), offset(o), IsIndirect(i), dl(L), leader(this) [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCTP.java | 112 // SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) ); 115 // SimpleCTP.g:13:5: ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) ) 142 // SimpleCTP.g:13:9: variable 145 variable(); method 203 // $ANTLR start "variable" 204 // SimpleCTP.g:18:1: variable : ^( VAR_DEF type declarator ) ; 205 public final void variable() throws RecognitionException { method in class:SimpleCTP 237 // $ANTLR end "variable" 399 // SimpleCTP.g:41:1: block : ^( BLOCK ( variable )* ( stat )* ) ; 402 // SimpleCTP.g:42:5: ( ^( BLOCK ( variable )* ( stat )* ) 425 variable(); method [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCTP.java | 112 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:12:1: declaration : ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) ); 115 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:13:5: ( variable | ^( FUNC_DECL functionHeader ) | ^( FUNC_DEF functionHeader block ) ) 142 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:13:9: variable 145 variable(); method 203 // $ANTLR start "variable" 204 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:18:1: variable : ^( VAR_DEF type declarator ) ; 205 public final void variable() throws RecognitionException { method in class:SimpleCTP 237 // $ANTLR end "variable" 399 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:41:1: block : ^( BLOCK ( variable )* ( stat )* ) ; 402 // /usr/local/ANTLR3-ObjC2.0-Runtime/Framework/examples/simplecTreeParser/SimpleCTP.g:42:5: ( ^( BLOCK ( variable )* ( stat )* ) 425 variable(); method [all...] |