HomeSort by relevance Sort by last modified time
    Searched refs:pull (Results 1 - 25 of 381) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libaudioprocessing/tests/
mixer_to_wav_tests.sh 70 adb pull /sdcard/tm48000grif.wav $2
79 adb pull /sdcard/tm48000gr.wav $2
89 adb pull /sdcard/tm9307gra.wav $2
90 adb pull /sdcard/aux9307gra.wav $2
98 adb pull /sdcard/tm32000gnr.wav $2
107 adb pull /sdcard/tm32000gnra.wav $2
108 adb pull /sdcard/aux32000gnra.wav $2
116 adb pull /sdcard/tm32000nrot.wav $2
124 adb pull /sdcard/tm44100nrota.wav $2
125 adb pull /sdcard/aux44100nrota.wav $
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/drivers/gpio/
gpio.c 59 void gpio_set_pull(int gpio, int pull)
63 assert((pull == GPIO_PULL_NONE) || (pull == GPIO_PULL_UP) ||
64 (pull == GPIO_PULL_DOWN));
67 ops->set_pull(gpio, pull);
  /external/v8/tools/
android-ll-prof.sh 59 adb pull /data/local/tmp/v8/v8.log .
60 adb pull /data/local/tmp/v8/v8.log.ll .
61 adb pull /data/perf.data .
  /dalvik/tools/
get-hprof 35 adb pull "$FILE_BASE" "$OUT_FILE"
  /device/linaro/bootloader/arm-trusted-firmware/include/drivers/
gpio.h 25 void (*set_pull)(int gpio, int pull);
33 void gpio_set_pull(int gpio, int pull);
  /prebuilts/misc/common/robolectric/3.1.1/lib/
maven-repository-metadata-2.2.1.jar 
maven-profile-2.2.1.jar 
maven-plugin-registry-2.2.1.jar 
maven-settings-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.2.1/
maven-repository-metadata-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/
maven-plugin-parameter-documenter-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-profile/2.2.1/
maven-profile-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-registry/2.0.9/
maven-plugin-registry-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/3.3.9/
maven-repository-metadata-3.3.9.jar 
  /external/javaparser/
CONTRIBUTING.md 12 - If you know how to fix a problem, please fix it and open a pull request instead of opening an issue.
18 Our development workflow is based on Pull Request. If you are not familiar with the Pull Requests, we suggest you to checkout the [Github Documentation](https://help.github.com/articles/creating-a-pull-request/) for more information.
21 2. In your forked project, **create a branch** related to the issue you are working on. This is important to ensure that your pull request will not contain unrelated work.
23 4. Go back to the [javaparser project site](https://github.com/javaparser/javaparser) and it should have a message offering to **create a pull request**. If it doesn't you can [create one manually](https://github.com/javaparser/javaparser/compare).
26 - A pull request should include tests. You can either use BDD ([more information here](https://github.com/javaparser/javaparser/wiki/Testing)) or JUnit.
27 - Every pull request will automatically be checked by a few tools. Make sure AppVeyor and Travis are green.
28 - Pull requests often stay open for at least a few days to give people a chance to review it.
29 - A pull request is merged when all comments on it have been resolved
    [all...]
  /packages/apps/Browser2/test/
run_tests.sh 20 adb pull $DEVICE_WEBVIEW_TEST_PATH ../test_rebaseline/
  /system/libufdt/tests/
verifyDTBO.sh 23 adb pull $dtbo_path dtbo.img > /dev/null
24 adb pull /sys/firmware/fdt final_dt > /dev/null
  /device/google/contexthub/firmware/os/inc/
gpio.h 70 /* Configures the direction and pull type of a GPIO */
71 void gpioConfigInput(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull);
72 void gpioConfigOutput(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode odrMode, bool value);
73 void gpioConfigAlt(const struct Gpio* __restrict gpio, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode odrMode, uint32_t altFunc);
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.0.9/
maven-repository-metadata-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-registry/2.2.1/
maven-plugin-registry-2.2.1.jar 
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapMesh.java 95 float pull = K / (dd + 0.000001f); local
97 pull /= (d + 0.000001f);
98 // android.util.Log.d("skia", "index " + i + " dist=" + d + " pull=" + pull);
100 if (pull >= 1) {
104 dst[i+0] = x + dx * pull;
105 dst[i+1] = y + dy * pull;
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-settings/2.2.1/
maven-settings-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-profile/2.0.9/
maven-profile-2.0.9.jar 
  /device/google/contexthub/firmware/os/platform/stm32/
gpio.c 96 static void gpioConfigWithNum(uint32_t gpioNum, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode output)
110 /* pull ups/downs */
111 block->PUPDR = (block->PUPDR & ~mask_2b) | (((uint32_t)pull) << shift_2b);
112 /* push/pull or open drain */
119 static void gpioConfigInputWithNum(uint32_t gpioNum, int32_t gpioSpeed, enum GpioPullMode pull)
125 gpioConfigWithNum(gpioNum, gpioSpeed, pull, GPIO_OUT_PUSH_PULL);
131 void gpioConfigInput(const struct Gpio* __restrict gpioHandle, int32_t gpioSpeed, enum GpioPullMode pull)
134 gpioConfigInputWithNum((uint32_t)gpioHandle - GPIO_HANDLE_OFFSET, gpioSpeed, pull);
137 static void gpioConfigOutputWithNum(uint32_t gpioNum, int32_t gpioSpeed, enum GpioPullMode pull, enum GpioOpenDrainMode output, bool value)
143 gpioConfigWithNum(gpioNum, gpioSpeed, pull, output)
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/doxia/doxia-decoration-model/1.0/
doxia-decoration-model-1.0.jar 

Completed in 362 milliseconds

1 2 3 4 5 6 7 8 91011>>