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

1 2 3 4 5 6

  /prebuilts/go/darwin-x86/src/cmd/vet/
bool.go 35 for _, exprs := range comm {
36 op.checkRedundant(f, exprs)
37 op.checkSuspect(f, exprs)
57 exprs := op.split(e)
62 for j := 0; j <= len(exprs); j++ {
63 if j == len(exprs) || hasSideEffects(exprs[j]) {
65 sets = append(sets, exprs[i:j])
77 // Exprs must contain only side effect free expressions.
78 func (op boolOp) checkRedundant(f *File, exprs []ast.Expr)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
bool.go 35 for _, exprs := range comm {
36 op.checkRedundant(f, exprs)
37 op.checkSuspect(f, exprs)
57 exprs := op.split(e)
62 for j := 0; j <= len(exprs); j++ {
63 if j == len(exprs) || hasSideEffects(exprs[j]) {
65 sets = append(sets, exprs[i:j])
77 // Exprs must contain only side effect free expressions.
78 func (op boolOp) checkRedundant(f *File, exprs []ast.Expr)
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
ExprTest.java 194 private void assertFlags(Expr a, Expr... exprs) {
196 for (Expr expr : exprs) {
204 for (Expr expr : exprs) {
ExprModelTest.java     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
misc.c 99 lclass[i].exprs = (char **)
100 realloc((char *)lclass[i].exprs, tsize*sizeof(char *));
101 require(lclass[i].exprs != NULL, "Ttrack: can't extend ExprStr");
102 for (p= &lclass[i].exprs[tsize-more],j=1; j<=more; j++) *p++ = NULL;
163 lclass[CurrentLexClass].exprs = (char **) calloc(tsize, sizeof(char *));
164 require(lclass[CurrentLexClass].exprs!=NULL,
167 ExprStr = lclass[CurrentLexClass].exprs;
189 ExprStr = lclass[i].exprs;
315 /* Change the token number in the sym tab entry for the exprs
323 if ( lclass[i].exprs[q->tnum]!=NULL )
    [all...]
generic.h 204 char *classnum, **exprs; member in struct:_lc
  /external/clang/lib/AST/
Stmt.cpp 72 llvm::errs() << " " << sum << " stmts/exprs total.\n";
398 return cast<Expr>(Exprs[i]);
409 return cast<Expr>(Exprs[i + NumOutputs]);
412 Exprs[i + NumOutputs] = E;
424 Stmt **Exprs,
439 C.Deallocate(this->Exprs);
440 this->Exprs = new (C) Stmt*[NumExprs];
441 std::copy(Exprs, Exprs + NumExprs, this->Exprs);
    [all...]
Expr.cpp     [all...]
  /external/v8/tools/gcmole/
gcmole.cc 678 clang::Expr* exprs[2] = {expr->getBase(), expr->getIdx()}; local
679 return Par(expr, 2, exprs, env);
694 clang::Expr* exprs[2] = {lhs, rhs}; local
698 return Seq(expr, 2, exprs, env);
709 return Par(expr, 2, exprs, env);
713 return Par(expr, 2, exprs, env);
789 clang::Expr** exprs,
794 props.SetEffect(i, VisitExpr(exprs[i], env));
804 clang::Expr** exprs,
809 out = ExprEffect::MergeSeq(out, VisitExpr(exprs[i], out_env))
    [all...]
  /external/clang/lib/ARCMigrate/
Transforms.h 217 void collectRemovables(Stmt *S, ExprSet &exprs);
Transforms.cpp 313 void trans::collectRemovables(Stmt *S, ExprSet &exprs) {
314 RemovablesCollector(exprs).TraverseStmt(S);
  /external/elfutils/tests/
varlocs.c 126 print_expr_block (Dwarf_Attribute *attr, Dwarf_Op *exprs, int len,
132 print_expr (attr, &exprs[i], addr);
141 Dwarf_Op *exprs, int len)
144 print_expr_block (attr, exprs, len, begin);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionPathIterator.java 110 DTMIterator[] exprs = m_iterators; local
115 System.arraycopy(exprs, 0, m_iterators, 0, len);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
noder.go 163 var exprs []*Node
165 exprs = p.exprList(decl.Values)
169 return variter(names, typ, exprs)
180 var exprs []*Node
182 exprs = p.exprList(decl.Values)
185 return constiter(names, typ, exprs)
328 return p.exprs(list.ElemList)
333 func (p *noder) exprs(exprs []syntax.Expr) []*Node { func
335 for _, expr := range exprs {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
noder.go 163 var exprs []*Node
165 exprs = p.exprList(decl.Values)
169 return variter(names, typ, exprs)
180 var exprs []*Node
182 exprs = p.exprList(decl.Values)
185 return constiter(names, typ, exprs)
328 return p.exprs(list.ElemList)
333 func (p *noder) exprs(exprs []syntax.Expr) []*Node { func
335 for _, expr := range exprs {
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf.c 1917 XArray* exprs; member in struct:__anon37227
    [all...]
priv_storage.h     [all...]
  /prebuilts/go/darwin-x86/src/go/types/
resolver.go 51 // have the appropriate number of names and init exprs. For const
52 // decls, init is the value spec providing the init exprs; for
53 // var decls, init is nil (the init exprs are in s in this case).
69 // init exprs from s
74 // init exprs "inherited"
176 var last *ast.ValueSpec // last ValueSpec with type or init exprs seen
decl.go 150 // (see Checker.objDecl) and the assignment of init exprs,
444 var last *ast.ValueSpec // last ValueSpec with type or init exprs seen
450 // determine which init exprs to use
  /prebuilts/go/linux-x86/src/go/types/
resolver.go 51 // have the appropriate number of names and init exprs. For const
52 // decls, init is the value spec providing the init exprs; for
53 // var decls, init is nil (the init exprs are in s in this case).
69 // init exprs from s
74 // init exprs "inherited"
176 var last *ast.ValueSpec // last ValueSpec with type or init exprs seen
decl.go 150 // (see Checker.objDecl) and the assignment of init exprs,
444 var last *ast.ValueSpec // last ValueSpec with type or init exprs seen
450 // determine which init exprs to use
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
ExprModel.java 493 ArrayList<Expr> exprs = new ArrayList<Expr>(mBindingExpressions);
494 for (Expr expr : exprs) {
628 public static ArrayList<Expr> filterShouldRead(Iterable<Expr> exprs) {
630 for (Expr expr : exprs) {
Expr.java 756 protected static List<Expr> cloneToModel(ExprModel model, List<Expr> exprs) {
758 for (Expr expr : exprs) {
  /external/vulkan-validation-layers/
parameter_validation_generator.py 606 def genCheckedLengthCall(self, name, exprs):
617 for expr in exprs:
625 return exprs
628 def genConditionalCall(self, prefix, condition, exprs):
635 for expr in exprs:
    [all...]
  /external/libmojo/third_party/jinja2/
parser.py 55 for exprs in end_token_stack:
56 expected.extend(imap(describe_token_expr, exprs))
    [all...]

Completed in 1708 milliseconds

1 2 3 4 5 6