Home
last modified time | relevance | path

Searched refs:perform (Results 1 – 25 of 4116) sorted by relevance

12345678910>>...165

/external/mesa3d/include/android_stub/system/
Dwindow.h528 int (*perform)(struct ANativeWindow* window, member
644 return window->perform(window, NATIVE_WINDOW_SET_USAGE, usage); in native_window_set_usage()
683 return window->perform(window, NATIVE_WINDOW_SET_CROP, crop); in native_window_set_crop()
704 return window->perform(window, NATIVE_WINDOW_SET_POST_TRANSFORM_CROP, crop); in native_window_set_post_transform_crop()
733 return window->perform(window, NATIVE_WINDOW_SET_BUFFER_COUNT, bufferCount); in native_window_set_buffer_count()
753 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_GEOMETRY, in native_window_set_buffers_geometry()
774 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_DIMENSIONS, in native_window_set_buffers_dimensions()
799 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_USER_DIMENSIONS, in native_window_set_buffers_user_dimensions()
813 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_FORMAT, format); in native_window_set_buffers_format()
832 return window->perform(window, NATIVE_WINDOW_SET_BUFFERS_DATASPACE, in native_window_set_buffers_data_space()
[all …]
/external/cronet/stable/base/test/android/javatests/src/org/chromium/base/test/transit/
DViewSpec.java71 public ViewInteraction perform(ViewAction action) { in perform() method in ViewSpec
72 return onView().perform(action); in perform()
77 return onView().perform(ViewActions.click()); in click()
82 return onView().perform(ForgivingClickAction.forgivingClick()); in forgivingClick()
91 perform( in printFromRoot()
104 public void perform(UiController uiController, View view) { in printFromRoot()
/external/cronet/tot/base/test/android/javatests/src/org/chromium/base/test/transit/
DViewSpec.java71 public ViewInteraction perform(ViewAction action) { in perform() method in ViewSpec
72 return onView().perform(action); in perform()
77 return onView().perform(ViewActions.click()); in click()
82 return onView().perform(ForgivingClickAction.forgivingClick()); in forgivingClick()
91 perform( in printFromRoot()
104 public void perform(UiController uiController, View view) { in printFromRoot()
/external/mesa3d/src/util/u_gralloc/
Du_gralloc_qcom.c29 int (* perform)(void *dev, int op, ...); member
58 ret = gr->perform(gr->perform_handle, in fallback_gralloc_get_yuv_info()
94 err = gr->perform(gr->perform_handle, GRALLOC_MODULE_PERFORM_GET_UBWC_FLAG, in get_buffer_info()
185 gr->perform = (int (*)(void *, int, ...))gralloc_module->perform; in u_gralloc_qcom_create()
192 gr->perform = (int (*)(void *, int, ...))gr->gralloc1_device-> in u_gralloc_qcom_create()
198 if (!gr->perform) in u_gralloc_qcom_create()
203 err = gr->perform(gr->perform_handle, in u_gralloc_qcom_create()
/external/drm_hwcomposer/bufferinfo/legacy/
DBufferInfoMinigbm.cpp56 if (gralloc_->perform(gralloc_, CROS_GRALLOC_DRM_GET_DIMENSIONS, handle, in GetBoInfo()
65 if (gralloc_->perform(gralloc_, CROS_GRALLOC_DRM_GET_FORMAT, handle, in GetBoInfo()
74 if (gralloc_->perform(gralloc_, CROS_GRALLOC_DRM_GET_USAGE, handle, &usage) != in GetBoInfo()
83 if (gralloc_->perform(gralloc_, CROS_GRALLOC_DRM_GET_BUFFER_INFO, handle, in GetBoInfo()
115 if (gralloc_->perform == nullptr) { in ValidateGralloc()
/external/robolectric/integration_tests/androidx_test/src/sharedTest/java/org/robolectric/integrationtests/axt/
DEspressoTest.java92 onView(withId(R.id.button)).perform(click()); in buttonClick_espresso()
119 .perform(typeText("\"new TEXT!#$%&'*+-/=?^_`{|}~@robolectric.org")); in typeText_espresso()
128 onView(withId(R.id.edit_text_phone)).perform(typeText("411")); in typeText_phone()
137 onView(withId(R.id.edit_text_number)).perform(typeText("411")); in typeText_number()
195 onView(withId(R.id.edit_text)).perform(typeText("anything"), closeSoftKeyboard()); in changeText_withCloseSoftKeyboard()
203 onView(withId(R.id.edit_text)).perform(typeText("Some text.")); in changeText_addNewline()
204 onView(withId(R.id.edit_text)).perform(pressKey(KeyEvent.KEYCODE_ENTER)); in changeText_addNewline()
205 onView(withId(R.id.edit_text)).perform(typeTextIntoFocusedView("Other text.")); in changeText_addNewline()
218 () -> onView(withId(R.id.edit_text)).perform(typeText("Some text.")))); in onView_mainThread()
/external/squashfs-tools/RELEASE-READMEs/
DPERFORMANCE.README32 Time taken to perform "ls -lR --color=alawys | cat > /dev/null" on filesystem
42 Time taken to perform "tar cf - | cat > /dev/null" on filesystem mounted
55 Time taken to perform "cpio -o --quiet -H newc < /tmp/sort > /dev/null"
68 Time taken to perform "ls -lR --color=alawys | cat > /dev/null" on filesystem
78 Time taken to perform "tar cf - | cat > /dev/null" on filesystem mounted
91 Time taken to perform "cpio -o --quiet -H newc < /tmp/sort > /dev/null"
111 Time taken to perform "ls -lR --color=alawys | cat > /dev/null" on filesystem
120 Time taken to perform "tar cf - | cat > /dev/null" on filesystem mounted
132 Time taken to perform "cpio -o --quiet -H newc < /tmp/sort > /dev/null"
144 Time taken to perform "ls -lR --color=alawys | cat > /dev/null" on filesystem
[all …]
/external/jazzer-api/examples/junit-spring-web/src/test/java/com/example/
DJunitSpringWebApplicationTests.java57 mockMvc.perform(get("/hello").param("name", "Maven")); in unitTestShouldPass()
62 mockMvc.perform(get("/buggy-hello").param("name", "error")); in unitTestShouldFail()
72 mockMvc.perform(get("/hello").param("name", name)); in fuzzTestShouldPass()
82 mockMvc.perform(get("/buggy-hello").param("name", name)) in fuzzTestShouldFail()
95 .perform(post("/hello") in fuzzTestWithDtoShouldFail()
/external/robolectric/integration_tests/androidx_test/src/test/java/org/robolectric/integrationtests/axt/
DEspressoWithWindowLayersTest.java53 onView(isRoot()).perform(clickAtLocation(centerOf(scenario, R.id.button))); in click_notTouchablePopupOverButton_isClicked()
64 onView(isRoot()).perform(clickAtLocation(centerOf(scenario, R.id.button))); in click_touchablePopupOverButton_isNotClicked()
75 onView(isRoot()).perform(clickAtLocation(centerOf(scenario, R.id.button))); in click_touchablePopupNotOverButton_isClicked()
86 onView(isRoot()).perform(clickAtLocation(centerOf(scenario, R.id.button))); in click_touchModalPopupNotOverButton_isNotClicked()
97 onView(isRoot()).perform(clickAtLocation(centerOf(scenario, R.id.button))); in click_touchOutsidePopupNotOverButton_isClicked()
120 onView(withText("Hello")).inRoot(isDialog()).perform(click()); in click_twoDialogs_clicksOnTopMost()
131 onView(withId(R.id.edit_text)).perform(typeText(TEXT)); in typeText_focusablePopupWindow_textIsNotTyped()
143 onView(withId(R.id.edit_text)).perform(typeText(TEXT)); in typeText_notFocusablePopupWindow_textIsTyped()
/external/cronet/stable/base/test/android/javatests/src/org/chromium/base/test/util/
DViewActionOnDescendant.java78 onView(recyclerViewMatcher).perform(RecyclerViewActions.scrollToPosition(index)); in performOnRecyclerViewNthItem()
80 .perform(RecyclerViewActions.actionOnItemAtPosition(index, viewAction)); in performOnRecyclerViewNthItem()
96 public void perform(UiController uiController, View view) { in perform() method in ViewActionOnDescendant
112 mViewAction.perform(uiController, matches.get(0)); in perform()
/external/cronet/tot/base/test/android/javatests/src/org/chromium/base/test/util/
DViewActionOnDescendant.java78 onView(recyclerViewMatcher).perform(RecyclerViewActions.scrollToPosition(index)); in performOnRecyclerViewNthItem()
80 .perform(RecyclerViewActions.actionOnItemAtPosition(index, viewAction)); in performOnRecyclerViewNthItem()
96 public void perform(UiController uiController, View view) { in perform() method in ViewActionOnDescendant
112 mViewAction.perform(uiController, matches.get(0)); in perform()
/external/coreboot/Documentation/soc/intel/mp_init/
Dmp_init.md26 Considering these facts, there are 3 possible solutions to perform MP
29 1. coreboot to perform complete MP initialization by its own. This includes
35 and make use of FSP binary to perform same task. This can be achieved by using
41 perform some restricted (closed source) CPU programming. In that case,
45 USE_INTEL_FSP_TO_CALL_COREBOOT_PUBLISH_MP_PPI Kconfig to perform this
49 option in order to perform SGX and C6DRAM enabling.
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/changes/
DChangeSetTestCase.java172 performer.perform(ais, out); in testDeleteDir()
214 performer.perform(ais, out); in testDeleteDir2()
256 performer.perform(ais, out); in testDeleteDir3()
299 performer.perform(ais, out); in testDeleteFile()
342 performer.perform(ais, out); in testDeleteFile2()
393 performer.perform(ais, out); in testDeletePlusAddSame()
463 final ChangeSetResults results = performer.perform(ais, out); in testChangeSetResults()
527 performer.perform(ais, out); in testDeletePlusAdd()
574 performer.perform(ais, out); in testDeleteFromAndAddToZip()
620 performer.perform(ais, out); in testDeleteFromAndAddToZipUsingZipFilePerform()
[all …]
/external/licenseclassifier/v2/assets/License/CC-BY-SA-1.0/
Dlicense.txt60 c. to distribute copies or phonorecords of, display publicly, perform
61 publicly, and perform publicly by means of a digital audio transmission the
64 d. to distribute copies or phonorecords of, display publicly, perform
65 publicly, and perform publicly by means of a digital audio transmission
76 a. You may distribute, publicly display, publicly perform, or publicly
77 digitally perform the Work only under the terms of this License, and You must
80 publicly perform, or publicly digitally perform. You may not offer or impose
85 display, publicly perform, or publicly digitally perform the Work with any
97 b. You may distribute, publicly display, publicly perform, or publicly
98 digitally perform a Derivative Work only under the terms of this License, and
[all …]
/external/rust/android-crates-io/crates/spdx/src/text/licenses/
DCC-BY-NC-SA-1.033 …c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform public…
35 …d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform public…
41perform, or publicly digitally perform the Work only under the terms of this License, and You must…
43perform, or publicly digitally perform a Derivative Work only under the terms of this License, and…
47 …d. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work o…
69 …a. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licen…
71 …b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to th…
DCC-BY-SA-1.033 …c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform public…
35 …d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform public…
41perform, or publicly digitally perform the Work only under the terms of this License, and You must…
43perform, or publicly digitally perform a Derivative Work only under the terms of this License, and…
45 …c. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work o…
67 …a. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licen…
69 …b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to th…
DCC-SA-1.061 c. to distribute copies or phonorecords of, display publicly, perform
62 publicly, and perform publicly by means of a digital audio transmission the
64 d. to distribute copies or phonorecords of, display publicly, perform
65 publicly, and perform publicly by means of a digital audio transmission
77 a. You may distribute, publicly display, publicly perform, or publicly
78 digitally perform the Work only under the terms of this License, and You
81 display, publicly perform, or publicly digitally perform. You may not offer
86 publicly display, publicly perform, or publicly digitally perform the Work
97 b. You may distribute, publicly display, publicly perform, or publicly
98 digitally perform a Derivative Work only under the terms of this License,
[all …]
/external/licenseclassifier/licenses/
DCC-BY-NC-SA-1.0.txt31 c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicl…
33 d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicl…
39perform, or publicly digitally perform the Work only under the terms of this License, and You must…
41perform, or publicly digitally perform a Derivative Work only under the terms of this License, and…
45 d. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or…
67 a. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licens…
69 b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the…
DCC-BY-SA-1.0.txt60 c. to distribute copies or phonorecords of, display publicly, perform
61 publicly, and perform publicly by means of a digital audio transmission the
64 d. to distribute copies or phonorecords of, display publicly, perform
65 publicly, and perform publicly by means of a digital audio transmission
76 a. You may distribute, publicly display, publicly perform, or publicly
77 digitally perform the Work only under the terms of this License, and You must
80 publicly perform, or publicly digitally perform. You may not offer or impose
85 display, publicly perform, or publicly digitally perform the Work with any
97 b. You may distribute, publicly display, publicly perform, or publicly
98 digitally perform a Derivative Work only under the terms of this License, and
[all …]
/external/licenseclassifier/v2/assets/License/CC-BY-NC-SA-1.0/
Dlicense.txt31 c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicl…
33 d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicl…
39perform, or publicly digitally perform the Work only under the terms of this License, and You must…
41perform, or publicly digitally perform a Derivative Work only under the terms of this License, and…
45 d. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or…
67 a. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licens…
69 b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the…
/external/ltp/utils/benchmark/kernbench-0.42/
DREADME38 n : number of times to perform benchmark (default 5)
40 s : perform single threaded runs (default don't)
41 H : don't perform half load runs (default do)
42 O : don't perform optimal load runs (default do)
43 M : don't perform maximal load runs (default do)
65 v0.20 Change to average of runs, add options to choose which runs to perform
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/changes/
DChangeSetPerformer.java70 public ChangeSetResults perform(final ArchiveInputStream in, final ArchiveOutputStream out) in perform() method in ChangeSetPerformer
72 return perform(new ArchiveInputStreamIterator(in), out); in perform()
91 public ChangeSetResults perform(final ZipFile in, final ArchiveOutputStream out) in perform() method in ChangeSetPerformer
93 return perform(new ZipFileIterator(in), out); in perform()
111 private ChangeSetResults perform(final ArchiveEntryIterator entryIterator, in perform() method in ChangeSetPerformer
/external/guava/android/guava-tests/test/com/google/common/collect/
DImmutableListCopyOfConcurrentlyModifiedInputTest.java106 void perform(List<Integer> list); in perform() method
112 public void perform(List<Integer> list) { in add()
121 public void perform(List<Integer> list) {
130 public void perform(List<Integer> list) {}
187 remainingActions.next().perform(delegate);
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableListCopyOfConcurrentlyModifiedInputTest.java106 void perform(List<Integer> list); in perform() method
112 public void perform(List<Integer> list) { in add()
121 public void perform(List<Integer> list) {
130 public void perform(List<Integer> list) {}
187 remainingActions.next().perform(delegate);
/external/licenseclassifier/v2/assets/License/CC-BY-SA-2.0/
Dlicense.txt67 c. to distribute copies or phonorecords of, display publicly, perform
68 publicly, and perform publicly by means of a digital audio transmission the
71 d. to distribute copies or phonorecords of, display publicly, perform
72 publicly, and perform publicly by means of a digital audio transmission
104 a. You may distribute, publicly display, publicly perform, or publicly
105 digitally perform the Work only under the terms of this License, and You must
108 publicly perform, or publicly digitally perform. You may not offer or impose
113 display, publicly perform, or publicly digitally perform the Work with any
125 b. You may distribute, publicly display, publicly perform, or publicly
126 digitally perform a Derivative Work only under the terms of this License, a
[all …]

12345678910>>...165