Home
last modified time | relevance | path

Searched refs:Environment (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/v8/tools/gcmole/
Dgcmole.cc275 class Environment;
289 static ExprEffect NoneWithEnv(Environment* env) { in NoneWithEnv()
298 Environment* env() { in env()
299 return reinterpret_cast<Environment*>(effect_ & ~kAllEffects); in env()
307 ExprEffect(int effect, Environment* env) in ExprEffect()
319 class Environment { class
321 Environment() { } in Environment() function in __anona69aa4600111::Environment
323 static Environment Unreachable() { in Unreachable()
324 Environment env; in Unreachable()
329 static Environment Merge(const Environment& l, in Merge()
[all …]
/external/v8/src/compiler/
Dcontrol-builders.h28 typedef AstGraphBuilder::Environment Environment; typedef
31 Environment* environment() { return builder_->environment(); } in environment()
32 void set_environment(Environment* env) { builder_->set_environment(env); } in set_environment()
54 Environment* then_environment_; // Environment after the 'then' body.
55 Environment* else_environment_; // Environment for the 'else' body.
82 Environment* loop_environment_; // Environment of the loop header.
83 Environment* continue_environment_; // Environment after the loop body.
84 Environment* break_environment_; // Environment after the loop exits.
114 Environment* body_environment_; // Environment after last case body.
115 Environment* label_environment_; // Environment for next label condition.
[all …]
Dbytecode-graph-builder.cc19 class BytecodeGraphBuilder::Environment : public ZoneObject { class in v8::internal::compiler::BytecodeGraphBuilder
21 Environment(BytecodeGraphBuilder* builder, int register_count,
60 Environment* CopyForConditional() const;
61 Environment* CopyForLoop();
62 void Merge(Environment* other);
65 explicit Environment(const Environment* copy);
127 friend class Environment;
172 BytecodeGraphBuilder::Environment::Environment(BytecodeGraphBuilder* builder, in Environment() function in v8::internal::compiler::BytecodeGraphBuilder::Environment
214 BytecodeGraphBuilder::Environment::Environment( in Environment() function in v8::internal::compiler::BytecodeGraphBuilder::Environment
215 const BytecodeGraphBuilder::Environment* other) in Environment()
[all …]
Dbytecode-graph-builder.h29 class Environment;
50 void set_environment(Environment* env) { environment_ = env; } in set_environment()
51 const Environment* environment() const { return environment_; } in environment()
52 Environment* environment() { return environment_; } in environment()
220 Environment* environment_;
225 ZoneMap<int, Environment*> merge_environments_;
Dast-graph-builder.h73 class Environment; variable
81 Environment* environment_;
135 Environment* environment() const { return environment_; } in environment()
155 void set_environment(Environment* env) { environment_ = env; } in set_environment()
471 class AstGraphBuilder::Environment : public ZoneObject {
473 Environment(AstGraphBuilder* builder, Scope* scope, Node* control_dependency);
564 void Merge(Environment* other);
567 Environment* CopyForConditional();
570 Environment* CopyAsUnreachable();
573 Environment* CopyForLoop(BitVector* assigned, bool is_osr = false);
[all …]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DEnvironment.h55 class Environment {
65 Environment(BindingsTy eb) in Environment() function
81 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) { in Profile()
91 bool operator==(const Environment& RHS) const {
104 typedef Environment::BindingsTy::Factory FactoryTy;
110 Environment getInitialEnvironment() { in getInitialEnvironment()
111 return Environment(F.getEmptyMap()); in getInitialEnvironment()
115 Environment bindExpr(Environment Env, const EnvironmentEntry &E, SVal V,
118 Environment removeDeadBindings(Environment Env,
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
DEnvironment.java30 public class Environment extends Attributes { class
34 public Environment () { in Environment() method in Environment
37 public Environment add (final BaseLight... lights) { in add()
43 public Environment add (final Array<BaseLight> lights) { in add()
49 public Environment add (BaseLight light) { in add()
61 public Environment add (DirectionalLight light) { in add()
68 public Environment add (PointLight light) { in add()
75 public Environment add (SpotLight light) { in add()
82 public Environment remove (final BaseLight... lights) { in remove()
88 public Environment remove (final Array<BaseLight> lights) { in remove()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
DEnvironment.java41 public class Environment { class
63 public static final Environment Garage, Dungeon, Cavern, AcousticLab, Closet;
66 Garage = new Environment(1, 1, 1, 1, .9f, .5f, .751f, .0039f, .661f, .0137f);
67 Dungeon = new Environment(.75f, 1, 1, .75f, 1.6f, 1, 0.95f, 0.0026f, 0.93f, 0.0103f);
68 Cavern = new Environment(.5f, 1, 1, .5f, 2.25f, 1, .908f, .0103f, .93f, .041f);
69 AcousticLab = new Environment(.5f, 1, 1, 1, .28f, 1, .87f, .002f, .81f, .008f);
70 Closet = new Environment(1, 1, 1, 1, .15f, 1, .6f, .0025f, .5f, .0006f);
78 public Environment(){ in Environment() method in Environment
81 public Environment(Environment source) { in Environment() method in Environment
97 public Environment(float density, float diffusion, float gain, float gainHf, in Environment() method in Environment
[all …]
/external/clang/lib/StaticAnalyzer/Core/
DEnvironment.cpp60 SVal Environment::lookupExpr(const EnvironmentEntry &E) const { in lookupExpr()
69 SVal Environment::getSVal(const EnvironmentEntry &Entry, in getSVal()
110 Environment EnvironmentManager::bindExpr(Environment Env, in bindExpr()
116 return Environment(F.remove(Env.ExprBindings, E)); in bindExpr()
120 return Environment(F.add(Env.ExprBindings, E, V)); in bindExpr()
146 Environment
147 EnvironmentManager::removeDeadBindings(Environment Env, in removeDeadBindings()
154 Environment NewEnv = getInitialEnvironment(); in removeDeadBindings()
164 for (Environment::iterator I = Env.begin(), E = Env.end(); in removeDeadBindings()
188 void Environment::print(raw_ostream &Out, const char *NL, in print()
[all …]
/external/libchrome/base/
Denvironment_unittest.cc17 scoped_ptr<Environment> env(Environment::Create()); in TEST_F()
24 scoped_ptr<Environment> env(Environment::Create()); in TEST_F()
53 scoped_ptr<Environment> env(Environment::Create()); in TEST_F()
58 scoped_ptr<Environment> env(Environment::Create()); in TEST_F()
73 scoped_ptr<Environment> env(Environment::Create()); in TEST_F()
Denvironment.cc26 class EnvironmentImpl : public Environment {
134 Environment::~Environment() {} in ~Environment()
137 Environment* Environment::Create() { in Create()
141 bool Environment::HasVar(const char* variable_name) { in HasVar()
Denvironment.h26 class BASE_EXPORT Environment {
28 virtual ~Environment();
32 static Environment* Create();
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DEnvironmentTest.java11 import android.os.Environment;
29 assertThat( Environment.getExternalStorageState(), equalTo("removed") ); in testExternalStorageState()
31 assertThat( Environment.getExternalStorageState(), equalTo("mounted") ); in testExternalStorageState()
36 assertTrue(Environment.getExternalStorageDirectory().exists()); in testGetExternalStorageDirectory()
41 File extStoragePublic = Environment.getExternalStoragePublicDirectory("Movies"); in testGetExternalStoragePublicDirectory()
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiObjectManagementTests.cpp226 struct Environment struct
236 Environment (Context& context, deUint32 maxResourceConsumers_) in Environment() function
247 Environment (const PlatformInterface& vkp_, in Environment() argument
271 Dependency (const Environment& env, const typename Case::Parameters& params) in Dependency()
333 const Environment env (context.getPlatformInterface(), in computeSystemMemoryUsage()
429 Resources (const Environment&, const Parameters&) {} in Resources()
437 static Move<VkInstance> create (const Environment& env, const Resources&, const Parameters&) in create()
487 Resources (const Environment& env, const Parameters& params) in Resources()
526 static Move<VkDevice> create (const Environment& env, const Resources& res, const Parameters&) in create()
578 Resources (const Environment&, const Parameters&) {} in Resources()
[all …]
/external/jmonkeyengine/engine/src/test/jme3test/audio/
DTestReverb.java33 import com.jme3.audio.Environment;
56 audioRenderer.setEnvironment(new Environment(eax)); in simpleInitApp()
57 Environment env = Environment.Cavern; in simpleInitApp()
DTestAmbient.java33 import com.jme3.audio.Environment;
55 Environment env = new Environment(eax); in simpleInitApp()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
DStats.cs38 using Environment = System.Environment; typedef
125 string personalFolder = Environment.GetFolderPath( Environment.SpecialFolder.Personal ); in GetAbsoluteFileName()
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
DAPKExpansionSupport.java23 import android.os.Environment;
33 if (Environment.getExternalStorageState().equals( in getAPKExpansionFiles()
34 Environment.MEDIA_MOUNTED)) { in getAPKExpansionFiles()
36 File root = Environment.getExternalStorageDirectory(); in getAPKExpansionFiles()
DAndroidFiles.java22 import android.os.Environment;
32 protected final String sdcard = Environment.getExternalStorageDirectory().getAbsolutePath() + "/";
103 return Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED); in isExternalStorageAvailable()
/external/vulkan-validation-layers/tests/
Dtest_environment.h40 class Environment : public ::testing::Environment {
42 Environment();
Dtest_environment.cpp48 Environment::Environment() : default_dev_(0) { in Environment() function in vk_testing::Environment
58 bool Environment::parse_args(int argc, char **argv) { in parse_args()
85 void Environment::SetUp() { in SetUp()
159 void Environment::TearDown() { in TearDown()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DJSystem.cs74 return Environment.NewLine; in getProperty()
80 return Environment.GetFolderPath( Environment.SpecialFolder.Personal ); in getProperty()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DJSystem.cs73 return Environment.NewLine; in getProperty()
79 return Environment.GetFolderPath( Environment.SpecialFolder.Personal ); in getProperty()
/external/sl4a/Utils/src/com/googlecode/android_scripting/
DFileUtils.java21 import android.os.Environment;
44 String state = Environment.getExternalStorageState(); in externalStorageMounted()
45 return Environment.MEDIA_MOUNTED.equals(state) in externalStorageMounted()
46 || Environment.MEDIA_MOUNTED_READ_ONLY.equals(state); in externalStorageMounted()
136 return new File(Environment.getExternalStorageDirectory(), "Download"); in getExternalDownload()
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
DBaseWorld.java19 import com.badlogic.gdx.graphics.g3d.Environment;
66 public void render (final ModelBatch batch, final Environment lights) { in render()
70 public void render (final ModelBatch batch, final Environment lights, final Iterable<T> entities) { in render()
76 public void render (final ModelBatch batch, final Environment lights, final T entity) { in render()

1234567891011