HomeSort by relevance Sort by last modified time
    Searched defs:Environment (Results 26 - 50 of 220) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
31 /// An entry in the environment consists of a Stmt and an LocationContext.
32 /// This allows the environment to manage context-sensitive bindings,
56 class Environment {
66 Environment(BindingsTy eb)
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
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
31 /// An entry in the environment consists of a Stmt and an LocationContext.
32 /// This allows the environment to manage context-sensitive bindings,
56 class Environment {
66 Environment(BindingsTy eb)
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
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
31 /// An entry in the environment consists of a Stmt and an LocationContext.
32 /// This allows the environment to manage context-sensitive bindings,
56 class Environment {
66 Environment(BindingsTy eb)
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
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
31 /// An entry in the environment consists of a Stmt and an LocationContext.
32 /// This allows the environment to manage context-sensitive bindings,
56 class Environment {
66 Environment(BindingsTy eb)
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
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/
test_environment.cpp 41 Environment::Environment() : default_dev_(0) {
51 bool Environment::parse_args(int argc, char **argv) {
78 void Environment::SetUp() {
152 void Environment::TearDown() {
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionApp22/src/com/android/cts/usepermission/
UsePermissionTest22.java 32 import android.os.Environment;
57 assertEquals(Environment.MEDIA_MOUNTED, Environment.getExternalStorageState());
58 assertDirReadWriteAccess(Environment.getExternalStorageDirectory());
86 assertEquals(Environment.MEDIA_UNMOUNTED, Environment.getExternalStorageState());
88 assertDirNoAccess(Environment.getExternalStorageDirectory());
97 assertDirNoAccess(new File(Environment.getExternalStorageDirectory(),
  /external/clang/lib/Format/
TokenAnalyzer.h 39 class Environment {
41 Environment(SourceManager &SM, FileID ID, ArrayRef<CharSourceRange> Ranges)
44 Environment(FileID ID, std::unique_ptr<FileManager> FileMgr,
54 static std::unique_ptr<Environment>
82 TokenAnalyzer(const Environment &Env, const FormatStyle &Style);
98 const Environment &Env;
  /external/libchrome/base/
environment.cc 5 #include "base/environment.h"
27 class EnvironmentImpl : public Environment {
106 // Parses a null-terminated input string of an environment block. The key is
135 Environment::~Environment() {}
138 std::unique_ptr<Environment> Environment::Create() {
142 bool Environment::HasVar(StringPiece variable_name) {
193 // First build up all of the unchanged environment strings. These are
  /external/deqp/scripts/
check_build_sanity.py 30 class Environment:
261 env = Environment(args.srcDir, args.tmpDir)
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowEnvironmentTest.java 12 import android.os.Environment;
27 ShadowEnvironment.setExternalStorageState(Environment.MEDIA_REMOVED);
32 assertThat(Environment.getExternalStorageState()).isEqualTo(Environment.MEDIA_REMOVED);
33 ShadowEnvironment.setExternalStorageState(Environment.MEDIA_MOUNTED);
34 assertThat(Environment.getExternalStorageState()).isEqualTo(Environment.MEDIA_MOUNTED);
39 assertThat(Environment.getExternalStorageDirectory().exists()).isTrue();
44 final File path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MOVIES)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
Triple.cpp 412 Environment = ParseEnvironment(getEnvironmentName());
439 EnvironmentType Environment = UnknownEnvironment;
441 Environment = ParseEnvironment(Components[3]);
449 Found[3] = Environment != UnknownEnvironment;
482 Environment = ParseEnvironment(Comp);
483 Valid = Environment != UnknownEnvironment;
492 // or a wrongly positioned environment.
  /external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
run_config.py 49 class Environment(object):
76 `TF_CONFIG` environment variable, if the pertinent information is
77 present. The `TF_CONFIG` environment variable is a JSON object with
78 attributes: `cluster`, `environment`, and `task`.
84 `environment` specifies the runtime environment for the job (usually one of
85 the `Environment` enums). Defaults to `LOCAL`.
101 `environment`.
125 # environment variable is present, load cluster_spec from TF_CONFIG.
128 # Set task_type and task_id if the TF_CONFIG environment variable i
163 def environment(self): member in class:ClusterConfig
    [all...]
  /external/v8/src/compiler/
control-builders.h 28 typedef AstGraphBuilder::Environment Environment;
31 Environment* environment() { return builder_->environment(); } function in class:v8::internal::compiler::ControlBuilder
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
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
NavigationViewManager.java 43 private final NavigationViewManager.Environment mEnv;
50 NavigationViewManager.Environment env,
128 void setup(Environment env, State state, IntConsumer listener);
133 interface Environment {
  /packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DocumentsAdapter.java 83 interface Environment {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Driver/
Job.h 74 std::vector<const char *> Environment;
118 /// \brief Sets the environment to be used by the new process.
119 /// \param NewEnvironment An array of environment variables.
120 /// \remark If the environment remains unset, then the environment

Completed in 843 milliseconds

12 3 4 5 6 7 8 9