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

1 2 3

  /external/clang/test/CodeGenCXX/
array-value-initialize.cpp 32 struct Unit
34 Unit() {}
35 Unit(const Unit& v) {}
41 Unit leafPos[1];
  /external/clang/lib/Frontend/
ASTMerge.cpp 47 ASTUnit *Unit = ASTUnit::LoadFromASTFile(ASTFiles[I], Diags,
49 if (!Unit)
54 Unit->getASTContext(),
55 Unit->getFileManager(),
58 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
71 delete Unit;
ASTUnit.cpp 843 /// of all macros that have been defined by the translation unit.
880 ASTUnit &Unit;
885 : Unit(_Unit), Hash(Hash) {
901 Unit.addTopLevelDecl(D);
907 Unit.addFileLevelDecl(D);
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp 249 /// getOrCreateMainFile - Get the file info for main compile unit.
291 /// CreateCompileUnit - Create new compile unit.
344 // Create new compile unit.
507 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
530 return getOrCreateType(QualType(T, 0), Unit);
533 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
543 llvm::DIFile Unit) {
549 return getOrCreateType(CGM.getContext().getObjCIdType(), Unit);
553 Ty->getPointeeType(), Unit);
558 llvm::DIFile Unit) {
    [all...]
CGDebugInfo.h 118 llvm::DIType CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit);
127 QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit);
162 llvm::DIFile Unit);
164 CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit);
295 /// CreateCompileUnit - Create new compile unit.
302 /// getOrCreateMainFile - Get the file info for main compile unit.
325 llvm::DIType CreateMemberType(llvm::DIFile Unit, QualType FType,
  /external/eigen/test/
geo_eulerangles.cpp 30 VERIFY_IS_APPROX(m, Matrix3(AngleAxisx(ea[0], Vector3::Unit##X()) * AngleAxisx(ea[1], Vector3::Unit##Y()) * AngleAxisx(ea[2], Vector3::Unit##Z()))); \
  /external/clang/tools/libclang/
CIndexHigh.cpp 248 ASTUnit &Unit;
253 FindFileMacroRefVisitData(ASTUnit &Unit, const FileEntry *File,
256 : Unit(Unit), File(File), Macro(Macro), visitor(visitor) { }
259 return Unit.getASTContext();
316 ASTUnit *Unit = cxtu::getASTUnit(TU);
317 SourceManager &SM = Unit->getSourceManager();
328 FindFileMacroRefVisitData data(*Unit, File, Macro, Visitor);
342 ASTUnit &Unit;
346 FindFileIncludesVisitor(ASTUnit &Unit, const FileEntry *File
    [all...]
Indexing.cpp 611 ASTUnit *Unit = ASTUnit::create(CInvok.getPtr(), Diags,
614 OwningPtr<CXTUOwner> CXTU(new CXTUOwner(MakeCXTranslationUnit(CXXIdx, Unit)));
661 Unit,
671 printDiagsToStderr(Unit);
700 static void indexPreprocessingRecord(ASTUnit &Unit, IndexingContext &IdxCtx) {
701 Preprocessor &PP = Unit.getPreprocessor();
708 llvm::tie(I, E) = Unit.getLocalPreprocessingEntities();
710 bool isModuleFile = Unit.isModuleFile();
718 if (isModuleFile && Unit.isInMainFileID(Loc))
736 static void indexTranslationUnit(ASTUnit &Unit, IndexingContext &IdxCtx)
    [all...]
CIndexDiagnostic.cpp 210 unsigned clang_getNumDiagnostics(CXTranslationUnit Unit) {
211 if (!cxtu::getASTUnit(Unit))
213 return lazyCreateDiags(Unit, /*checkIfChanged=*/true)->getNumDiagnostics();
216 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) {
217 CXDiagnosticSet D = clang_getDiagnosticSetFromTU(Unit);
228 CXDiagnosticSet clang_getDiagnosticSetFromTU(CXTranslationUnit Unit) {
229 if (!cxtu::getASTUnit(Unit))
231 return static_cast<CXDiagnostic>(lazyCreateDiags(Unit));
CIndexer.h 101 void printDiagsToStderr(ASTUnit *Unit);
  /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
test-dfa.rb 5 require 'test/unit'
21 class TestDFA < Test::Unit::TestCase
test-scope.rb 5 require 'test/unit'
8 class TestDFA < Test::Unit::TestCase
  /external/llvm/include/llvm/CodeGen/
LiveIntervalAnalysis.h 93 /// RegUnitIntervals - Keep a live interval for each register unit as a way
342 // Register unit functions.
350 // track liveness per register unit to handle aliasing registers more
353 /// getRegUnit - Return the live range for Unit.
355 LiveInterval &getRegUnit(unsigned Unit) {
356 LiveInterval *LI = RegUnitIntervals[Unit];
359 RegUnitIntervals[Unit] = LI = new LiveInterval(Unit, HUGE_VALF);
365 /// getCachedRegUnit - Return the live range for Unit if it has already
367 LiveInterval *getCachedRegUnit(unsigned Unit) {
    [all...]
  /frameworks/av/media/libstagefright/timedtext/test/
Android.mk 4 # Unit tests for libstagefright_timedtext
  /external/icu4c/i18n/
decNumber.c 167 /* lsu -- least significant Unit (of coefficient) */
170 /* msu -- most significant Unit (of coefficient) */
213 static const Unit uarrone[1]={1}; /* Unit array of 1, used for incrementing */
235 /* QUOT10 -- macro to return the quotient of unit u divided by 10**n */
264 static Int decGetDigits(Unit *, Int);
276 static void decReverse(Unit *, Unit *);
277 static void decSetCoeff(decNumber *, decContext *, const Unit *,
282 static Int decShiftToLeast(Unit *, Int, Int)
    [all...]
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 272 OwningPtr<ASTUnit> Unit(
274 if (!Unit) {
282 ASTContext &Ctx = Unit->getASTContext();
286 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
295 Unit->getPreprocessor());
310 DiagClient->BeginSourceFile(Ctx.getLangOpts(), &Unit->getPreprocessor());
316 TransformActions testAct(*Diags, capturedDiags, Ctx, Unit->getPreprocessor());
317 MigrationPass pass(Ctx, OrigGCMode, Unit->getSema(), testAct, capturedDiags,
588 OwningPtr<ASTUnit> Unit(
591 if (!Unit) {
    [all...]
  /external/llvm/test/
Makefile 57 $(MAKE) -C $(PROJ_OBJ_DIR)/../tools/clang/test lit.site.cfg Unit/lit.site.cfg
84 check-local:: lit.site.cfg Unit/lit.site.cfg
91 check-local-all:: lit.site.cfg Unit/lit.site.cfg extra-site-cfgs
149 Unit/lit.site.cfg: $(PROJ_OBJ_DIR)/Unit/.dir FORCE
151 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp
152 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp
153 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp
154 @$(ECHOPATH) s=@LLVM_BUILD_MODE@=$(BuildMode)=g >> unit.tmp
155 @$(ECHOPATH) s=@ENABLE_SHARED@=$(ENABLE_SHARED)=g >> unit.tm
    [all...]
  /external/clang/test/
Makefile 32 all:: lit.site.cfg Unit/lit.site.cfg
51 Unit/lit.site.cfg: FORCE
52 @echo "Making Clang 'Unit/lit.site.cfg' file..."
54 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp
55 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp
56 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp
57 @$(ECHOPATH) s=@LLVM_LIBS_DIR@=$(LibDir)=g >> unit.tmp
58 @$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> unit.tmp
59 @$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> unit.tmp
60 @$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> unit.tm
    [all...]
  /external/llvm/unittests/
Makefile.unittest 10 # This file is included by all of the unit test makefiles.
14 # Set up variables for building a unit test.
51 $(Echo) Linking $(BuildMode) unit test $(TESTNAME) $(StripWarnMsg)
54 $(Echo) ======= Finished Linking $(BuildMode) Unit test $(TESTNAME) \
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 56 OS << "Unit~" << Unit;
61 if (Unit >= TRI->getNumRegUnits()) {
62 OS << "BadUnit~" << Unit;
67 MCRegUnitRootIterator Roots(Unit, TRI);
68 assert(Roots.isValid() && "Unit has no roots.");
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 67 ax[i].derivatives() = DerivativeType::Unit(this->inputs(),i);
  /external/eigen/Eigen/src/Core/
CwiseNullaryOp.h 794 /** \returns an expression of the i-th unit (basis) vector.
798 * \sa MatrixBase::Unit(Index), MatrixBase::UnitX(), MatrixBase::UnitY(), MatrixBase::UnitZ(), MatrixBase::UnitW()
801 EIGEN_STRONG_INLINE const typename MatrixBase<Derived>::BasisReturnType MatrixBase<Derived>::Unit(Index size, Index i)
807 /** \returns an expression of the i-th unit (basis) vector.
813 * \sa MatrixBase::Unit(Index,Index), MatrixBase::UnitX(), MatrixBase::UnitY(), MatrixBase::UnitZ(), MatrixBase::UnitW()
816 EIGEN_STRONG_INLINE const typename MatrixBase<Derived>::BasisReturnType MatrixBase<Derived>::Unit(Index i)
822 /** \returns an expression of the X axis unit vector (1{,0}^*)
826 * \sa MatrixBase::Unit(Index,Index), MatrixBase::Unit(Index), MatrixBase::UnitY(), MatrixBase::UnitZ(), MatrixBase::UnitW()
830 { return Derived::Unit(0);
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 95 VectorType v = VectorType::Unit(m, k - 1), workspace(m);
156 VectorType x_new = y(k - 1) * VectorType::Unit(m, k - 1);
162 x_new += y(i) * VectorType::Unit(m, i);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 

Completed in 461 milliseconds

1 2 3