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

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_shared-exception/jni/
omit-frame-pointer2.cpp 5 void step (int) function
12 step (2);
20 step (1);
22 step (-1);
26 step (3);
  /ndk/tests/device/test-stlport_static-exception/jni/
omit-frame-pointer2.cpp 5 void step (int) function
12 step (2);
20 step (1);
22 step (-1);
26 step (3);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
PerNameExecutorTest.java 49 assertRanNever("step 0", a1, a2, a3, b1);
50 step(); // run a1, b1 method
51 assertRanOnce("step 1", a1, b1);
52 assertRanNever("step 1", a2, a3);
53 step(); // run a2 method
54 assertRanOnce("step 2", a1, b1, a2);
55 assertRanNever("step 2", a3);
56 step(); // run a3 method
57 assertRanOnce("step 3", a1, b1, a2, a3);
58 step(); // should do nothin method
67 step(); \/\/ run a1, b1 method
73 step(); \/\/ do nothing method
81 step(); \/\/ run a3, c1 method
84 step(); \/\/ do nothing method
109 private void step() { method in class:PerNameExecutorTest
    [all...]
  /build/
CleanSpec.mk 17 # a file or delete some intermediate files, add a clean step to the end
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
35 # touch step and add it to the end of the list.
42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates)
43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates)
44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f)
45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*)
47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS)
48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/APPS
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/
step.css 7 .step {
13 .step h1 {
18 .step p {
22 .step button.blue-button {
26 .step button.white-button {
30 .step .controls button {
34 .step .controls button:first-of-type {
38 .step .controls button:last-of-type {
  /external/ceres-solver/data/libmv-ba-problems/
Readme.txt 3 - problem_01.bin is a final camera motion refinement step of 07_1a scene.
4 - problem_02.bin is a final camera motion refinement step of 03_2a scene.
5 - problem_03.bin is a final camera motion refinement step of 09_1a scene.
  /external/chromium_org/chrome/browser/resources/chromeos/login/
screen_message_box.html 1 <div id="message-box" class="step no-logo hidden">
2 <div class="step-contents">
6 <div id="message-box-controls" class="step-controls"></div>
oobe_screen_oauth_enrollment.html 1 <div id="oauth-enrollment" class="step hidden">
2 <div id="oauth-enroll-container" class="step-contents">
3 <div id="oauth-enroll-step-signin">
13 <div id="oauth-enroll-step-working" class="oauth-enroll-step-center" hidden>
14 <div class="oauth-enroll-step-content">
15 <span class="oauth-enroll-step-icon">
18 <span class="oauth-enroll-step-message">
23 <div id="oauth-enroll-step-error" class="oauth-enroll-step-center" hidden
    [all...]
oobe_screen_enable_kiosk.html 1 <div class="step hidden no-logo" id="kiosk-enable">
2 <div class="step-contents">
8 <div id="kiosk-enable-controls" class="step-controls"></div>
oobe_screen_reset.html 1 <div class="step hidden no-logo" id="reset">
2 <div class="step-contents">
7 <div id="reset-controls" class="step-controls"></div>
screen_confirm_password.html 1 <div id="confirm-password" class="step no-logo hidden">
2 <div class="step-contents">
9 <div id="confirm-password-controls" class="step-controls"></div>
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <16 or step is not a multiple of 16.
30 step RN 2 label
48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading
49 VLD1 {X2,X3},[pSrc@128],step
50 VLD1 {X4,X5},[pSrc@128],step
51 VLD1 {X6,X7},[pSrc@128],step
57 VLD1 {X0,X1},[pSrc@128],step
    [all...]
omxVCCOMM_Copy8x8_s.s 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes;
16 ; * - step <8 or step is not a multiple of 8.
30 step RN 2 label
45 VLD1 {X0},[pSrc],step ;// Load 8 bytes from 8 byte aligned pSrc, pSrc=pSrc+step after load
46 VLD1 {X1},[pSrc],step
47 VLD1 {X2},[pSrc],step
48 VLD1 {X3},[pSrc],step
53 VLD1 {X0},[pSrc],step
    [all...]
  /external/chromium_org/chrome/browser/chromeos/first_run/
step.h 27 class Step {
29 Step(const std::string& name,
32 virtual ~Step();
34 // Step shows its content.
37 // Called before hiding step.
40 // Called after step has been hidden.
53 // Called from OnBeforeHide. Step implementation could override this method to
57 // Called from OnAfterHide. Step implementation could override this method to
62 // Records time spent on step to UMA.
70 DISALLOW_COPY_AND_ASSIGN(Step);
    [all...]
  /external/libvpx/libvpx/test/
dct16x16_test.cc 83 double step[16]; local
87 // step 1
88 step[ 0] = input[0] + input[15];
89 step[ 1] = input[1] + input[14];
90 step[ 2] = input[2] + input[13];
91 step[ 3] = input[3] + input[12];
92 step[ 4] = input[4] + input[11];
93 step[ 5] = input[5] + input[10];
94 step[ 6] = input[6] + input[ 9];
95 step[ 7] = input[7] + input[ 8]
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 24 int16_t step[4]; local
27 step[0] = input[0] + input[3];
28 step[1] = input[1] + input[2];
29 step[2] = input[1] - input[2];
30 step[3] = input[0] - input[3];
32 temp1 = (step[0] + step[1]) * cospi_16_64;
33 temp2 = (step[0] - step[1]) * cospi_16_64;
36 temp1 = step[2] * cospi_24_64 + step[3] * cospi_8_64
57 \/*canbe16*\/ int step[4]; local
995 int step[32]; local
    [all...]
  /system/extras/tests/icachetest/
icache_main.c 4 extern void icache_test(long count, long step);
15 long step = 32; local
16 for (i=0 ; step<=2048 ; i++, step+=32)
20 icache_test(0x800000L, step);
23 printf("%6ld\t%lld\n", step*32, t);
  /frameworks/base/
CleanSpec.mk 17 # a file or delete some intermediate files, add a clean step to the end
22 # $(call add-clean-step, touch -c external/sqlite/sqlite3.h)
23 # $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates)
35 # touch step and add it to the end of the list.
42 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates)
43 #$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates)
44 #$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f)
45 #$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*)
46 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/core/java/com/android/internal/os/IDropBoxService.java)
47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates/src/core/java/android/ (…)
    [all...]
  /external/chromium_org/third_party/freetype/src/base/
md5.c 59 #define STEP(f, a, b, c, d, x, t, s) \
112 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
113 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
114 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
115 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
116 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
117 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
118 STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
119 STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
120 STEP(F, a, b, c, d, SET(8), 0x698098d8, 7
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_md5.cc 22 #define STEP(f, a, b, c, d, x, t, s) \
60 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
61 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
62 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
63 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
64 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
65 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
66 STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
67 STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
68 STEP(F, a, b, c, d, SET(8), 0x698098d8, 7
    [all...]
  /external/freetype/src/base/
md5.c 59 #define STEP(f, a, b, c, d, x, t, s) \
112 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
113 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
114 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
115 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
116 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
117 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
118 STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
119 STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
120 STEP(F, a, b, c, d, SET(8), 0x698098d8, 7
    [all...]
  /external/llvm/lib/Support/
MD5.cpp 57 #define STEP(f, a, b, c, d, x, t, s) \
95 STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
96 STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
97 STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
98 STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
99 STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
100 STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
101 STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
102 STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
103 STEP(F, a, b, c, d, SET(8), 0x698098d8, 7
    [all...]
  /cts/tests/src/android/renderscript/cts/
step_f32.rs 10 *out = step(in->x, in->y);
19 *out = step(in->x, in->y);
28 *out = step(in->x, in->y);
37 *out = step(in->x, in->y);
  /external/chromium/chrome/browser/debugger/manual_tests/
debugger-execution-while-paused.html 14 Now click the Step One button in the page. The breakpoint should be hit. While paused at the breakpoint
15 click on the Step Two button. You should not see an alert dialog. Continue script.</p>
16 <button onclick="stepOne()">Step One</button><br><br>
17 <button onclick="stepTwo()">Step Two</button>
  /ndk/sources/host-tools/sed-4.2.1/doc/
groupify.sed 6 # Step 1: search for the conventional "@c start----" comment
12 # Step 2: loop until we find a @ command
18 # Step 3: process everything until a "@end" command
20 # Step 3.1: Print the blank lines before the group. If we reach the "@end",
21 # we go back to step 1.
33 # Step 3.2: Add to hold space every line until an empty one or "@end"
44 # Step 3.3: Working in hold space, add @group...@end group if there are
55 # Step 3.4: Switch back to pattern space, print the first blank line
56 # and possibly go back to step 3.1

Completed in 1228 milliseconds

1 2 3 4 5 6 7 8 91011>>