HomeSort by relevance Sort by last modified time
    Searched refs:Eval (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /build/kati/
stmt.h 58 virtual void Eval(Evaluator* ev) const = 0;
77 virtual void Eval(Evaluator* ev) const;
94 virtual void Eval(Evaluator* ev) const;
110 virtual void Eval(Evaluator* ev) const;
124 virtual void Eval(Evaluator* ev) const;
135 virtual void Eval(Evaluator* ev) const;
146 virtual void Eval(Evaluator* ev) const;
156 virtual void Eval(Evaluator* ev) const;
stmt.cc 19 #include "eval.h"
61 lhs->Eval(ev, &buf);
116 void RuleStmt::Eval(Evaluator* ev) const {
125 void AssignStmt::Eval(Evaluator* ev) const {
133 void CommandStmt::Eval(Evaluator* ev) const {
142 void IfStmt::Eval(Evaluator* ev) const {
150 void IncludeStmt::Eval(Evaluator* ev) const {
158 void ExportStmt::Eval(Evaluator* ev) const {
165 void ParseErrorStmt::Eval(Evaluator* ev) const {
command.cc 23 #include "eval.h"
65 virtual void Eval(Evaluator* ev, string* s) const override; \
81 virtual void Eval(Evaluator* ev, string* s) const override;
92 virtual void Eval(Evaluator* ev, string* s) const override;
98 void AutoAtVar::Eval(Evaluator*, string* s) const {
102 void AutoLessVar::Eval(Evaluator*, string* s) const {
108 void AutoHatVar::Eval(Evaluator*, string* s) const {
117 void AutoPlusVar::Eval(Evaluator*, string* s) const {
124 void AutoStarVar::Eval(Evaluator*, string* s) const {
132 void AutoNotImplementedVar::Eval(Evaluator* ev, string*) const
    [all...]
command.h 40 void Eval(DepNode* n, vector<Command*>* commands);
func.go 81 "eval": func() mkFunc { return &funcEval{} },
172 func (f *funcSubst) Eval(w evalWriter, ev *Evaluator) error {
201 func (f *funcPatsubst) Eval(w evalWriter, ev *Evaluator) error {
212 err = f.args[3].Eval(wb, ev)
238 func (f *funcStrip) Eval(w evalWriter, ev *Evaluator) error {
244 err = f.args[1].Eval(wb, ev)
260 func (f *funcFindstring) Eval(w evalWriter, ev *Evaluator) error {
284 func (f *funcFilter) Eval(w evalWriter, ev *Evaluator) error {
290 err = f.args[1].Eval(patternsBuffer, ev)
295 err = f.args[2].Eval(textBuffer, ev
    [all...]
expr.h 30 virtual void Eval(Evaluator* ev, string* s) const = 0;
31 string Eval(Evaluator*) const;
eval.cc 17 #include "eval.h"
62 rhs_v->Eval(this, sv->mutable_value());
110 stmt->rhs->Eval(this, &rhs);
138 const string&& expr = stmt->expr->Eval(this);
149 return stmt->after_term ? stmt->after_term->Eval(this) : "";
196 rhs->Eval(this, &rhs_value);
227 a->Eval(this);
245 stmt->lhs->Eval(this, &var_name);
255 const string&& lhs = stmt->lhs->Eval(this);
256 const string&& rhs = stmt->rhs->Eval(this)
    [all...]
var.cc 58 void SimpleVar::Eval(Evaluator*, string* s) const {
64 v->Eval(ev, &buf);
81 void RecursiveVar::Eval(Evaluator* ev, string* s) const {
82 v_->Eval(ev, s);
99 void UndefinedVar::Eval(Evaluator*, string*) const {
var.h 81 virtual void Eval(Evaluator* ev, string* s) const override;
107 virtual void Eval(Evaluator* ev, string* s) const override;
133 virtual void Eval(Evaluator* ev, string* s) const override;
159 virtual void Eval(Evaluator* ev, string* s) const override {
160 v_->Eval(ev, s);
expr.cc 21 #include "eval.h"
34 string Evaluable::Eval(Evaluator* ev) const {
36 Eval(ev, &s);
61 virtual void Eval(Evaluator*, string* s) const override {
92 virtual void Eval(Evaluator* ev, string* s) const override {
94 v->Eval(ev, s);
135 virtual void Eval(Evaluator* ev, string* s) const override {
137 v->Eval(ev, s);
157 virtual void Eval(Evaluator* ev, string* s) const override {
159 const string&& name = name_->Eval(ev)
    [all...]
func_test.go 34 strip.Eval(&buf, ev)
53 sort.Eval(&buf, ev)
74 patsubst.Eval(&buf, ev)
var.go 74 func (v *targetSpecificVar) Eval(w evalWriter, ev *Evaluator) error {
75 return v.v.Eval(w, ev)
103 func (v *simpleVar) Eval(w evalWriter, ev *Evaluator) error {
136 err = val.Eval(abuf, ev)
147 err := val.Eval(abuf, ev)
165 func (v *automaticVar) Eval(w evalWriter, ev *Evaluator) error {
182 err = val.Eval(abuf, ev)
196 err := val.Eval(abuf, ev)
218 func (v *recursiveVar) Eval(w evalWriter, ev *Evaluator) error {
219 v.expr.Eval(w, ev
    [all...]
expr.go 46 Eval(w evalWriter, ev *Evaluator) error
55 func (s literal) Eval(w evalWriter, ev *Evaluator) error {
71 func (t tmpval) Eval(w evalWriter, ev *Evaluator) error {
95 func (e expr) Eval(w evalWriter, ev *Evaluator) error {
98 err := v.Eval(w, ev)
156 func (v *varref) Eval(w evalWriter, ev *Evaluator) error {
159 err := v.varname.Eval(buf, ev)
165 err = vv.Eval(w, ev)
193 func (p paramref) Eval(w evalWriter, ev *Evaluator) error {
197 err := ev.paramVars[n].Eval(w, ev
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec_eval.c 38 assert(attr < Elements(exec->eval.map1));
39 exec->eval.map1[attr].map = NULL;
44 assert(attr < Elements(exec->eval.map2));
45 exec->eval.map2[attr].map = NULL;
51 assert(attr < Elements(exec->eval.map1));
52 if (!exec->eval.map1[attr].map) {
53 exec->eval.map1[attr].map = map;
54 exec->eval.map1[attr].sz = dim;
61 assert(attr < Elements(exec->eval.map2));
62 if (!exec->eval.map2[attr].map)
    [all...]
  /external/mesa3d/src/mesa/main/
eval.c 28 * eval.c was written by
44 #include "eval.h"
838 ctx->Eval.MapGrid1un = un;
839 ctx->Eval.MapGrid1u1 = u1;
840 ctx->Eval.MapGrid1u2 = u2;
841 ctx->Eval.MapGrid1du = (u2 - u1) / (GLfloat) un;
869 ctx->Eval.MapGrid2un = un;
870 ctx->Eval.MapGrid2u1 = u1;
871 ctx->Eval.MapGrid2u2 = u2;
872 ctx->Eval.MapGrid2du = (u2 - u1) / (GLfloat) un
    [all...]
enable.c 286 if (ctx->Eval.AutoNormal == state)
289 ctx->Eval.AutoNormal = state;
447 if (ctx->Eval.Map1Color4 == state)
450 ctx->Eval.Map1Color4 = state;
455 if (ctx->Eval.Map1Index == state)
458 ctx->Eval.Map1Index = state;
463 if (ctx->Eval.Map1Normal == state)
466 ctx->Eval.Map1Normal = state;
471 if (ctx->Eval.Map1TextureCoord1 == state)
474 ctx->Eval.Map1TextureCoord1 = state
    [all...]
attrib.c 265 attr->AutoNormal = ctx->Eval.AutoNormal;
282 attr->Map1Color4 = ctx->Eval.Map1Color4;
283 attr->Map1Index = ctx->Eval.Map1Index;
284 attr->Map1Normal = ctx->Eval.Map1Normal;
285 attr->Map1TextureCoord1 = ctx->Eval.Map1TextureCoord1;
286 attr->Map1TextureCoord2 = ctx->Eval.Map1TextureCoord2;
287 attr->Map1TextureCoord3 = ctx->Eval.Map1TextureCoord3;
288 attr->Map1TextureCoord4 = ctx->Eval.Map1TextureCoord4;
289 attr->Map1Vertex3 = ctx->Eval.Map1Vertex3;
290 attr->Map1Vertex4 = ctx->Eval.Map1Vertex4
    [all...]
  /external/gemmlowp/internal/
output.h 76 // Each specialization provides a OutputType typedef and an Eval function
111 OutputType Eval(InputType input, int, int) const {
135 OutputType Eval(InputType input, int row, int col) const {
159 OutputType Eval(InputType input, int row, int col) const {
182 OutputType Eval(InputType input, int, int) const {
198 OutputType Eval(InputType input, int row, int col) const {
218 OutputType Eval(InputType input, int, int) const {
264 OutputType Eval(InputType input, int, int) const {
356 OutputType Eval(InputType input, int row, int col) const {
358 FirstStageOutputType first_stage_output = head_impl.Eval(input, row, col)
    [all...]
output_neon.h 50 OutputType Eval(InputType input, int row, int col) const {
55 impl_int32x4.Eval(input.data.val[i], row + 4 * i, col);
74 OutputType Eval(InputType input, int, int) const {
102 OutputType Eval(InputType input, int row, int col) const {
132 OutputType Eval(InputType input, int row, int col) const {
159 OutputType Eval(InputType input, int, int) const {
180 OutputType Eval(InputType input, int, int) const {
200 OutputType Eval(InputType input, int row, int col) const {
222 OutputType Eval(InputType input, int, int) const {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5125.dir/
bug.go 8 Eval(s *Scene)
  /prebuilts/go/linux-x86/test/fixedbugs/issue5125.dir/
bug.go 8 Eval(s *Scene)
  /prebuilts/go/darwin-x86/src/go/types/
eval_test.go 5 // This file contains tests for Eval.
22 gotTv, err := Eval(fset, pkg, pos, expr)
24 t.Errorf("Eval(%q) failed: %s", expr, err)
28 t.Errorf("Eval(%q) got nil type but no error", expr)
36 t.Errorf("Eval(%q) got type %s, want %s", expr, gotTv.Type, typ)
43 t.Errorf("Eval(%q) got type %s, want %s", expr, gotStr, typStr)
54 t.Errorf("Eval(%q) got value %s, want %s", expr, gotStr, valStr)
eval.go 13 // Eval returns the type and, if constant, the value for the
30 // Note: Eval should not be used instead of running Check to compute
31 // types and values, but in addition to Check. Eval will re-evaluate
37 func Eval(fset *token.FileSet, pkg *Package, pos token.Pos, expr string) (TypeAndValue, error) {
68 node, err := parser.ParseExprFrom(fset, "eval", expr, 0)
  /prebuilts/go/linux-x86/src/go/types/
eval_test.go 5 // This file contains tests for Eval.
22 gotTv, err := Eval(fset, pkg, pos, expr)
24 t.Errorf("Eval(%q) failed: %s", expr, err)
28 t.Errorf("Eval(%q) got nil type but no error", expr)
36 t.Errorf("Eval(%q) got type %s, want %s", expr, gotTv.Type, typ)
43 t.Errorf("Eval(%q) got type %s, want %s", expr, gotStr, typStr)
54 t.Errorf("Eval(%q) got value %s, want %s", expr, gotStr, valStr)
  /art/tools/checker/match/
line.py 80 assert checkerLine.variant != TestAssertion.Variant.Eval
112 assert checkerLine.variant == TestAssertion.Variant.Eval
115 return eval(eval_string)

Completed in 705 milliseconds

1 2 3 4