HomeSort by relevance Sort by last modified time
    Searched defs:variable (Results 26 - 50 of 209) sorted by null

12 3 4 5 6 7 8 9

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
118 (* Emit the start code first, without 'variable' in scope. *)
135 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
137 (* Within the loop, the variable is defined equal to the PHI node. If it
138 * shadows an existing variable, we have to restore it, so save it
143 Hashtbl.add named_values var_name variable;
158 let next_var = build_add variable step_val "nextvar" builder in
178 add_incoming (next_var, loop_end_bb) variable;
180 (* Restore the unshadowed variable. *
    [all...]
  /external/mesa3d/src/gallium/tools/trace/
format.py 48 def variable(self, name): member in class:Formatter
81 def variable(self, name): member in class:AnsiFormatter
83 Formatter.variable(self, name)
150 def variable(self, name): member in class:WindowsConsoleFormatter
152 Formatter.variable(self, name)
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 157 private String variable; field in class:ReportedData.Column
164 * @param variable the variable name of the column.
167 public Column(String label, String variable, String type) {
169 this.variable = variable;
210 * Returns the variable name that the column is showing.
212 * @return the variable name of the column.
215 return variable;
229 * Returns the values of the field whose variable matches the requested variable
255 private String variable; field in class:ReportedData.Field
    [all...]
FormField.java 53 private String variable; field in class:FormField
59 * Creates a new FormField with the variable name that uniquely identifies the field
62 * @param variable the variable name of the question.
64 public FormField(String variable) {
65 this.variable = variable;
69 * Creates a new FormField of type FIXED. The fields of type FIXED do not define a variable
159 * Returns the variable name that the question is filling out.
161 * @return the variable name of the question
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
OutputGLSLBase.cpp 86 // TODO(alokp): Validate qualifier for variable declarations.
691 // Variable declaration.
695 const TIntermTyped *variable = sequence.front()->getAsTyped(); local
696 writeVariableType(variable->getType());
  /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...]
  /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::__anon29002
  /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/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 31 * This AttributeVisitor optimizes variable allocation based on their the liveness,
63 * @param reuseThis specifies whether the 'this' variable can be reused.
75 * @param reuseThis specifies whether the 'this' variable
107 // Trim the variables in the local variable tables, because even
128 // By default, the variable will be mapped onto itself.
131 // Only try remapping the variable if it's not a parameter.
135 // Try to remap the variable to a variable with a smaller index.
146 // This variable has been remapped. Go to the next one.
185 // Trim the variables in the local variable table
202 int variable = localVariableInfo.u2index; local
225 int variable = localVariableTypeInfo.u2index; local
    [all...]
  /external/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/smack/src/org/jivesoftware/smackx/packet/
DiscoverInfo.java 462 private String variable; field in class:DiscoverInfo.Feature
467 * @param variable the feature's variable.
469 public Feature(String variable) {
470 if (variable == null)
471 throw new IllegalArgumentException("variable cannot be null");
472 this.variable = variable;
476 * Returns the feature's variable.
478 * @return the feature's variable
    [all...]
  /ndk/sources/host-tools/make-3.81/
variable.h 21 /* Codes in a variable definition saying where the definition came from.
25 o_default, /* Variable from the default set. */
26 o_env, /* Variable from environment. */
27 o_file, /* Variable given in a makefile. */
28 o_env_override, /* Variable from environment, if -e. */
29 o_command, /* Variable given by user. */
30 o_override, /* Variable from an `override' directive. */
31 o_automatic, /* Automatic variable -- cannot be set. */
44 /* Structure that represents one variable definition.
51 struct variable struct
105 struct variable variable; member in struct:pattern_var
    [all...]
  /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...]

Completed in 1759 milliseconds

12 3 4 5 6 7 8 9