/external/skia/gyp/ |
shapeops_tool.gyp | 1 # GYP file to build unit tests.
|
/external/valgrind/main/massif/tests/ |
basic.vgtest | 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out
|
culling1.vgtest | 2 vgopts: -v -v --stats=yes --stacks=no --time-unit=B --heap-admin=16 --massif-out-file=massif.out
|
culling2.vgtest | 2 vgopts: -v -v --stats=yes --stacks=no --time-unit=B --heap-admin=16 --massif-out-file=massif.out
|
ignoring.vgtest | 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out
|
null.vgtest | 2 vgopts: --stacks=no --time-unit=B --massif-out-file=massif.out
|
/frameworks/base/tests/CoreTests/ |
run_junit.sh | 1 # runs unit tests over adb shell using dalvikvm. The value added is setting the classpath for you
|
/hardware/libhardware/tests/keymaster/ |
Android.mk | 1 # Build the keymaster unit tests
|
/system/core/toolbox/ |
df.c | 11 char unit = 'K'; local 18 unit = 'M'; 23 unit = 'G'; 27 printf("%4lld.%1lld%c", t/10, t%10, unit);
|
/cts/libs/commonutil/src/com/android/cts/util/ |
ResultUnit.java | 20 * Enum for representing the unit of performance results. 24 /** for value with no unit */ 40 /** unit for benchmarking with generic score. */
|
/cts/tools/signature-tools/test/signature/converter/dex/ |
DexTestConverter.java | 39 for (CompilationUnit unit : units) { 40 sources.add(new JavaSource(unit.getName(), unit.getSource()));
|
/external/antlr/antlr-3.4/runtime/Ruby/test/unit/ |
test-recognizers.rb | 5 require 'test/unit' 10 class TestTokenSource < Test::Unit::TestCase 37 class TestLexer < Test::Unit::TestCase
|
/external/chromium_org/content/browser/renderer_host/input/ |
synthetic_gesture.h | 25 // 3) Add at least one unit test per supported input source type (touch, 26 // mouse, etc) to SyntheticGestureController unit tests. The unit tests
|
/external/chromium_org/content/public/test/ |
test_browser_thread.h | 22 // A BrowserThread for unit tests; this lets unit tests in chrome/ create 32 // to enable certain unit tests. To avoid a stronger dependency of
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
measunit.h | 22 * \brief C++ API: A unit for measuring a quantity. 28 * A unit such as length, mass, volume, currency, etc. A unit is
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_atom_sampler.c | 135 texobj = ctx->Texture.Unit[texUnit]._Current; 154 sampler->lod_bias = ctx->Texture.Unit[texUnit].LodBias + msamp->LodBias; 216 GLuint unit; local 228 for (unit = 0; unit < max_units; unit++, samplers_used >>= 1) { 229 struct pipe_sampler_state *sampler = samplers + unit; 232 const GLuint texUnit = prog->SamplerUnits[unit]; 236 *num_samplers = unit + 1; 238 cso_single_sampler(st->cso_context, shader_stage, unit, sampler) [all...] |
/external/compiler-rt/lib/asan/lit_tests/ |
CMakeLists.txt | 15 ${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.in 16 ${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg 36 list(APPEND ASAN_TESTSUITES ${CMAKE_CURRENT_BINARY_DIR}/Unit)
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
Uninterruptibles.java | 71 * await(timeout, unit)} uninterruptibly. 74 long timeout, TimeUnit unit) { 77 long remainingNanos = unit.toNanos(timeout); 146 * {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)} 154 Future<V> future, long timeout, TimeUnit unit) 158 long remainingNanos = unit.toNanos(timeout); 179 * {@code unit.}{@link TimeUnit#timedJoin(Thread, long) 183 long timeout, TimeUnit unit) { 187 long remainingNanos = unit.toNanos(timeout); 250 * Invokes {@code unit.}{@link TimeUnit#sleep(long) sleep(sleepFor) [all...] |
/external/guava/guava-bootstrap/src/java/util/concurrent/ |
ExecutorService.java | 25 boolean awaitTermination(long timeout, TimeUnit unit) 38 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) 45 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
|
/external/icu4c/i18n/unicode/ |
measunit.h | 22 * \brief C++ API: A unit for measuring a quantity. 28 * A unit such as length, mass, volume, currency, etc. A unit is
|
/external/llvm/test/ |
CMakeLists.txt | 6 ${CMAKE_CURRENT_SOURCE_DIR}/Unit/lit.site.cfg.in 7 ${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg 56 llvm_unit_site_config=${CMAKE_CURRENT_BINARY_DIR}/Unit/lit.site.cfg
|
/external/mesa3d/src/mesa/state_tracker/ |
st_atom_sampler.c | 135 texobj = ctx->Texture.Unit[texUnit]._Current; 154 sampler->lod_bias = ctx->Texture.Unit[texUnit].LodBias + msamp->LodBias; 216 GLuint unit; local 228 for (unit = 0; unit < max_units; unit++, samplers_used >>= 1) { 229 struct pipe_sampler_state *sampler = samplers + unit; 232 const GLuint texUnit = prog->SamplerUnits[unit]; 236 *num_samplers = unit + 1; 238 cso_single_sampler(st->cso_context, shader_stage, unit, sampler) [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
ConnectivityManagerUnitTestRunner.java | 21 import com.android.connectivitymanagertest.unit.WifiClientTest; 22 import com.android.connectivitymanagertest.unit.WifiSoftAPTest; 27 * Instrumentation Test Runner for all unit tests
|
/frameworks/base/docs/html/training/activity-testing/ |
activity-unit-testing.jd | 1 page.title=Creating Unit Tests 11 <li><a href="#testcase">Create a Test Case for Activity Unit Testing</a> 25 <p>An {@link android.app.Activity} unit test is an excellent way to quickly 28 system). A unit test generally tests the smallest possible unit of code 30 or network resources. For example, you can write a unit test to check 33 <p>Unit tests are generally not suitable for testing complex UI interaction 37 <p>This lesson shows how you can write a unit test to verify that an 49 framework and inject them into your unit tests. To learn more about the mocking 54 <h2 id="testcase">Create a Test Case for Activity Unit Testing</h2 [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
ScheduledExecutorService.java | 73 * @param unit the time unit of the delay parameter 82 long delay, TimeUnit unit); 90 * @param unit the time unit of the delay parameter 97 long delay, TimeUnit unit); 115 * @param unit the time unit of the initialDelay and period parameters 127 TimeUnit unit); 142 * @param unit the time unit of the initialDelay and delay parameter [all...] |