HomeSort by relevance Sort by last modified time
    Searched full:step (Results 326 - 350 of 5260) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/http/conn/routing/
BasicRouteDirector.java 54 * Provides the next step.
61 * either the next step to perform, or success, or failure.
70 int step = UNREACHABLE; local
73 step = firstStep(plan);
75 step = proxiedStep(plan, fact);
77 step = directStep(plan, fact);
79 return step;
85 * Determines the first step to establish a route.
89 * @return the first step
99 * Determines the next step to establish a direct connection
    [all...]
HttpRouteDirector.java 39 * a tracked route and indicate the next step required.
57 /** Step: open connection to target. */
60 /** Step: open connection to proxy. */
63 /** Step: tunnel through proxy to target. */
66 /** Step: tunnel through proxy to other proxy. */
69 /** Step: layer protocol (over tunnel). */
74 * Provides the next step.
81 * either the next step to perform, or success, or failure.
  /external/chromium/chrome/browser/remoting/
setup_flow.h 21 // SetupFlowStep represents a single step for SetupFlow, e.g. login or
22 // host registration. When a step is finished, GetNextStep() is called
23 // to get the step that must follow.
31 // Start the step. Ownership of |done_callback| is given to the
32 // function. |done_callback| is called when the step is finished,
44 // step. Must never return NULL.
68 // Finish current step. Calls |done_callback| specified in Start().
81 // Next step stored between Done() and GetNextStep();
105 // calls FinishStep() with an appropriate next step.
112 // The last step in the setup flow. This step never finishes, user i
    [all...]
  /external/clang/test/SemaCXX/
for-range-examples.cpp 30 T it, step; member in class:value_range_detail::value_range_step_iter
32 value_range_step_iter(const T &it, const T &step) : it(it), step(step) {}
35 value_range_step_iter &operator++() { it += step; return *this; }
40 T it, step, end_; member in class:value_range_detail::value_range_step
42 value_range_step(const T &it, const T &end, const T &step) :
43 it(it), end_(end), step(step) {}
45 iterator begin() const { return iterator(it, step); }
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_fetcher_callbacks.h 19 // Performs the confirmation step for setting the default search engine
25 // Performs the confirmation step for adding a search engine described by
  /external/chromium_org/ash/wm/
window_cycle_controller.cc 83 Step(direction);
86 // We're in the middle of an alt-tab cycle, just step forward.
87 Step(direction);
90 // This is a simple, single-step window cycle.
92 Step(direction);
104 cycle_list.Step(WindowCycleList::FORWARD);
119 void WindowCycleController::Step(Direction direction) {
121 windows_->Step(direction == FORWARD ? WindowCycleList::FORWARD :
  /external/chromium_org/third_party/WebKit/ManualTests/chromium/
select-close-popup-value-change.html 5 <p>Do the following, the test passes if the select keeps the selected value after step 4, fails if the value reverted.</p>
9 <li>3. Click the select again to close the popup list, it should stay at the value from step 2.</li>
suggestions-popup-font-change.html 6 input field, test passes if step 2 matches expected behavior.</p>
14 to magnify the page contents. Repeat step 2, text size should still
  /external/chromium_org/third_party/WebKit/ManualTests/resources/
named-window-blank-target-step2.html 10 STEP 3: Click <a target="foo" href="named-window-blank-target-step3.html">this link</a>.
14 If this window is frontmost after STEP 4, then the test FAILED.
  /external/chromium_org/third_party/WebKit/ManualTests/
scrollbar-crash-on-hide-scrolled-area.html 31 Manual repro: scroll down and click on <b>Next step</b>
33 <a href="#" class="nextStepButton" onclick="document.getElementById('toHide').style.display='none'">Next step</a>
  /external/eigen/doc/
tutorial.cpp 11 std::cout << "*** Step 1 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
17 std::cout << "*** Step 2 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
23 std::cout << "*** Step 3 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
29 std::cout << "*** Step 4 ***\nm4:\n" << m4 << std::endl;
34 std::cout << "*** Step 5 ***\nm4.diagonal():\n" << m4.diagonal() << std::endl;
40 std::cout << "*** Step 6 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
43 std::cout << "*** Step 7 ***\n m4.sum(): " << m4.sum() << std::endl;
61 std::cout << "*** Step 8 ***\nm3:\n" << m3 << "\nm4:\n" << m4 << std::endl;
  /libcore/luni/src/test/resources/
recipe.xml 12 <step>
14 </step>
recipe1.xml 12 <step>
14 </step>
recipt.xml 12 <step>
14 </step>
reciptWrong.xml 9 <step>
11 </step>
systemid.xml 12 <step>
14 </step>
  /external/chromium_org/chrome/browser/sync/glue/
data_type_manager_impl_unittest.cc 389 // 2) Finish the download for step 1.
401 // Step 1.
405 // Step 2.
410 // Step 3.
415 // Step 4.
420 // Step 5.
428 // 2) Finish the download for step 1.
431 // 5) Finish the download for step 4.
441 // Step 1.
445 // Step 2
    [all...]
  /bionic/libc/kernel/common/sound/
tlv.h 31 #define TLV_DB_SCALE_ITEM(min, step, mute) SNDRV_CTL_TLVT_DB_SCALE, 2 * sizeof(unsigned int), (min), ((step) & TLV_DB_SCALE_MASK) | ((mute) ? TLV_DB_SCALE_MUTE : 0)
32 #define DECLARE_TLV_DB_SCALE(name, min, step, mute) unsigned int name[] = { TLV_DB_SCALE_ITEM(min, step, mute) }
  /cts/tests/tests/opengl/libopengltest/
vertex.h 51 " w = step (mwf, ss) - step (1.0 - mwf, ss); \n"
52 " h = step (mhf, tt) - step (1.0 - mhf, tt); \n"
  /cts/tests/tests/opengl/src/android/opengl/cts/
Shaders.java 49 + " w = step (mwf, ss) - step (1.0 - mwf, ss); \n"
50 + " h = step (mhf, tt) - step (1.0 - mhf, tt); \n"
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
step.js 10 var Step = cr.ui.define('div');
12 Step.prototype = {
15 // Name of step.
18 // Button leading to next tutorial step.
21 // Default control for this step.
48 * Hides the step.
50 * @param {function()=} opt_onHidden Called after step has been hidden.
66 * Shows the step.
68 * @param {function(Step)=} opt_onShown Called after step has been shown
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_network.html 1 <div class="step hidden animated" id="connect">
2 <div class="step-contents">
34 <div id="connect-controls" class="step-controls"></div>
35 <div id="connect-extra-controls" class="step-extra-controls">
oobe_screen_user_image.html 1 <div class="step right hidden loading" id="user-image">
2 <div class="step-contents">
34 <div id="user-image-controls" class="step-controls"></div>
35 <div id="user-images-loading" class="step-loading">
screen_tpm_error.css 10 #oobe.tpm-error-message #step-logo {
  /external/chromium_org/chrome/browser/search_engines/
template_url_fetcher_callbacks.h 17 // Performs the confirmation step for adding a search engine described by

Completed in 1954 milliseconds

<<11121314151617181920>>