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

1234

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEnvironment.h1 //===-- Environment.h -------------------------------------------*- C++ -*-===//
18 class Environment : private llvm::StringMap<std::string> { class in namespace:lldb_private
31 explicit Envp(const Environment &Env);
35 friend class Environment;
59 Environment() : Base() {} function in class:lldb_private::Environment
60 Environment(const Environment &RHS) : Base(RHS) {} function in class:lldb_private::Environment
61 Environment(Environment &&RHS) : Base(std::move(RHS)) {} function in class:lldb_private::Environment
62 Environment(cha function in class:lldb_private::Environment
[all...]
H A DProcessInfo.h14 #include "lldb/Utility/Environment.h"
88 Environment &GetEnvironment() { return m_environment; }
89 const Environment &GetEnvironment() const { return m_environment; }
98 Environment m_environment;
H A DArgs.h12 #include "lldb/Utility/Environment.h"
75 explicit Args(const Environment &env) : Args() {
79 explicit operator Environment() const { return GetConstArgumentVector(); }
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h1 //===- Environment.h - Map from Stmt* to Locations/Values -------*- C++ -*-===//
9 // This file defined the Environment and EnvironmentManager classes.
56 class Environment { class in namespace:clang::ento
64 Environment(BindingsTy eb) : ExprBindings(eb) {} function in class:clang::ento::Environment
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 {
101 using FactoryTy = Environment::BindingsTy::Factory;
108 Environment getInitialEnvironmen
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Utility/
H A DEnvironment.cpp1 //===-- Environment.cpp ---------------------------------------------------===//
9 #include "lldb/Utility/Environment.h"
13 char *Environment::Envp::make_entry(llvm::StringRef Key,
28 Environment::Envp::Envp(const Environment &Env) {
37 Environment::Environment(const char *const *Env) { function in class:Environment
44 void Environment::insert(const_iterator first, const_iterator last) {
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBEnvironment.h127 SBEnvironment(lldb_private::Environment rhs);
129 lldb_private::Environment &ref() const;
132 std::unique_ptr<lldb_private::Environment> m_opaque_up;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.h36 class Environment { class in namespace:clang::format
43 Environment(StringRef Code, StringRef FileName,
82 TokenAnalyzer(const Environment &Env, const FormatStyle &Style);
98 const Environment &Env;
H A DUsingDeclarationsSorter.h25 UsingDeclarationsSorter(const Environment &Env, const FormatStyle &Style);
H A DNamespaceEndCommentsFixer.h35 NamespaceEndCommentsFixer(const Environment &Env, const FormatStyle &Style);
H A DTokenAnalyzer.cpp36 Environment::Environment(StringRef Code, StringRef FileName, function in class:clang::format::Environment
51 TokenAnalyzer::TokenAnalyzer(const Environment &Env, const FormatStyle &Style)
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest_skip_in_environment_setup_test.cc39 class SetupEnvironment : public testing::Environment {
H A Dgoogletest-listener-test.cc40 using ::testing::Environment;
128 class EnvironmentInvocationCatcher : public Environment {
131 g_events->push_back("Environment::SetUp");
135 g_events->push_back("Environment::TearDown");
226 "Environment::SetUp",
255 "Environment::TearDown",
264 "Environment::SetUp",
293 "Environment::TearDown",
H A Dgtest_environment_test.cc49 class MyEnvironment : public testing::Environment {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp1 //===- 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"
76 SVal Environment::lookupExpr(const EnvironmentEntry &E) const {
85 SVal Environment::getSVal(const EnvironmentEntry &Entry,
128 Environment EnvironmentManager::bindExpr(Environment Env,
134 return Environment(F.remove(Env.ExprBindings, E));
138 return Environment(F.add(Env.ExprBindings, E, V));
169 Environment
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBEnvironment.cpp14 #include "lldb/Utility/Environment.h"
19 SBEnvironment::SBEnvironment() : m_opaque_up(new Environment()) {
28 SBEnvironment::SBEnvironment(Environment rhs)
29 : m_opaque_up(new Environment(std::move(rhs))) {}
102 entries.AppendString(Environment::compose(KV).c_str());
132 Environment &SBEnvironment::ref() const { return *m_opaque_up; }
H A DSBLaunchInfo.cpp35 Environment::Envp m_envp;
186 SetEnvironment(SBEnvironment(Environment(envp)), append);
192 Environment &refEnv = env.ref();
203 SBEnvironment(Environment(m_opaque_sp->GetEnvironment())));
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp40 static void FixupEnvironment(Environment &env) {
126 Environment env = info.GetEnvironment();
128 Environment::Envp envp = env.getEnvp();
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp295 Environment.reserve(NewEnvironment.size() + 1);
296 Environment.assign(NewEnvironment.begin(), NewEnvironment.end());
297 Environment.push_back(nullptr);
343 if (!Environment.empty()) {
344 assert(Environment.back() == nullptr &&
345 "Environment vector should be null-terminated by now");
346 ArgvVectorStorage = llvm::toStringRefArray(Environment.data());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.h47 char const *argv[], lldb_private::Environment env,
217 char const **argv, lldb_private::Environment env,
227 lldb_private::Environment m_env; // Process environment.
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DTriple.h250 /// The parsed Environment type.
251 EnvironmentType Environment; member in class:llvm::Triple
263 : Data(), Arch(), SubArch(), Vendor(), OS(), Environment(),
274 Environment == Other.Environment &&
318 EnvironmentType getEnvironment() const { return Environment; }
/freebsd-13-stable/sys/contrib/openzfs/scripts/
H A Dkmodtool76 Group: System Environment/Kernel
110 Group: System Environment/Kernel
159 Group: System Environment/Kernel
243 Group: System Environment/Kernel
300 Group: System Environment/Kernel
344 Group: System Environment/Kernel
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h408 enum Environment { IsMachO, IsELF, IsCOFF, IsWasm, IsXCOFF }; enum in class:llvm::MCObjectFileInfo
409 Environment getObjectFileType() const { return Env; }
414 Environment Env;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DTriple.cpp736 Vendor(UnknownVendor), OS(UnknownOS), Environment(UnknownEnvironment),
749 Environment = parseEnvironment(Components[3]);
754 Environment =
780 Environment(), ObjectFormat(Triple::UnknownObjectFormat) {
797 Environment(parseEnvironment(EnvironmentStr.str())),
828 EnvironmentType Environment = UnknownEnvironment; local
830 Environment = parseEnvironment(Components[3]);
841 Found[3] = Environment != UnknownEnvironment;
875 Environment = parseEnvironment(Comp);
876 Valid = Environment !
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp240 Environment Host::GetEnvironment() { return Environment(environ); }
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp48 Environment Host::GetEnvironment() { return Environment(environ); }

Completed in 288 milliseconds

1234