/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);
|
/system/media/audio_utils/tests/ |
Android.mk | 1 # Build the unit tests for audio_utils
|
/system/media/camera/tests/ |
Android.mk | 1 # Build the unit tests.
|
/cts/common/util/src/com/android/compatibility/common/util/ |
ResultUnit.java | 20 * Enum for representing the unit of results. 23 /** for value with no unit */ 39 /** unit for benchmarking with generic score. */
|
/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 | 24 // 3) Add at least one unit test per supported input source type (touch, 25 // 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/tsan/tests/ |
CMakeLists.txt | 35 # Build unit tests only for 64-bit Linux. 49 # unit tests. 61 add_subdirectory(unit)
|
/external/compiler-rt/unittests/ |
lit.common.unit.configured.in | 4 # Generic config options for all compiler-rt unit tests. 24 # Setup attributes common for all compiler-rt unit tests. 25 lit_config.load_config(config, "@COMPILER_RT_SOURCE_DIR@/unittests/lit.common.unit.cfg")
|
/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/llvm/bindings/ocaml/transforms/vectorize/ |
llvm_vectorize.ml | 10 external add_bb_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 12 external add_loop_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 14 external add_slp_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
|
llvm_vectorize.mli | 16 external add_bb_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 20 external add_loop_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 24 external add_slp_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
|
/external/llvm/lib/Target/PowerPC/ |
PPCScheduleG4Plus.td | 14 def G4P_BPU : FuncUnit; // Branch unit 15 def G4P_SLU : FuncUnit; // Store/load unit 16 def G4P_SRU : FuncUnit; // special register unit 17 def G4P_IU1 : FuncUnit; // integer unit 1 (simple) 18 def G4P_IU2 : FuncUnit; // integer unit 2 (complex) 19 def G4P_IU3 : FuncUnit; // integer unit 3 (simple) 20 def G4P_IU4 : FuncUnit; // integer unit 4 (simple) 21 def G4P_FPU1 : FuncUnit; // floating point unit 1 22 def G4P_VPU : FuncUnit; // vector permutation unit 23 def G4P_VIU1 : FuncUnit; // vector integer unit 1 (simple [all...] |
/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...] |
/external/okhttp/okio/src/main/java/okio/ |
Deadline.java | 28 @Override public Deadline start(long timeout, TimeUnit unit) { 42 public Deadline start(long timeout, TimeUnit unit) { 43 deadlineNanos = System.nanoTime() + unit.toNanos(timeout);
|
/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...] |
/external/chromium_org/media/filters/ |
h264_to_annex_b_bitstream_converter.cc | 16 // Helper function which determines whether NAL unit of given type marks 17 // access unit boundary. 19 // Check if this packet marks access unit boundary by checking the 24 nal_unit_type == 9 || // Access unit delimiter 82 return 0; // Error: configuration not handled, we don't know nal unit width 98 // Read the next NAL unit length from the input buffer 115 // five least significant bits of first NAL unit byte signify nal_unit_type 124 // Actual NAL unit size 168 // NAL unit width should be known at this point 179 // Read the next NAL unit length from the input buffer by scannin [all...] |