HomeSort by: relevance | last modified time | path
    Searched refs:Environment (Results 1 - 25 of 107) sorted by relevancy

1 2 3 4 5

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Environment.h 1 //===- Environment.h - Map from Stmt* to Locations/Values -------*- C++ -*-===//
9 // 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 {
64 Environment(BindingsTy eb) : ExprBindings(eb) {}
75 /// Environment.
78 /// Profile - Profile the contents of an Environment object for use
80 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) {
90 bool operator==(const Environment& RHS) const
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
TokenAnalyzer.h 36 class Environment {
43 Environment(StringRef Code, StringRef FileName,
54 // environment starts.
58 // managed by this environment should start.
62 // environment should end if it ends in a newline.
82 TokenAnalyzer(const Environment &Env, const FormatStyle &Style);
98 const Environment &Env;
UsingDeclarationsSorter.h 25 UsingDeclarationsSorter(const Environment &Env, const FormatStyle &Style);
NamespaceEndCommentsFixer.h 35 NamespaceEndCommentsFixer(const Environment &Env, const FormatStyle &Style);
TokenAnalyzer.cpp 36 Environment::Environment(StringRef Code, StringRef FileName,
51 TokenAnalyzer::TokenAnalyzer(const Environment &Env, const FormatStyle &Style)
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
Environment.cpp 1 //===- Environment.cpp - Map from Stmt* to Locations/Values ---------------===//
9 // This file defined the Environment and EnvironmentManager classes.
13 #include "clang/StaticAnalyzer/Core/PathSensitive/Environment.h"
77 SVal Environment::lookupExpr(const EnvironmentEntry &E) const {
86 SVal Environment::getSVal(const EnvironmentEntry &Entry,
92 "Environment can only argue about Exprs, since only they express "
93 "a value! Any non-expression statement stored in Environment is a "
136 Environment EnvironmentManager::bindExpr(Environment Env,
142 return Environment(F.remove(Env.ExprBindings, E))
    [all...]
  /src/external/mpl/dhcp/dist/contrib/
dhcp.spec 6 Group: System Environment/Daemons
20 Group: System Environment/Configuration
28 Group: System Environment/Daemons
111 echo "server startup\n in your system startup environment."
  /src/external/gpl3/autoconf/dist/man/
config.guess.x 6 [Environment variables]
8 compiler for the `build' machine: use the environment variable
  /src/external/apache2/llvm/lib/libclangStaticAnalyzerCore/
Makefile 27 Environment.cpp \
  /src/libexec/httpd/
printenv.lua 4 -- it will simply output the "environment"
23 -- we get the "environment" in the env table, the values are more
36 <title>Bozotic Lua Environment</title>
39 <h1>Bozotic Lua Environment</h1>
44 httpd.print('<h2>Server Environment</h2>')
45 -- print the list of "environment" variables
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Job.cpp 298 Environment.reserve(NewEnvironment.size() + 1);
299 Environment.assign(NewEnvironment.begin(), NewEnvironment.end());
300 Environment.push_back(nullptr);
346 if (!Environment.empty()) {
347 assert(Environment.back() == nullptr &&
348 "Environment vector should be null-terminated by now");
349 ArgvVectorStorage = llvm::toStringRefArray(Environment.data());
412 // We don't support set a new environment when calling into ExecuteCC1Tool()
414 "The CC1Command doesn't support changing the environment vars!");
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Triple.h 31 /// ARCHITECTURE-VENDOR-OPERATING_SYSTEM-ENVIRONMENT
257 /// The parsed Environment type.
258 EnvironmentType Environment;
270 : Data(), Arch(), SubArch(), Vendor(), OS(), Environment(),
281 Environment == Other.Environment &&
318 /// hasEnvironment - Does this triple have the optional environment
324 /// getEnvironment - Get the parsed environment type of this triple.
325 EnvironmentType getEnvironment() const { return Environment; }
391 /// getEnvironmentName - Get the optional environment (fourth
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Triple.cpp 766 Vendor(UnknownVendor), OS(UnknownOS), Environment(UnknownEnvironment),
779 Environment = parseEnvironment(Components[3]);
784 Environment =
802 /// them into enum members. It leaves the environment unknown and omits it from
810 Environment(), ObjectFormat(Triple::UnknownObjectFormat) {
815 /// vendor, OS, and environment.
827 Environment(parseEnvironment(EnvironmentStr.str())),
858 EnvironmentType Environment = UnknownEnvironment;
860 Environment = parseEnvironment(Components[3]);
871 Found[3] = Environment != UnknownEnvironment
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdb_buildall.sh 20 # environment. The script is grepping for GDB's output.
47 Environment variables examined (with default if not defined):
97 ### Environment.
gdb_mbuild.sh 24 # environment.
43 Environment variables examined (with default if not defined):
120 ### ENVIRONMENT PARAMETERS
  /src/external/gpl3/gdb.old/dist/gdb/
gdb_buildall.sh 20 # environment. The script is grepping for GDB's output.
47 Environment variables examined (with default if not defined):
97 ### Environment.
gdb_mbuild.sh 24 # environment.
43 Environment variables examined (with default if not defined):
120 ### ENVIRONMENT PARAMETERS
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
template.py 33 to the environment variables set by the pytest runner).
37 self.j2env = jinja2.Environment(
52 `template` defaults to *.j2.manual or *.j2 file. The environment
  /src/external/apache2/llvm/dist/clang/tools/clang-format-vs/ClangFormat/
ClangFormatPackage.cs 330 if (!text.EndsWith(Environment.NewLine))
332 view.TextBuffer.Insert(view.TextBuffer.CurrentSnapshot.Length, Environment.NewLine);
333 text += Environment.NewLine;
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Darwin.h 339 void setTarget(DarwinPlatformKind Platform, DarwinEnvironmentKind Environment,
344 TargetEnvironment == Environment &&
351 TargetEnvironment = Environment;
353 if (Environment == Simulator)
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest.h 459 // SetUp/TearDown method of Environment objects registered with Google
1031 // An Environment object is capable of setting up and tearing down an
1032 // environment. You should subclass this to define your own
1033 // environment(s).
1035 // An Environment object does the set-up and tear-down in virtual
1045 class Environment {
1047 // The d'tor is virtual as we need to subclass Environment.
1048 virtual ~Environment() {}
1050 // Override this to define how to set up the environment.
1053 // Override this to define how to tear down the environment
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCContext.h 77 enum Environment { IsMachO, IsELF, IsCOFF, IsWasm, IsXCOFF };
80 Environment Env;
154 /// The file name of the log file from the environment variable
404 Environment getObjectFileType() const { return Env; }
  /src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
Process.inc 118 /// Returns the environment variable \arg Name's value as a string encoded in
126 // Environment variable can be encoded in non-UTF8 encoding, and there's no
128 // multibyte environment variable is to use GetEnvironmentVariableW().
  /src/external/bsd/nsd/dist/contrib/
nsd.spec 11 Group: System Environment/Daemons
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Job.h 141 std::vector<const char *> Environment;
200 /// Sets the environment to be used by the new process.
201 /// \param NewEnvironment An array of environment variables.
202 /// \remark If the environment remains unset, then the environment

Completed in 49 milliseconds

1 2 3 4 5