Lines Matching refs:Env
22 explicit NormalizingEnvWrapper(Env* base) : EnvWrapper(base) {} in NormalizingEnvWrapper()
54 public ::testing::WithParamInterface<Env*> {
56 Env* env_;
83 static std::unique_ptr<Env> def_env(new NormalizingEnvWrapper(Env::Default()));
89 static std::unique_ptr<Env> mock_env(new MockEnv(Env::Default()));
93 static std::unique_ptr<Env> mem_env(NewMemEnv(Env::Default()));
104 std::vector<Env*> GetCustomEnvs() { in GetCustomEnvs()
105 static Env* custom_env; in GetCustomEnvs()
111 Env::LoadEnv(uri, &custom_env); in GetCustomEnvs()
115 std::vector<Env*> res; in GetCustomEnvs()
313 std::vector<Env::FileAttributes> childAttr; in TEST_P()