HomeSort by relevance Sort by last modified time
    Searched refs:variable (Results 76 - 100 of 4216) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/
llvm.mk 2 $(error Must set variable LLVM_ROOT_PATH before including this! $(LOCAL_PATH))
  /packages/services/Telecomm/
Android.mk 17 # Workaround for "local variable type mismatch" error.
  /external/deqp/framework/randomshaders/
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...]
rsgExecutionContext.cpp 61 ExecValueAccess ExecutionContext::getValue (const Variable* variable)
63 ExecValueStorage* storage = m_varValues[variable];
67 storage = new ExecValueStorage(variable->getType());
68 m_varValues[variable] = storage;
71 return storage->getValue(variable->getType());
74 const Sampler2D& ExecutionContext::getSampler2D (const Variable* sampler) const
83 const SamplerCube& ExecutionContext::getSamplerCube (const Variable* sampler) const
rsgStatement.hpp 74 DeclarationStatement (GeneratorState& state, Variable* variable = DE_NULL);
84 const Variable* m_variable;
140 AssignStatement (const Variable* variable, Expression* value);
141 AssignStatement (GeneratorState& state, const Variable* variable, ConstValueRangeAccess valueRange);
149 const Variable* m_variable;
  /external/chromium_org/third_party/mesa/src/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/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/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...]
  /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...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
ll-star.rb 33 : variable
40 variable
66 variable*
  /external/e2fsprogs/ext2ed/
dir_com.c 13 Most of the functions use the global variable file_info (along with the special directory fields there) to save
589 because it is of variable length.
595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80]; local
610 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0;
613 if (strcasecmp ("inode",variable)==0) {
616 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->inode);refresh_command_win ();
620 if (strcasecmp ("rec_len",variable)==0) {
623 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->rec_len);refresh_command_win ()
    [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/ceres-solver/internal/ceres/
c_api_test.cc 168 ScopedSetValue(T* variable, T new_value)
169 : variable_(variable), old_value_(*variable) {
170 *variable = new_value;
  /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...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
printer.h 52 // text with variable substitutions. Example usage:
71 // Print some text after applying variable substitutions. If a particular
72 // variable in the text is not defined, this will crash. Variables to be
74 // characters (as given to the constructor). The variable bindings are
81 void Print(const char* text, const char* variable, const string& value);
  /external/lldb/include/lldb/Symbol/
VariableList.h 15 #include "lldb/Symbol/Variable.h"
72 FindIndexForVariable (Variable* variable);
  /external/lldb/utils/vim-lldb/python-vim-lldb/
import_lldb.py 9 2. Executes the lldb executable pointed to by the LLDB environment variable (or if unset, the first lldb
22 # Allow overriding default path to lldb executable with the LLDB environment variable
61 vim.command('redraw | echo "%s"' % " Error loading lldb module; vim-lldb will be disabled. Check LLDB installation or set LLDB environment variable.")
  /external/protobuf/src/google/protobuf/io/
printer.h 52 // text with variable substitutions. Example usage:
71 // Print some text after applying variable substitutions. If a particular
72 // variable in the text is not defined, this will crash. Variables to be
74 // characters (as given to the constructor). The variable bindings are
81 void Print(const char* text, const char* variable, const string& value);
  /external/wpa_supplicant_8/src/eap_peer/
eap.h 112 * This integer variable is used to provide an outside timer that the
138 * get_bool - Get a boolean EAPOL state variable
139 * @variable: EAPOL boolean variable to get
140 * Returns: Value of the EAPOL variable
142 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
145 * set_bool - Set a boolean EAPOL state variable
147 * @variable: EAPOL boolean variable to set
148 * @value: Value for the EAPOL variable
    [all...]
  /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/chromium_org/third_party/angle/src/common/
blocklayout.h 122 unsigned int HLSLVariableRegisterCount(const Varying &variable);
123 unsigned int HLSLVariableRegisterCount(const Uniform &variable, ShShaderOutput outputType);
  /external/chromium_org/v8/test/webkit/
for-in-var-scope.js 25 "This tests that for/in statements properly scope a variable that's declared in one. "
27 + "First, the loop variable declaration would not be processed. "
28 + "Second, the code to set the loop variable would incorrectly walk the scope chain even after setting the loop variable."
  /external/compiler-rt/lib/msan/
Makefile.mk 23 # Define a convenience variable for all the msan functions.
  /external/compiler-rt/lib/tsan/rtl/
Makefile.mk 24 # Define a convenience variable for all the tsan functions.
  /external/compiler-rt/lib/ubsan/
Makefile.mk 24 # Define a convenience variable for all the ubsan functions.

Completed in 2244 milliseconds

1 2 34 5 6 7 8 91011>>