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

1 2 3 4 5

  /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/chromium_org/third_party/angle/src/compiler/translator/
util.cpp 289 VarT variable; local
290 variable.name = name.c_str();
291 variable.arraySize = static_cast<unsigned int>(type.getArraySize());
295 variable.type = GLVariableType(type);
296 variable.precision = GLVariablePrecision(type);
301 variable.type = GL_STRUCT_ANGLEX;
302 variable.structName = structure->name().c_str();
309 traverse(*field->type(), field->name(), &variable.fields);
313 visitVariable(&variable);
316 output->push_back(variable);
    [all...]
  /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/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/libGLESv2/renderer/d3d/
ProgramD3D.cpp 85 const rx::PixelShaderOutputVariable &variable = pixelShaderKey[pixelShaderKeyIndex]; local
86 stream->writeInt(variable.type);
87 stream->writeString(variable.name);
88 stream->writeString(variable.source);
89 stream->writeInt(variable.outputIndex);
  /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:__anon22822::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...]
  /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)

Completed in 939 milliseconds

1 2 3 4 5