HomeSort by relevance Sort by last modified time
    Searched refs:Unit (Results 101 - 125 of 823) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/lib/Index/
IndexingAction.cpp 165 static void indexTranslationUnit(ASTUnit &Unit, IndexingContext &IndexCtx) {
166 Unit.visitLocalTopLevelDecls(&IndexCtx, topLevelDeclVisitor);
169 void index::indexASTUnit(ASTUnit &Unit,
173 IndexCtx.setASTContext(Unit.getASTContext());
174 DataConsumer->initialize(Unit.getASTContext());
175 indexTranslationUnit(Unit, IndexCtx);
  /external/eigen/test/
geo_eulerangles.cpp 23 Matrix3 m(AngleAxisx(ea[0], Vector3::Unit(i)) * AngleAxisx(ea[1], Vector3::Unit(j)) * AngleAxisx(ea[2], Vector3::Unit(k)));
25 Matrix3 mbis(AngleAxisx(eabis[0], Vector3::Unit(i)) * AngleAxisx(eabis[1], Vector3::Unit(j)) * AngleAxisx(eabis[2], Vector3::Unit(k)));
  /frameworks/support/navigation/common/ktx/src/main/java/androidx/navigation/
NavOptionsBuilder.kt 29 fun navOptions(block: NavOptionsBuilder.() -> Unit): NavOptions =
82 fun popUpTo(@IdRes id: Int, block: PopUpToBuilder.() -> Unit) {
92 fun anim(block: AnimBuilder.() -> Unit) {
NavGraphBuilder.kt 27 block: NavGraphBuilder.() -> Unit
36 block: NavGraphBuilder.() -> Unit
  /external/google-benchmark/test/
options_test.cc 25 BENCHMARK(BM_basic_slow)->Arg(10)->Unit(benchmark::kNanosecond);
26 BENCHMARK(BM_basic_slow)->Arg(100)->Unit(benchmark::kMicrosecond);
27 BENCHMARK(BM_basic_slow)->Arg(1000)->Unit(benchmark::kMillisecond);
  /external/libcxx/utils/google-benchmark/test/
options_test.cc 25 BENCHMARK(BM_basic_slow)->Arg(10)->Unit(benchmark::kNanosecond);
26 BENCHMARK(BM_basic_slow)->Arg(100)->Unit(benchmark::kMicrosecond);
27 BENCHMARK(BM_basic_slow)->Arg(1000)->Unit(benchmark::kMillisecond);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv04_state_tex.c 68 if (ctx->Texture.Unit[i]._Current) {
69 struct gl_texture_object *t = ctx->Texture.Unit[i]._Current;
84 lod_bias = CLAMP(ctx->Texture.Unit[i].LodBias +
nouveau_span.c 72 _swrast_map_texture(ctx, ctx->Texture.Unit[i]._Current);
74 _swrast_unmap_texture(ctx, ctx->Texture.Unit[i]._Current);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/test/
options_test.cc 25 BENCHMARK(BM_basic_slow)->Arg(10)->Unit(benchmark::kNanosecond);
26 BENCHMARK(BM_basic_slow)->Arg(100)->Unit(benchmark::kMicrosecond);
27 BENCHMARK(BM_basic_slow)->Arg(1000)->Unit(benchmark::kMillisecond);
  /external/skia/experimental/svg/model/
SkSVGStop.h 37 SkSVGLength fOffset = SkSVGLength(0 , SkSVGLength::Unit::kPercentage);
  /external/skqp/experimental/svg/model/
SkSVGStop.h 37 SkSVGLength fOffset = SkSVGLength(0 , SkSVGLength::Unit::kPercentage);
  /frameworks/support/core/ktx/src/main/java/androidx/core/content/
Context.kt 65 block: TypedArray.() -> Unit
82 block: TypedArray.() -> Unit
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexingAction.h 46 void indexASTUnit(ASTUnit &Unit,
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Index/
IndexingAction.h 46 void indexASTUnit(ASTUnit &Unit,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Index/
IndexingAction.h 46 void indexASTUnit(ASTUnit &Unit,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Index/
IndexingAction.h 46 void indexASTUnit(ASTUnit &Unit,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Index/
IndexingAction.h 46 void indexASTUnit(ASTUnit &Unit,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Index/
IndexingAction.h 46 void indexASTUnit(ASTUnit &Unit,
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 95 /// Keeps a live range set for each register unit to track fixed physreg
361 // Register unit functions.
369 // track liveness per register unit to handle aliasing registers more
372 /// getRegUnit - Return the live range for Unit.
374 LiveRange &getRegUnit(unsigned Unit) {
375 LiveRange *LR = RegUnitRanges[Unit];
379 RegUnitRanges[Unit] = LR = new LiveRange(UseSegmentSetForPhysRegs);
380 computeRegUnitRange(*LR, Unit);
385 /// getCachedRegUnit - Return the live range for Unit if it has already
387 LiveRange *getCachedRegUnit(unsigned Unit) {
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 166 /// Get the child of \a Context described by \a DIE in \a Unit. The
176 const DWARFDebugInfoEntryMinimal *DIE, CompileUnit &Unit,
182 /// \brief Stores all information relating to a compile unit, be it in
260 /// Mark every DIE in this unit as kept. This function also
265 /// \brief Compute the end offset for this unit. Must be
267 /// \returns the next unit offset (which is also the current
355 /// functions in this unit, associated with the PC offset to apply
360 /// all the unit's function addresses.
372 /// \brief Accelerator entries for the unit, both for the pub*
385 /// Is this unit subject to the ODR rule
    [all...]
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 67 Printable PrintRegUnit(unsigned Unit, const TargetRegisterInfo *TRI) {
68 return Printable([Unit, TRI](raw_ostream &OS) {
71 OS << "Unit~" << Unit;
76 if (Unit >= TRI->getNumRegUnits()) {
77 OS << "BadUnit~" << Unit;
82 MCRegUnitRootIterator Roots(Unit, TRI);
83 assert(Roots.isValid() && "Unit has no roots.");
90 Printable PrintVRegOrUnit(unsigned Unit, const TargetRegisterInfo *TRI) {
91 return Printable([Unit, TRI](raw_ostream &OS)
    [all...]
  /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
  /frameworks/support/core/ktx/src/androidTest/java/androidx/core/transition/
TransitionTest.kt 70 override fun onTransitionResume(transition: Transition?) = Unit
71 override fun onTransitionPause(transition: Transition?) = Unit
72 override fun onTransitionCancel(transition: Transition?) = Unit
73 override fun onTransitionStart(transition: Transition?) = Unit
  /frameworks/support/navigation/testing/ktx/src/main/java/androidx/navigation/testing/
TestNavigatorDestinationBuilder.kt 37 block: TestNavigatorDestinationBuilder.() -> Unit
  /frameworks/support/paging/common/src/test/java/androidx/paging/
AsyncListDataSource.kt 21 private val workItems: MutableList<() -> Unit> = ArrayList()

Completed in 1467 milliseconds

1 2 3 45 6 7 8 91011>>