Home
last modified time | relevance | path

Searched refs:m_environment (Results 1 – 25 of 293) sorted by relevance

12345678910>>...12

/dports/games/gtkradiant/GPL/GtkRadiant/libs/generic/
H A Dcallback.h36 void* m_environment; variable
52 return m_environment; in getEnvironment()
60 m_thunk(m_environment); in operator()
81 void* m_environment; variable
99 return m_environment; in getEnvironment()
182 return &m_environment; in getEnvironment()
232 return &m_environment; in getEnvironment()
282 return &m_environment; in getEnvironment()
332 return &m_environment; in getEnvironment()
378 return m_environment; in getEnvironment()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/connectivity/source/drivers/jdbc/
H A DContextClassLoader.cxx35 :m_environment( environment ) in ContextClassLoaderScope()
46 LocalRef< jclass > threadClass( m_environment ); in ContextClassLoaderScope()
47 threadClass.set( m_environment.FindClass( "java/lang/Thread" ) ); in ContextClassLoaderScope()
51 jmethodID currentThreadMethod( m_environment.GetStaticMethodID( in ContextClassLoaderScope()
56 …m_currentThread.set( m_environment.CallStaticObjectMethod( threadClass.get(), currentThreadMethod … in ContextClassLoaderScope()
60 jmethodID getContextClassLoaderMethod( m_environment.GetMethodID( in ContextClassLoaderScope()
65 LocalRef< jthrowable > throwable( m_environment, m_environment.ExceptionOccurred() ); in ContextClassLoaderScope()
69 m_setContextClassLoaderMethod = m_environment.GetMethodID( in ContextClassLoaderScope()
84m_environment.CallObjectMethod( m_currentThread.get(), m_setContextClassLoaderMethod, newClassLoad… in ContextClassLoaderScope()
85 LocalRef< jthrowable > throwable( m_environment, m_environment.ExceptionOccurred() ); in ContextClassLoaderScope()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/connectivity/source/drivers/jdbc/
H A DContextClassLoader.cxx35 :m_environment( environment ) in ContextClassLoaderScope()
46 LocalRef< jclass > threadClass( m_environment ); in ContextClassLoaderScope()
47 threadClass.set( m_environment.FindClass( "java/lang/Thread" ) ); in ContextClassLoaderScope()
51 jmethodID currentThreadMethod( m_environment.GetStaticMethodID( in ContextClassLoaderScope()
56 …m_currentThread.set( m_environment.CallStaticObjectMethod( threadClass.get(), currentThreadMethod … in ContextClassLoaderScope()
60 jmethodID getContextClassLoaderMethod( m_environment.GetMethodID( in ContextClassLoaderScope()
65 LocalRef< jthrowable > throwable( m_environment, m_environment.ExceptionOccurred() ); in ContextClassLoaderScope()
69 m_setContextClassLoaderMethod = m_environment.GetMethodID( in ContextClassLoaderScope()
84m_environment.CallObjectMethod( m_currentThread.get(), m_setContextClassLoaderMethod, newClassLoad… in ContextClassLoaderScope()
85 LocalRef< jthrowable > throwable( m_environment, m_environment.ExceptionOccurred() ); in ContextClassLoaderScope()
[all …]
/dports/devel/kdevelop/kdevelop-21.12.3/plugins/clang/
H A Dclangparsejob.cpp161 m_environment.addIncludes(IDefinesAndIncludesManager::manager()->includes(file)); in ClangParseJob()
163 m_environment.addDefines(IDefinesAndIncludesManager::manager()->defines(file)); in ClangParseJob()
164 m_environment.setParserSettings(ClangSettingsManager::self()->parserSettings(file)); in ClangParseJob()
176 m_environment.setQuality( in ClangParseJob()
180 m_environment.setTranslationUnitUrl(tuUrl); in ClangParseJob()
191 m_environment.setProjectPaths(projectPaths); in ClangParseJob()
230 const auto tuUrlStr = m_environment.translationUnitUrl().str(); in run()
242 m_environment.setPchInclude(userDefinedPchIncludeForFile(tuUrlStr)); in run()
287 if (!session.data() || !session.reparse(m_unsavedFiles, m_environment)) { in run()
312 if (auto pch = clang()->index()->pch(m_environment)) { in run()
[all …]
/dports/games/gtkradiant/GPL/GtkRadiant/include/
H A Ditextures.h34 void* m_environment;
37 LoadImageCallback(void* environment, LoadFunc func) : m_environment(environment), m_func(func) in LoadImageCallback()
42 return m_func(m_environment, name); in loadImage()
48 return self.m_environment == other.m_environment && self.m_func == other.m_func;
52 return self.m_environment < other.m_environment ||
53 (!(other.m_environment < self.m_environment) && self.m_func < other.m_func);
/dports/games/netradiant/netradiant-20150621-src/include/
H A Ditextures.h34 void* m_environment;
37 LoadImageCallback( void* environment, LoadFunc func ) : m_environment( environment ), m_func( func … in LoadImageCallback()
40 return m_func( m_environment, name ); in loadImage()
45 return self.m_environment == other.m_environment && self.m_func == other.m_func;
48 return self.m_environment < other.m_environment ||
49 ( !( other.m_environment < self.m_environment ) && self.m_func < other.m_func );
/dports/games/ufoai/ufoai-2.5-source/src/tools/radiant/include/
H A Ditextures.h35 void* m_environment;
39 m_environment(environment), m_func(func) in LoadImageCallback()
44 return m_func(m_environment, name); in loadImage()
50 return self.m_environment == other.m_environment && self.m_func == other.m_func;
54 …return self.m_environment < other.m_environment || (!(other.m_environment < self.m_environment) &&…
/dports/games/opencity/opencity-0.0.6.5stable/src/mas/
H A Dagent.cpp40 m_environment(env), in Agent()
115 if (x < 0 || y < 0 || (int)m_environment.getWidth() <= x || (int)m_environment.getHeight() <= y) in lookForAgent()
119 if (m_environment.hasAgentAt(this, x, y)) in lookForAgent()
121 return m_environment.getAgentAt(x,y); in lookForAgent()
213 m_environment.registerAgent(this, m_x, m_y); in born()
228 m_environment.unregisterAgent(this); in die()
279 …assert (0 <= x && 0 <= y && x < (int)m_environment.getWidth() && y < (int)m_environment.getHeight(… in move()
280 if (m_environment.moveAgent(this, x, y)) in move()
306 or (int)m_environment.getWidth() <= x in canMove()
307 or(int)m_environment.getHeight() <= y ) in canMove()
[all …]
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/
H A DAutoMLContainerDefinition.h137 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironment() const{ return m_environment; } in GetEnvironment()
149 …s::Map<Aws::String, Aws::String>& value) { m_environmentHasBeenSet = true; m_environment = value; } in SetEnvironment()
155 …<Aws::String, Aws::String>&& value) { m_environmentHasBeenSet = true; m_environment = std::move(va… in SetEnvironment()
173 …ing& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
179 …ng&& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
185 …::String& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
191 …:String&& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
197 …nst char* key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
203 …s::String&& key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
209 …const char* key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
[all …]
H A DModelBiasAppSpecification.h151 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironment() const{ return m_environment; } in GetEnvironment()
161 …s::Map<Aws::String, Aws::String>& value) { m_environmentHasBeenSet = true; m_environment = value; } in SetEnvironment()
166 …<Aws::String, Aws::String>&& value) { m_environmentHasBeenSet = true; m_environment = std::move(va… in SetEnvironment()
181 …ing& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
186 …ng&& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
191 …::String& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
196 …:String&& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
201 …nst char* key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
206 …s::String&& key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
211 …const char* key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
[all …]
H A DModelExplainabilityAppSpecification.h151 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironment() const{ return m_environment; } in GetEnvironment()
161 …s::Map<Aws::String, Aws::String>& value) { m_environmentHasBeenSet = true; m_environment = value; } in SetEnvironment()
166 …<Aws::String, Aws::String>&& value) { m_environmentHasBeenSet = true; m_environment = std::move(va… in SetEnvironment()
181 …ing& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
186 …ng&& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
191 …::String& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
196 …:String&& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
201 …nst char* key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
206 …s::String&& key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
211 …const char* key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
[all …]
H A DTransformJobDefinition.h149 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironment() const{ return m_environment; } in GetEnvironment()
161 …s::Map<Aws::String, Aws::String>& value) { m_environmentHasBeenSet = true; m_environment = value; } in SetEnvironment()
167 …<Aws::String, Aws::String>&& value) { m_environmentHasBeenSet = true; m_environment = std::move(va… in SetEnvironment()
185 …ing& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
191 …ng&& key, const Aws::String& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
197 …::String& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
203 …:String&& key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
209 …nst char* key, Aws::String&& value) { m_environmentHasBeenSet = true; m_environment.emplace(key, s… in AddEnvironment()
215 …s::String&& key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(std::m… in AddEnvironment()
221 …const char* key, const char* value) { m_environmentHasBeenSet = true; m_environment.emplace(key, v… in AddEnvironment()
[all …]
/dports/sysutils/javaservicewrapper/wrapper_3.5.45_src/src/java/org/tanukisoftware/wrapper/
H A DWrapperProcessConfig.java48 private Map m_environment; field in WrapperProcessConfig
72 m_environment = null; in WrapperProcessConfig()
259 if ( m_environment == null ) in getEnvironment()
261 m_environment = getDefaultEnvironment(); in getEnvironment()
264 return m_environment; in getEnvironment()
308 m_environment = environment; in setEnvironment()
396 if ( m_environment == null ) in getNativeEnv()
409 String[] nativeEnv = new String[ m_environment.size() ]; in getNativeEnv()
410 Iterator iter = m_environment.entrySet().iterator(); in getNativeEnv()
/dports/games/fs2open/fs2open.github.com-release_21_4_1/fred2/
H A Dsoundenvironmentdlg.cpp25 m_environment = -1; in SoundEnvironment()
39 DDX_CBIndex(pDX, IDC_SOUND_ENVIRONMENT, m_environment); in DoDataExchange()
83 m_environment = m_env->id + 1; in BEGIN_MESSAGE_MAP()
92 m_environment = 0; in BEGIN_MESSAGE_MAP()
112 int env_id = m_environment - 1; in OnOK()
155 int env_id = m_environment - 1; in query_modified()
166 int index = m_environment - 1; in OnSelChangeSoundEnvironment()
208 if (m_environment > 0) { in OnPlay()
209 m_env.id = m_environment - 1; in OnPlay()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/fred2/
H A Dsoundenvironmentdlg.cpp25 m_environment = -1; in SoundEnvironment()
39 DDX_CBIndex(pDX, IDC_SOUND_ENVIRONMENT, m_environment); in DoDataExchange()
83 m_environment = m_env->id + 1; in BEGIN_MESSAGE_MAP()
92 m_environment = 0; in BEGIN_MESSAGE_MAP()
112 int env_id = m_environment - 1; in OnOK()
155 int env_id = m_environment - 1; in query_modified()
166 int index = m_environment - 1; in OnSelChangeSoundEnvironment()
208 if (m_environment > 0) { in OnPlay()
209 m_env.id = m_environment - 1; in OnPlay()
/dports/devel/boost-docs/boost_1_72_0/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/devel/R-cran-BH/BH/inst/include/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/games/frogatto/frogatto-1.3.1/MacOSJet/boost/include/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
48 char** m_environment; member in boost::environment_iterator
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/math/stanmath/math-4.2.0/lib/boost_1.75.0/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/science/py-scipy/scipy-1.7.1/scipy/_lib/boost/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in name()
35 if (*m_environment == 0) in name()
38 std::string s(*m_environment); in name()
44 ++m_environment; in name()
49 char** m_environment; in name()
/dports/databases/xtrabackup/boost_1_59_0/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/databases/percona57-server/boost_1_59_0/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/databases/percona57-client/boost_1_59_0/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator
/dports/security/keybase/client-v5.7.1/shared/ios/Pods/boost-for-react-native/boost/program_options/
H A Denvironment_iterator.hpp23 : m_environment(environment) in environment_iterator()
35 if (*m_environment == 0) in get()
38 std::string s(*m_environment); in get()
44 ++m_environment; in get()
49 char** m_environment; member in boost::environment_iterator

12345678910>>...12