/external/jsr305/ri/nbproject/ |
project.xml | 70 <compilation-unit> 75 </compilation-unit>
|
/external/llvm/bindings/ocaml/target/ |
llvm_target.ml | 20 external add : t -> [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 23 external dispose : t -> unit = "llvm_targetdata_dispose"
|
/external/llvm/lib/DebugInfo/ |
DWARFFormValue.h | 60 /// Resolve any compile unit specific references so that we don't need 61 /// the compile unit at a later time in order to work with the form
|
/external/llvm/test/CodeGen/MBlaze/ |
div.ll | 2 ; unit is not available in the hardware and that function calls are not used 3 ; when the multiplier unit is available in the hardware.
|
/external/protobuf/gtest/test/ |
gtest-param-test2_test.cc | 44 // Tests that generators defined in a different translation unit 49 // Tests that a parameterized test case can be defined in one translation unit
|
gtest_break_on_failure_unittest_.cc | 32 // Unit test for Google Test's break-on-failure mode. 39 // This program will be invoked from a Python unit test. It is
|
gtest_list_tests_unittest_.cc | 32 // Unit test for Google Test's --gtest_list_tests flag. 38 // This program will be invoked from a Python unit test.
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
openbugs.py | 47 # _find_bugs_in_string mostly exists for easy unit testing. 58 # This won't open bugs until stdin is closed but could be made to easily. That would just make unit testing slightly harder.
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/ |
omxVCM4P10_InterpolateChroma.c | 37 * in 1/8 pixel unit;valid in the range [0,7] 39 * in 1/8 pixel unit;valid in the range [0,7]
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
omxVCM4P10_InterpolateChroma.c | 37 * in 1/8 pixel unit;valid in the range [0,7] 39 * in 1/8 pixel unit;valid in the range [0,7]
|
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
armVCM4P10_Interpolate_Chroma.c | 36 * component in 1/8 pixel unit (0~7) 38 * component in 1/8 pixel unit (0~7)
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
MediaRecorderStopStateUnitTest.java | 17 package com.android.mediaframeworktest.unit; 26 * Unit test class to test the set of valid and invalid states that
|
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
UnitTest.java | 76 before it finishes running all of the unit tests. */ 92 RSTest.log("Unit test got unexpected message");
|
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_Clock.c | 44 * timescale unit. 48 * @param timescale: (IN) The timescale (time unit per second)
|
/packages/apps/Email/ |
Android.mk | 41 # The Emma tool analyzes code coverage when running unit tests on the 53 # additionally, build unit tests in a separate .apk
|
/packages/apps/Mms/tests/src/com/android/mms/util/ |
SmileyParserUnitTests.java | 31 * This is a series of unit tests for the SmileyParser class. 33 * This is just unit tests of the SmileyParser - the activity is not instantiated
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gre/ |
ViewMetadataRepositoryTest.java | 42 // Make sure unit tests are run with assertions on 45 assertTrue("This unit test must be run with assertions enabled (-ea)", assertionsEnabled);
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ExecutorService.java | 165 * @param unit the time unit of the timeout argument 170 boolean awaitTermination(long timeout, TimeUnit unit) 263 * @param unit the time unit of the timeout argument 272 * unit are <tt>null</tt> 277 long timeout, TimeUnit unit) 312 * @param unit the time unit of the timeout argument 315 * @throws NullPointerException if tasks, or unit, or any elemen [all...] |
ScheduledThreadPoolExecutor.java | 205 public long getDelay(TimeUnit unit) { 206 return unit.convert(time - now(), TimeUnit.NANOSECONDS); 461 private long triggerTime(long delay, TimeUnit unit) { 462 return triggerTime(unit.toNanos((delay < 0) ? 0 : delay)); 496 TimeUnit unit) { 497 if (command == null || unit == null) 501 triggerTime(delay, unit))); 512 TimeUnit unit) { 513 if (callable == null || unit == null) 517 triggerTime(delay, unit))); [all...] |
/external/clang/lib/ARCMigrate/ |
ARCMT.cpp | 248 llvm::OwningPtr<ASTUnit> Unit( 250 if (!Unit) 256 ASTContext &Ctx = Unit->getASTContext(); 260 DiagClient->BeginSourceFile(Ctx.getLangOptions(), &Unit->getPreprocessor()); 268 Unit->getPreprocessor()); 283 DiagClient->BeginSourceFile(Ctx.getLangOptions(), &Unit->getPreprocessor()); 289 TransformActions testAct(*Diags, capturedDiags, Ctx, Unit->getPreprocessor()); 290 MigrationPass pass(Ctx, Unit->getSema(), testAct, ARCMTMacroLocs); 511 llvm::OwningPtr<ASTUnit> Unit( 514 if (!Unit) [all...] |
/external/webkit/Source/WebCore/css/ |
CSSParser.cpp | 399 CSSPrimitiveValue::UnitTypes unit = CSSPrimitiveValue::CSS_NUMBER; 402 unit = CSSPrimitiveValue::CSS_PX; 405 unit = CSSPrimitiveValue::CSS_PERCENTAGE; 415 if (unit == CSSPrimitiveValue::CSS_NUMBER) { 418 unit = CSSPrimitiveValue::CSS_PX; 426 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createValue(number, unit), important); 688 switch (value->unit) { 692 value->unit = (unitflags & FLength) ? CSSPrimitiveValue::CSS_PX : 737 if (value->unit != CSSPrimitiveValue::CSS_IDENT || value->id) 783 // The purpose of this code is to implement the WinIE quirk that allows unit types to be separated from their numeric value 792 int unit = unitFromString(value); local 5746 CSSParser::Units unit() const { return m_unit; } function in class:WebCore::TransformOperationInfo 5791 CSSParser::Units unit = info.unit(); local [all...] |
/bionic/libm/amd64/ |
fenv.h | 66 * As compared to the x87 control word, the SSE unit's control word 137 * We assume that the x87 and the SSE unit agree on the 140 * unit on an Opteron 244. 192 * We assume that the masks for the x87 and the SSE unit are
|
/bionic/libm/include/amd64/ |
fenv.h | 66 * As compared to the x87 control word, the SSE unit's control word 137 * We assume that the x87 and the SSE unit agree on the 140 * unit on an Opteron 244. 192 * We assume that the masks for the x87 and the SSE unit are
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/ |
TestPackageResultTest.java | 25 * Unit tests for {@link TestPackageResult}.
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/ |
TestPackageDefTest.java | 25 * Unit tests for {@link TestPackageDef}.
|