Searched defs:environment (Results 1 - 25 of 40) sorted by relevance

12

/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 DDescendantIterator.java261 public void setRoot(int context, Object environment) argument
263 super.setRoot(context, environment);
H A DMatchPatternIterator.java160 public void setRoot(int context, Object environment) argument
162 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 DUnionPathIterator.java67 public void setRoot(int context, Object environment) argument
69 super.setRoot(context, environment);
H A DWalkingIterator.java150 public void setRoot(int context, Object environment) argument
153 super.setRoot(context, environment);
H A DNodeSequence.java259 public void setRoot(int nodeHandle, Object environment) argument
263 XPathContext xctxt = (XPathContext)environment;
265 m_iter.setRoot(nodeHandle, environment);
H A DLocPathIterator.java150 * Set the environment in which this iterator operates, which should provide:
157 * <p>At this time the exact implementation of this environment is application
160 * @param environment The environment object.
162 public void setEnvironment(Object environment) argument
357 public void setRoot(int context, Object environment) argument
362 XPathContext xctxt = (XPathContext)environment;
/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());
/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/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/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/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSetDTM.java193 * Set the environment in which this iterator operates, which should provide:
200 * <p>At this time the exact implementation of this environment is application
203 * @param environment The environment object.
205 public void setEnvironment(Object environment) argument
235 public void setRoot(int context, Object environment) argument
/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/v8/src/ia32/
H A Dlithium-ia32.h234 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
2458 // Assigns an environment to an instruction. An instruction which can
2459 // deoptimize must have an environment.
2468 // support GC and lazy deoptimization. Assigns an environment to support
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/v8/src/arm/
H A Dlithium-arm.h239 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
2366 // cannot deoptimize eagerly and we do not attach environment to this
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/
H A Dhydrogen.h136 // instruction and updating the bailout environment.
145 // Simulate (caller's environment)
386 // Type of stack frame an environment might refer to.
492 // Create an "inlined version" of this environment, where the original
493 // environment is the outer environment but the top expression stack
494 // elements are moved to an inner environment as parameters.
526 // Create an artificial stub environment (e.g. for argument adaptor or
533 // True if index is included in the expression stack part of the environment.
539 // Map a variable to an environment inde
815 HEnvironment* environment() const { function in class:v8::internal::HGraphBuilder
[all...]
/external/v8/src/mips/
H A Dlithium-mips.h238 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
2346 // cannot deoptimize eagerly and we do not attach environment to this
/external/v8/src/x64/
H A Dlithium-x64.h240 LEnvironment* environment() const { return environment_; } function in class:v8::internal::LInstruction
2322 // Assigns an environment to an instruction. An instruction which can
2323 // deoptimize must have an environment.
2332 // support GC and lazy deoptimization. Assigns an environment to support
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 510 milliseconds

12