Searched defs:Environment (Results 1 - 25 of 47) sorted by relevance

12

/external/chromium_org/mojo/public/cpp/environment/
H A Denvironment.h23 class Environment { class in namespace:mojo
25 Environment();
28 Environment(const MojoAsyncWaiter* default_async_waiter,
30 ~Environment();
36 MOJO_DISALLOW_COPY_AND_ASSIGN(Environment);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Denvironment.py30 class Environment(object): class in inherits:object
H A Denvironment_unittest.py31 from .environment import Environment namespace
36 environment = Environment({})
H A Dsystemhost_mock.py31 from webkitpy.common.system.environment import Environment namespace
59 return Environment({"MOCK_ENVIRON_COPY": '1'})
/external/chromium_org/tools/telemetry/telemetry/core/
H A Denvironment.py6 class Environment(object): class in inherits:object
/external/chromium_org/base/
H A Denvironment.h26 class BASE_EXPORT Environment { class in namespace:base
28 virtual ~Environment();
32 static Environment* Create();
H A Denvironment.cc23 class EnvironmentImpl : public base::Environment {
132 Environment::~Environment() {}
135 Environment* Environment::Create() {
139 bool Environment::HasVar(const char* variable_name) {
/external/chromium_org/mojo/public/cpp/environment/lib/
H A Denvironment.cc35 Environment::Environment() { function in class:mojo::Environment
39 Environment::Environment(const MojoAsyncWaiter* default_async_waiter, function in class:mojo::Environment
44 Environment::~Environment() {
54 const MojoAsyncWaiter* Environment::GetDefaultAsyncWaiter() {
55 assert(g_default_async_waiter); // Fails if not "inside" |Environment|.
60 const MojoLogger* Environment::GetDefaultLogger() {
61 assert(g_default_logger); // Fails if not "inside" |Environment|
[all...]
/external/chromium_org/components/test/data/password_manager/
H A Drun_tests.py12 from environment import Environment namespace
38 environment = Environment('', '', '', None, False)
H A Denvironment.py5 """The testing Environment class."""
45 class Environment: class in inherits:
46 """Sets up the testing Environment. """
51 """Creates a new testing Environment.
140 """Adds a WebsiteTest to the testing Environment.
H A Dtests.py11 from environment import Environment namespace
371 environment = Environment(chrome_path, chromedriver_path, profile_path,
/external/chromium_org/mojo/public/cpp/bindings/
H A Dinterface_impl.h76 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
86 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
106 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
116 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
137 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
146 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
73 BindToPipe( Impl* instance, ScopedMessagePipeHandle handle, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
83 WeakBindToPipe( Impl* instance, ScopedMessagePipeHandle handle, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
103 BindToProxy( Impl* instance, InterfacePtr<Interface>* ptr, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
113 WeakBindToProxy( Impl* instance, InterfacePtr<Interface>* ptr, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
134 BindToRequest( Impl* instance, InterfaceRequest<Interface>* request, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
143 WeakBindToRequest( Impl* instance, InterfaceRequest<Interface>* request, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
H A Dinterface_ptr.h66 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
128 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
64 Bind( ScopedMessagePipeHandle handle, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
126 MakeProxy( ScopedMessagePipeHandle handle, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DEnvironment.h1 //== Environment.h - Map from Stmt* to Locations/Values ---------*- C++ -*--==//
10 // This file defined the Environment and EnvironmentManager classes.
55 class Environment { class in namespace:clang::ento
65 Environment(BindingsTy eb) function in class:clang::ento::Environment
76 /// Environment.
79 /// Profile - Profile the contents of an Environment object for use
81 static void Profile(llvm::FoldingSetNodeID& ID, const Environment* env) {
91 bool operator==(const Environment& RHS) const {
104 typedef Environment::BindingsTy::Factory FactoryTy;
111 Environment getInitialEnvironmen
[all...]
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dinterface_impl_internal.h59 const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) {
56 BindProxy( InterfacePtr<Interface>* ptr, bool instance_bound_to_pipe, const MojoAsyncWaiter* waiter = Environment::GetDefaultAsyncWaiter()) argument
/external/chromium_org/remoting/tools/build/
H A Dremoting_localize.py688 from jinja2 import Environment, FileSystemLoader namespace
692 env = Environment(loader=FileSystemLoader(template_path),
/external/chromium_org/third_party/jinja2/
H A D__init__.py33 from jinja2.environment import Environment, Template namespace
60 'Environment', 'Template', 'BaseLoader', 'FileSystemLoader',
H A Dsandbox.py16 from jinja2.environment import Environment namespace
180 class SandboxedEnvironment(Environment):
263 Environment.__init__(self, *args, **kwargs)
H A Dext.py19 from jinja2.environment import Environment namespace
463 >>> from jinja2 import Environment
464 >>> env = Environment()
595 environment = Environment(
/external/chromium_org/v8/src/compiler/
H A Dcontrol-builders.h33 typedef StructuredGraphBuilder::Environment Environment; typedef in class:v8::internal::compiler::ControlBuilder
36 Environment* environment() { return builder_->environment(); }
37 void set_environment(Environment* env) { builder_->set_environment(env); }
58 Environment* then_environment_; // Environment after the 'then' body.
59 Environment* else_environment_; // Environment for the 'else' body.
85 Environment* loop_environment_; // Environment o
[all...]
H A Dgraph-builder.cc96 StructuredGraphBuilder::Environment* StructuredGraphBuilder::CopyEnvironment(
97 Environment* env) {
98 return new (zone()) Environment(*env);
102 StructuredGraphBuilder::Environment::Environment( function in class:v8::internal::compiler::StructuredGraphBuilder::Environment
110 StructuredGraphBuilder::Environment::Environment(const Environment& copy) function in class:v8::internal::compiler::StructuredGraphBuilder::Environment
117 void StructuredGraphBuilder::Environment::Merge(Environment* othe
[all...]
H A Dgraph-builder.h104 class Environment;
105 friend class Environment;
114 Environment* environment() const { return environment_; }
115 void set_environment(Environment* env) { environment_ = env; }
138 virtual Environment* CopyEnvironment(Environment* env);
145 Environment* environment_;
163 class StructuredGraphBuilder::Environment : public ZoneObject { class in class:v8::internal::compiler::StructuredGraphBuilder
165 Environment(StructuredGraphBuilder* builder, Node* control_dependency);
166 Environment(cons
[all...]
/external/llvm/lib/Support/
H A DTriple.cpp388 Environment(parseEnvironment(getEnvironmentName())),
405 Environment(), ObjectFormat(Triple::UnknownObjectFormat) {
421 Environment(parseEnvironment(EnvironmentStr.str())),
446 EnvironmentType Environment = UnknownEnvironment; local
448 Environment = parseEnvironment(Components[3]);
459 Found[3] = Environment != UnknownEnvironment;
491 Environment = parseEnvironment(Comp);
492 Valid = Environment != UnknownEnvironment;
562 if (Environment == UnknownEnvironment) {
578 (OS == Triple::Win32 && Environment !
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest-param-test_test.cc568 class TestGenerationEnvironment : public ::testing::Environment {
631 typedef TestGenerationEnvironment<PARAMETER_COUNT> Environment; typedef in class:TestGenerationTest
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
888 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());
/external/gtest/test/
H A Dgtest-param-test_test.cc568 class TestGenerationEnvironment : public ::testing::Environment {
631 typedef TestGenerationEnvironment<PARAMETER_COUNT> Environment; typedef in class:TestGenerationTest
634 Environment::Instance()->FixtureConstructorExecuted();
638 Environment::Instance()->SetUpExecuted();
642 Environment::Instance()->TearDownExecuted();
689 Environment::Instance()->TestBodyExecuted();
888 AddGlobalTestEnvironment(TestGenerationTest::Environment::Instance());

Completed in 1035 milliseconds

12