HomeSort by relevance Sort by last modified time
    Searched full:autovar (Results 1 - 3 of 3) sorted by null

  /external/clang/test/SemaCXX/
auto-pragma.cpp 1 // RUN: %clang_cc1 -fsyntax-only %s -std=c++11 -ast-dump -ast-dump-filter AutoVar | FileCheck %s
9 auto AutoVar = foo();
11 // CHECK: VarDecl {{.*}} AutoVar
  /build/kati/
evalcmd.go 44 av := autoVar{ctx: ctx}
46 "@": autoAtVar{autoVar: av},
47 "<": autoLessVar{autoVar: av},
48 "^": autoHatVar{autoVar: av},
49 "+": autoPlusVar{autoVar: av},
50 "*": autoStarVar{autoVar: av},
81 type autoVar struct{ ctx *execContext }
83 func (v autoVar) Flavor() string { return "undefined" }
84 func (v autoVar) Origin() string { return "automatic" }
85 func (v autoVar) IsDefined() bool { return true
    [all...]
command.cc 31 class AutoVar : public Var {
48 return string("AutoVar(") + sym_ + ")";
52 AutoVar(CommandEvaluator* ce, const char* sym) : ce_(ce), sym_(sym) {}
53 virtual ~AutoVar() = default;
60 class name : public AutoVar { \
63 : AutoVar(ce, sym) {} \
75 class AutoSuffixDVar : public AutoVar {
78 : AutoVar(ce, sym), wrapped_(wrapped) {
87 class AutoSuffixFVar : public AutoVar {
90 : AutoVar(ce, sym), wrapped_(wrapped) {
    [all...]

Completed in 83 milliseconds