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

123

/external/autotest/client/cros/cellular/
H A Denvironment_test_noautorun.py33 import environment namespace
42 make an environment
44 with environment.DefaultCellularTestContext(config) as c:
50 make an environment
53 with environment.DefaultCellularTestContext(config) as c:
H A Dcell_tools_test_on_chromebook.py23 import environment namespace
68 with environment.DefaultCellularTestContext(config) as c:
80 with environment.DefaultCellularTestContext(config) as c:
/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);
/external/autotest/client/site_tests/cellular_Signal/
H A Dcellular_Signal.py13 from autotest_lib.client.cros.cellular import environment namespace
71 with environment.DefaultCellularTestContext(config) as c:
/external/autotest/client/site_tests/cellular_Throughput/
H A Dcellular_Throughput.py10 from autotest_lib.client.cros.cellular import cellular, cell_tools, environment namespace
20 with environment.DefaultCellularTestContext(config) as c:
/external/autotest/client/site_tests/cellular_Smoke/
H A Dcellular_Smoke.py9 from autotest_lib.client.cros.cellular import cellular, cell_tools, environment namespace
35 # * A cellular test environment context, which lets us
38 with environment.DefaultCellularTestContext(config) as c:
/external/v8/src/crankshaft/
H A Dhydrogen-osr.cc45 HEnvironment *environment = builder_->environment(); local
46 int first_expression_index = environment->first_expression_index();
47 int length = environment->length();
52 = builder_->Add<HUnknownOSRValue>(environment, i);
53 environment->Bind(i, osr_value);
58 environment->Drop(length - first_expression_index);
61 = builder_->Add<HUnknownOSRValue>(environment, i);
62 environment->Push(osr_value);
68 environment
[all...]
H A Dlithium-codegen.cc137 if (instr->HasEnvironment() && !instr->environment()->has_been_used()) {
138 V8_Fatal(__FILE__, __LINE__, "unused environment for %s (%s)",
218 void LCodeGenBase::WriteTranslationFrame(LEnvironment* environment, argument
220 int translation_size = environment->translation_size();
222 int height = translation_size - environment->parameter_count();
224 switch (environment->frame_type()) {
227 environment->entry() ? environment->entry()->shared()
229 translation->BeginJSFrame(environment->ast_id(), shared_id, height);
230 if (info()->closure().is_identical_to(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/syslinux/dos/
H A Dmystuff.h32 uint16_t environment; member in struct:psp
/external/v8/src/compiler/
H A Dcontrol-builders.h31 Environment* environment() { return builder_->environment(); } function in class:v8::internal::compiler::ControlBuilder
90 BitVector* assigned_; // Assigned values in the environment.
H A Dbytecode-graph-builder.h59 const Environment* environment() const { return environment_; } function in class:v8::internal::compiler::BytecodeGraphBuilder
60 Environment* environment() { return environment_; } function in class:v8::internal::compiler::BytecodeGraphBuilder
166 // Note that the result has already been wired into the environment just like
300 // Merge environments are snapshots of the environment at points where the
/external/autotest/site_utils/sponge_lib/
H A Dacts_job_info.py153 def environment(self): member in class:ACTSTaskInfo
168 """Extra environment info about the task."""
238 """Extra details about the environment for this test."""
/external/sl4a/Common/src/com/googlecode/android_scripting/
H A DProcess.java70 public void putAllEnvironmentVariables(Map<String, String> environment) { argument
71 mEnvironment.putAll(environment);
115 Log.v("Executing " + binaryPath + " with arguments " + mArguments + " and with environment "
158 String[] environment = environmentVariables.toArray(new String[environmentVariables.size()]);
159 return environment;
/external/webrtc/webrtc/modules/utility/source/
H A Djvm_android.cc243 rtc::scoped_ptr<JNIEnvironment> JVM::environment() { function in class:webrtc::JVM
244 ALOGD("JVM::environment%s", GetThreadInfo().c_str());
/external/python/cpython2/PC/
H A D_subprocess.c39 /* TODO: handle unicode environment? */
326 getenvironment(PyObject* environment) argument
334 /* convert environment dictionary to windows environment string */
335 if (! PyMapping_Check(environment)) {
337 PyExc_TypeError, "environment must be dictionary or None");
341 envsize = PyMapping_Length(environment);
343 keys = PyMapping_Keys(environment);
344 values = PyMapping_Values(environment);
361 "environment ca
418 PyObject* environment; local
[all...]

Completed in 585 milliseconds

123