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

1 2 3 4 5 6 7 8 9

  /external/clang/test/Modules/Inputs/
redecl-add-after-load-top.h 3 static const int variable; member in struct:C
redecl-add-after-load.h 2 extern const int variable = 0; variable
7 extern const int variable = 0; member in namespace:N
13 const int C::variable = 0; member in class:C
18 static const int variable; member in struct:D
22 const int D::variable = 0; member in class:D
redecl-add-after-load-decls.h 2 extern const int variable;
4 constexpr int test(bool b) { return b ? variable : function(); }
8 extern const int variable;
12 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
16 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
20 static const int variable; member in struct:D
24 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
  /external/clang/test/PCH/
tentative-defs.h 2 int variable; variable
  /external/chromium_org/v8/test/webkit/
dfg-arguments-osr-exit-multiple-blocks.js 29 return [variable];
50 var variable = 32; variable
55 variable = "32";
dfg-arguments-osr-exit.js 29 return [variable];
46 var variable = 32; variable
51 variable = "32";
dfg-dead-speculation.js 34 var variable = 84; variable
39 thingy = {f:{valueOf:function(){ variable = 24; return 5; }}};
43 shouldBe("variable", "" + expected);
dfg-arguments-osr-exit-multiple-blocks-before-exit.js 29 return [variable];
52 var variable = 32; variable
57 variable = "32";
  /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));
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p10.cpp 19 int variable; // expected-note {{declared here}} local
20 (void)[&Overload] () {}; // expected-error {{does not name a variable}}
23 (void)[&Variable] () {}; // expected-error {{use of undeclared identifier 'Variable'; did you mean 'variable'}}
33 (void)[local, // expected-error{{reference to local variable 'local' declared in enclosing function 'test_reaching_scope'}}
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
NameFunction.java 27 * Returns the Data variable name for a local variable alias.
32 * @param args A local variable
39 Data variable = variableValue.getReference(); local
40 if (variable != null) {
41 return literalValue(variable.getSymlink().getName(), variableValue.getEscapeMode(),
  /external/chromium_org/tools/gyp/pylib/gyp/
ninja_syntax.py 30 def variable(self, key, value, indent=0): member in class:Writer
39 self.variable('depth', depth, indent=1)
45 self.variable('command', command, indent=1)
47 self.variable('description', description, indent=1)
49 self.variable('depfile', depfile, indent=1)
51 self.variable('generator', '1', indent=1)
53 self.variable('pool', pool, indent=1)
55 self.variable('restat', '1', indent=1)
57 self.variable('rspfile', rspfile, indent=1)
59 self.variable('rspfile_content', rspfile_content, indent=1
    [all...]
  /external/smack/src/org/jivesoftware/smackx/provider/
DiscoverInfoProvider.java 44 String variable = ""; local
59 variable = parser.getAttributeValue("", "var");
76 discoverInfo.addFeature(variable);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/env/
variable.hpp 12 // Description : defines model of program environment variable
86 // ************** runtime::environment::variable ************** //
90 class variable : public variable_base { class in namespace:boost::BOOST_RT_PARAM_NAMESPACE::environment
93 explicit variable( cstring var_name );
96 explicit variable( cstring var_name, Modifiers const& m );
98 explicit variable( rt_env_detail::variable_data& data ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable
101 // other variable assignment
102 void operator=( variable const& v ) { m_data = v.m_data; }
126 }; // class variable
132 operator<<( std::basic_ostream<CharT,Tr>& os, variable<T> const& v
203 variable<T>::variable( cstring var_name ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable
211 variable<T>::variable( cstring var_name, Modifiers const& m ) function in class:boost::BOOST_RT_PARAM_NAMESPACE::environment::variable
    [all...]
  /external/bison/src/
parse-gram.y 210 %type <uniqstr> BRACKETED_ID ID ID_COLON TYPE variable
256 | "%define" variable content.opt
597 | variable and content.opt. |
600 /* The STRING form of variable is deprecated and is not M4-friendly.
602 variable: label
  /external/chromium_org/third_party/angle/src/common/
blocklayout.cpp 28 const InterfaceBlockField &variable = fields[fieldIndex]; local
30 if (variable.fields.size() > 0)
32 const unsigned int elementCount = std::max(1u, variable.arraySize);
37 encodeInterfaceBlockFields(variable.fields);
43 encodeInterfaceBlockField(variable);
248 void HLSLVariableGetRegisterInfo(unsigned int baseRegisterIndex, gl::Uniform *variable, HLSLBlockEncoder *encoder,
252 // we can ignore the array size of the variable
254 if (variable->isStruct())
258 variable->registerIndex = baseRegisterIndex;
260 for (size_t fieldIndex = 0; fieldIndex < variable->fields.size(); fieldIndex++
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
VariableInfo.cpp 348 const TIntermSymbol* variable = (*i)->getAsSymbolNode(); local
354 ASSERT(variable != NULL);
357 processedSymbol = variable->getSymbol();
359 processedSymbol = TIntermTraverser::hash(variable->getSymbol(), mHashFunction);
360 getVariableInfo(variable->getType(),
361 variable->getSymbol(),
  /external/clang/test/Modules/
redecl-add-after-load.cpp 10 extern const int variable;
12 constexpr int test(bool b) { return b ? variable : function(); }
16 extern const int variable;
20 constexpr int N_test(bool b) { return b ? N::variable : N::function(); }
24 constexpr int C_test(bool b) { return b ? C::variable : C::function(); }
28 static const int variable; member in struct:D
32 constexpr int D_test(bool b) { return b ? D::variable : D::function(); } // expected-note {{subexpression}} expected-note {{undefined}}
  /external/clang/test/SemaCXX/
err_init_conversion_failed.cpp 4 char variable = (void)0; local
5 // expected-error@-1{{cannot initialize a variable}}
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
VariableLocator.java 47 * @param variable the variable node to evaluate.
48 * @return a String representing the Variable name, or {@code null} if it is a compound variable
51 private String quickEval(PVariable variable) {
52 if (variable instanceof ANameVariable) {
53 return ((ANameVariable) variable).getWord().getText();
54 } else if (variable instanceof ADecNumberVariable) {
55 return ((ADecNumberVariable) variable).getDecNumber().getText();
56 } else if (variable instanceof AHexNumberVariable)
    [all...]
  /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/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 34 const Expr *variable; member in struct:__anon22016::MallocOverflowCheck
37 : mulop(m), variable (v)
62 /* Look for a linear combination with a single variable, and at least
64 Reject anything that applies to the variable: an explicit cast,
139 if (const DeclRefExpr *DR_i = dyn_cast<DeclRefExpr>(i->variable)) {
150 if (isa<MemberExpr>(i->variable)) {
151 if (dyn_cast<MemberExpr>(i->variable)->getMemberDecl() == EmeMD)
  /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/lldb/source/Core/
ValueObjectVariable.cpp 27 #include "lldb/Symbol/Variable.h"
48 // Do not attempt to construct one of these objects with no variable!
121 Variable *variable = m_variable_sp.get(); local
122 DWARFExpression &expr = variable->LocationExpression();
124 if (variable->GetLocationIsConstantValueData())
126 // expr doesn't contain DWARF bytes, it contains the constant variable
129 m_value.SetContext(Value::eContextTypeVariable, variable);
150 variable->CalculateSymbolContext (&sc);
158 m_value.SetContext(Value::eContextTypeVariable, variable);
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 17 | Ast.Variable name ->
19 | Not_found -> raise (Error "unknown variable name"))
100 (* Emit the start code first, without 'variable' in scope. *)
117 let variable = build_phi [(start_val, preheader_bb)] var_name builder in var
119 (* Within the loop, the variable is defined equal to the PHI node. If it
120 * shadows an existing variable, we have to restore it, so save it
125 Hashtbl.add named_values var_name variable;
140 let next_var = build_add variable step_val "nextvar" builder in
160 add_incoming (next_var, loop_end_bb) variable;
162 (* Restore the unshadowed variable. *
    [all...]

Completed in 681 milliseconds

1 2 3 4 5 6 7 8 9