Searched refs:Environment (Results 1 - 25 of 208) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DTestFixtureBase.cs42 public static readonly string NL = Environment.NewLine;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
56 class Environment { class in namespace:clang::ento
66 Environment(BindingsTy eb) function in class:clang::ento::Environment
77 /// Environment.
80 /// Profile - Profile the contents of an Environment object for use
82 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) {
92 bool operator==(const Environment& RHS) const {
105 typedef Environment::BindingsTy::Factory FactoryTy;
111 Environment getInitialEnvironmen
[all...]
/external/v8/src/compiler/
H A Dcontrol-builders.h28 typedef AstGraphBuilder::Environment Environment; typedef in class:v8::internal::compiler::ControlBuilder
31 Environment* environment() { return builder_->environment(); }
32 void set_environment(Environment* env) { builder_->set_environment(env); }
54 Environment* then_environment_; // Environment after the 'then' body.
55 Environment* else_environment_; // Environment for the 'else' body.
87 Environment* loop_environment_; // Environment o
[all...]
H A Dbytecode-graph-builder.cc26 class BytecodeGraphBuilder::Environment : public ZoneObject { class in class:v8::internal::compiler::BytecodeGraphBuilder
28 Environment(BytecodeGraphBuilder* builder, int register_count,
73 Environment* Copy();
74 void Merge(Environment* other);
82 explicit Environment(const Environment* copy);
119 BytecodeGraphBuilder::Environment::Environment(BytecodeGraphBuilder* builder, function in class:v8::internal::compiler::BytecodeGraphBuilder::Environment
160 BytecodeGraphBuilder::Environment::Environment( function in class:v8::internal::compiler::BytecodeGraphBuilder::Environment
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DJSystem.cs73 return Environment.NewLine;
79 return Environment.GetFolderPath( Environment.SpecialFolder.Personal );
/external/vulkan-validation-layers/tests/
H A Dtest_environment.h33 class Environment : public ::testing::Environment { class in namespace:vk_testing
35 Environment();
H A Dvktestframeworkandroid.h51 class TestEnvironment : public ::testing::Environment {
H A Dtest_environment.cpp41 Environment::Environment() : default_dev_(0) { function in class:vk_testing::Environment
51 bool Environment::parse_args(int argc, char **argv) {
78 void Environment::SetUp() {
152 void Environment::TearDown() {
/external/swiftshader/tests/unittests/
H A DSwiftShaderTest.h20 class SwiftShaderTestEnvironment : public testing::Environment {
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DEnvironmentTest.java11 import android.os.Environment;
29 assertThat( Environment.getExternalStorageState(), equalTo("removed") );
31 assertThat( Environment.getExternalStorageState(), equalTo("mounted") );
36 assertTrue(Environment.getExternalStorageDirectory().exists());
41 File extStoragePublic = Environment.getExternalStoragePublicDirectory("Movies");
/external/v8/tools/gcmole/
H A Dgcmole.cc275 class Environment;
289 static ExprEffect NoneWithEnv(Environment* env) {
298 Environment* env() {
299 return reinterpret_cast<Environment*>(effect_ & ~kAllEffects);
307 ExprEffect(int effect, Environment* env)
319 class Environment { class in namespace:__anon23614
321 Environment() = default;
323 static Environment Unreachable() {
324 Environment env;
329 static Environment Merg
402 Environment(const Environment& l, int code) function in class:__anon23614::Environment
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DJSystem.cs74 return Environment.NewLine;
80 return Environment.GetFolderPath( Environment.SpecialFolder.Personal );
/external/libchrome/base/
H A Denvironment.h27 class BASE_EXPORT Environment { class in namespace:base
29 virtual ~Environment();
32 static std::unique_ptr<Environment> Create();
H A Denvironment_unittest.cc19 std::unique_ptr<Environment> env(Environment::Create());
26 std::unique_ptr<Environment> env(Environment::Create());
55 std::unique_ptr<Environment> env(Environment::Create());
60 std::unique_ptr<Environment> env(Environment::Create());
75 std::unique_ptr<Environment> env(Environment
[all...]
/external/clang/lib/Format/
H A DTokenAnalyzer.h39 class Environment { class in namespace:clang::format
41 Environment(SourceManager &SM, FileID ID, ArrayRef<CharSourceRange> Ranges) function in class:clang::format::Environment
44 Environment(FileID ID, std::unique_ptr<FileManager> FileMgr, function in class:clang::format::Environment
54 static std::unique_ptr<Environment>
82 TokenAnalyzer(const Environment &Env, const FormatStyle &Style);
98 const Environment &Env;
/external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
H A DInterpreterConstants.java19 import android.os.Environment;
28 Environment.getExternalStorageDirectory().getAbsolutePath() + "/";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DStats.cs38 using Environment = System.Environment;
125 string personalFolder = Environment.GetFolderPath( Environment.SpecialFolder.Personal );
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowEnvironment.java5 import android.os.Environment;
9 @Implements(Environment.class)
/external/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp1 //== Environment.cpp - Map from Stmt* to Locations/Values -------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
60 SVal Environment::lookupExpr(const EnvironmentEntry &E) const {
69 SVal Environment::getSVal(const EnvironmentEntry &Entry,
110 Environment EnvironmentManager::bindExpr(Environment Env,
116 return Environment(F.remove(Env.ExprBindings, E));
120 return Environment(F.add(Env.ExprBindings, E, V));
146 Environment
147 EnvironmentManager::removeDeadBindings(Environment En
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
H A DSimpleThreadPool.h18 // Environment provides a way to create threads and also allows to intercept
20 template <typename Environment>
24 explicit SimpleThreadPoolTempl(int num_threads, Environment env = Environment()) argument
121 typedef typename Environment::Task Task;
122 typedef typename Environment::EnvThread Thread;
136 Environment env_;
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
H A DEnsureJpaCanTakeObjectsInPropertiesTest.java25 import org.hibernate.cfg.Environment;
54 p.put(Environment.CONNECTION_PROVIDER, InjectedDataSourceConnectionProvider.class.getName());
56 p.put(Environment.DATASOURCE, ds);
/external/libmojo/third_party/jinja2/
H A D__init__.py33 from jinja2.environment import Environment, Template namespace
60 'Environment', 'Template', 'BaseLoader', 'FileSystemLoader',
/external/jsoncpp/scons-tools/
H A Dglobtool.py46 from SCons.Script import Environment namespace
47 Environment.Glob = Glob
/external/svox/pico/src/com/svox/pico/providers/
H A DSettingsProvider.java23 import android.os.Environment;
85 cursor.putSettings(Environment.getExternalStorageDirectory() + "/svox/");
/external/sl4a/Utils/src/com/googlecode/android_scripting/
H A DFileUtils.java21 import android.os.Environment;
44 String state = Environment.getExternalStorageState();
45 return Environment.MEDIA_MOUNTED.equals(state)
46 || Environment.MEDIA_MOUNTED_READ_ONLY.equals(state);
131 Class<?> c = Class.forName("android.os.Environment");
136 return new File(Environment.getExternalStorageDirectory(), "Download");

Completed in 776 milliseconds

123456789