Searched refs:environment (Results 1 - 25 of 143) sorted by relevance

123456

/external/chromium/chrome/browser/
H A Dbackground_mode_manager_linux.cc8 #include "base/environment.h"
52 scoped_ptr<base::Environment> environment(base::Environment::Create());
53 if (!AutoStart::Remove(ShellIntegration::GetDesktopName(environment.get()))) {
61 scoped_ptr<base::Environment> environment(base::Environment::Create());
65 if (!environment->GetVar("CHROME_WRAPPER", &wrapper_script)) {
73 ShellIntegration::GetDesktopName(environment.get()),
/external/chromium/chrome/common/
H A Dauto_start_linux.cc7 #include "base/environment.h"
20 FilePath GetAutostartDirectory(base::Environment* environment) { argument
22 base::nix::GetXDGDirectory(environment, kXdgConfigHome, kConfig);
33 scoped_ptr<base::Environment> environment(base::Environment::Create());
34 FilePath autostart_directory = GetAutostartDirectory(environment.get());
59 scoped_ptr<base::Environment> environment(base::Environment::Create());
60 FilePath autostart_directory = GetAutostartDirectory(environment.get());
67 scoped_ptr<base::Environment> environment(base::Environment::Create());
68 FilePath autostart_directory = GetAutostartDirectory(environment.get());
H A Dmulti_process_lock_unittest.cc6 #include "base/environment.h"
131 scoped_ptr<base::Environment> environment(base::Environment::Create());
132 EXPECT_TRUE(environment->GetVar(MultiProcessLockTest::kLockEnviromentVarName,
150 scoped_ptr<base::Environment> environment(base::Environment::Create());
151 EXPECT_TRUE(environment->GetVar(MultiProcessLockTest::kLockEnviromentVarName,
/external/v8/src/
H A Dwin32-math.h37 #error Wrong environment, expected MSVC.
/external/llvm/utils/lit/lit/
H A DTestingConfig.py12 # Set the environment based on the command line arguments.
13 environment = {
23 environment.update({
35 environment = environment,
72 environment, substitutions, unsupported, on_clone,
79 self.environment = dict(environment)
93 self.environment, self.substitutions,
106 self.environment
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMIterator.java110 * @param environment The environment object.
111 * The environment in which this iterator operates, which should provide:
120 * <p>At this time the exact implementation of this environment is application
124 public void setRoot(int nodeHandle, Object environment); argument
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DChildTestIterator.java124 public void setRoot(int context, Object environment) argument
126 super.setRoot(context, environment);
H A DOneStepIteratorForward.java88 public void setRoot(int context, Object environment) argument
90 super.setRoot(context, environment);
H A DFilterExprIterator.java68 public void setRoot(int context, Object environment) argument
70 super.setRoot(context, environment);
H A DFilterExprIteratorSimple.java76 public void setRoot(int context, Object environment) argument
78 super.setRoot(context, environment);
H A DOneStepIterator.java93 public void setRoot(int context, Object environment) argument
95 super.setRoot(context, environment);
H A DWalkingIterator.java150 public void setRoot(int context, Object environment) argument
153 super.setRoot(context, environment);
/external/webkit/LayoutTests/http/tests/resources/
H A DportabilityLayer.php6 // try to guess from the environment. Since sys_get_temp_dir() doesn't return a trailing
11 // Try to get from environment variable
/external/webkit/Tools/WebKitLauncher/
H A Dmain.m110 static void myExecve(NSString *executable, NSArray *args, NSDictionary *environment)
113 char **env = (char **)calloc(sizeof(char *), [environment count] + 1);
121 e = [environment keyEnumerator];
124 env[i++] = (char *) [[NSString stringWithFormat:@"%@=%@", s, [environment objectForKey:s]] UTF8String];
232 NSMutableDictionary *environment = [[[NSDictionary dictionaryWithObjectsAndKeys:frameworkPath, @"DYLD_FRAMEWORK_PATH", @"YES", @"WEBKIT_UNSET_DYLD_FRAMEWORK_PATH",
234 [environment addEntriesFromDictionary:[[NSProcessInfo processInfo] environment]];
240 myExecve(executablePath, arguments, environment);
/external/llvm/lib/Support/Windows/
H A DProgram.inc51 // This function just uses the PATH environment variable to find the program.
207 // The pointer to the environment block for the new process.
211 // An environment block consists of a null-terminated block of
212 // null-terminated strings. Convert the array of environment variables to
213 // an environment block by concatenating them.
215 // First, determine the length of the environment block.
220 // Now build the environment block.
/external/dbus/dbus/
H A Ddbus-sysdeps.c100 * the environment variable.
107 * @param varname name of environment variable
108 * @param value value of environment variable
179 * @param varname name of environment variable
180 * @returns value of environment variable or #NULL if unset
212 * environment. Use dbus_free_string_array to free it.
214 * @returns the environment or #NULL on OOM
220 char **environment; local
229 environment = dbus_new0 (char *, length);
231 if (environment
[all...]
/external/v8/test/mjsunit/
H A Dd8-os.js115 var environment = os.system("printenv");
116 assertTrue(/FOO=bar/.test(environment));
/external/v8/src/ia32/
H A Dlithium-codegen-ia32.cc360 void LCodeGen::WriteTranslation(LEnvironment* environment, argument
362 if (environment == NULL) return;
364 // The translation includes one command per value in the environment.
365 int translation_size = environment->values()->length();
367 int height = translation_size - environment->parameter_count();
369 WriteTranslation(environment->outer(), translation);
370 int closure_id = DefineDeoptimizationLiteral(environment->closure());
371 switch (environment->frame_type()) {
373 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
385 LOperand* value = environment
515 RegisterEnvironmentForDeoptimization( LEnvironment* environment, Safepoint::DeoptMode mode) argument
551 DeoptimizeIf(Condition cc, LEnvironment* environment) argument
4877 LEnvironment* environment = instr->environment(); local
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DUsesMocksProcessor.java71 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment environment) { argument
74 List<Class<?>> classesToMock = getClassesToMock(environment);
108 * @param environment the environment for this round of processing as provided to the main
112 private List<Class<?>> getClassesToMock(RoundEnvironment environment) { argument
116 findClassesToMock(environment.getElementsAnnotatedWith(UsesMocks.class)));
/external/proguard/src/proguard/wtk/
H A DProGuardObfuscator.java23 import com.sun.kvem.environment.Obfuscator;
/external/v8/src/x64/
H A Dlithium-codegen-x64.cc360 void LCodeGen::WriteTranslation(LEnvironment* environment, argument
362 if (environment == NULL) return;
364 // The translation includes one command per value in the environment.
365 int translation_size = environment->values()->length();
367 int height = translation_size - environment->parameter_count();
369 WriteTranslation(environment->outer(), translation);
370 int closure_id = DefineDeoptimizationLiteral(environment->closure());
371 switch (environment->frame_type()) {
373 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
385 LOperand* value = environment
502 RegisterEnvironmentForDeoptimization(LEnvironment* environment, Safepoint::DeoptMode mode) argument
538 DeoptimizeIf(Condition cc, LEnvironment* environment) argument
4665 LEnvironment* environment = instr->environment(); local
[all...]
/external/v8/src/arm/
H A Dlithium-codegen-arm.cc471 void LCodeGen::WriteTranslation(LEnvironment* environment, argument
473 if (environment == NULL) return;
475 // The translation includes one command per value in the environment.
476 int translation_size = environment->values()->length();
478 int height = translation_size - environment->parameter_count();
480 WriteTranslation(environment->outer(), translation);
481 int closure_id = DefineDeoptimizationLiteral(environment->closure());
482 switch (environment->frame_type()) {
484 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
496 LOperand* value = environment
610 RegisterEnvironmentForDeoptimization(LEnvironment* environment, Safepoint::DeoptMode mode) argument
646 DeoptimizeIf(Condition cc, LEnvironment* environment) argument
5039 LEnvironment* environment = instr->environment(); local
[all...]
/external/v8/src/mips/
H A Dlithium-codegen-mips.cc439 void LCodeGen::WriteTranslation(LEnvironment* environment, argument
441 if (environment == NULL) return;
443 // The translation includes one command per value in the environment.
444 int translation_size = environment->values()->length();
446 int height = translation_size - environment->parameter_count();
448 WriteTranslation(environment->outer(), translation);
449 int closure_id = DefineDeoptimizationLiteral(environment->closure());
450 switch (environment->frame_type()) {
452 translation->BeginJSFrame(environment->ast_id(), closure_id, height);
464 LOperand* value = environment
571 RegisterEnvironmentForDeoptimization(LEnvironment* environment, Safepoint::DeoptMode mode) argument
607 DeoptimizeIf(Condition cc, LEnvironment* environment, Register src1, const Operand& src2) argument
4973 LEnvironment* environment = instr->environment(); local
[all...]
/external/dbus/bus/
H A Dactivation.c57 DBusHashTable *environment; member in struct:BusActivation
721 char **environment; local
724 environment = _dbus_get_environment ();
726 if (environment == NULL)
731 dbus_free_string_array (environment);
738 dbus_free_string_array (environment);
742 for (i = 0; environment[i] != NULL; i++)
744 if (!_dbus_string_append (&key, environment[i]))
757 if (!_dbus_hash_table_insert_string (activation->environment,
765 if (environment[
1567 char **environment; local
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DProcessBuilderTest.java100 Map<String, String> env = pb.environment();
103 env = pb.environment();

Completed in 445 milliseconds

123456