Searched defs:Unit (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Djsunittest.js15 Unit: {},
312 DrNicTest.Unit.Logger = function(element) {
317 DrNicTest.Unit.Logger.prototype.start = function(testName) {
323 DrNicTest.Unit.Logger.prototype.setStatus = function(status) {
330 DrNicTest.Unit.Logger.prototype.finish = function(status, summary) {
336 DrNicTest.Unit.Logger.prototype.message = function(message) {
342 DrNicTest.Unit.Logger.prototype.summary = function(summary) {
348 DrNicTest.Unit.Logger.prototype.getLastLogLine = function() {
354 DrNicTest.Unit.Logger.prototype.getMessageCell = function() {
359 DrNicTest.Unit
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/
H A Djsunittest.js15 Unit: {},
312 DrNicTest.Unit.Logger = function(element) {
317 DrNicTest.Unit.Logger.prototype.start = function(testName) {
323 DrNicTest.Unit.Logger.prototype.setStatus = function(status) {
330 DrNicTest.Unit.Logger.prototype.finish = function(status, summary) {
336 DrNicTest.Unit.Logger.prototype.message = function(message) {
342 DrNicTest.Unit.Logger.prototype.summary = function(summary) {
348 DrNicTest.Unit.Logger.prototype.getLastLogLine = function() {
354 DrNicTest.Unit.Logger.prototype.getMessageCell = function() {
359 DrNicTest.Unit
[all...]
/external/clang/test/CodeGenCXX/
H A Darray-value-initialize.cpp32 struct Unit struct
34 Unit() {} function in struct:Unit
35 Unit(const Unit& v) {} function in struct:Unit
41 Unit leafPos[1];
/external/clang/lib/Frontend/
H A DASTMerge.cpp48 ASTUnit *Unit = ASTUnit::LoadFromASTFile(ASTFiles[I], Diags, local
50 if (!Unit)
55 Unit->getASTContext(),
56 Unit->getFileManager(),
59 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
72 delete Unit;
H A DASTUnit.cpp898 ASTUnit &Unit; member in class:__anon16171::TopLevelDeclTrackerConsumer
903 : Unit(_Unit), Hash(Hash) {
919 Unit.addTopLevelDecl(D);
925 Unit.addFileLevelDecl(D);
948 return Unit.getASTMutationListener();
952 return Unit.getDeserializationListener();
958 ASTUnit &Unit; member in class:__anon16171::TopLevelDeclTrackerAction
963 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
964 return new TopLevelDeclTrackerConsumer(Unit,
965 Unit
978 ASTUnit &Unit; member in class:__anon16171::PrecompilePreambleAction
982 PrecompilePreambleAction(ASTUnit &Unit) argument
997 ASTUnit &Unit; member in class:__anon16171::PrecompilePreambleConsumer
1003 PrecompilePreambleConsumer(ASTUnit &Unit, PrecompilePreambleAction *Action, const Preprocessor &PP, StringRef isysroot, raw_ostream *Out) argument
1765 LoadFromCompilerInvocationAction(CompilerInvocation *CI, IntrusiveRefCntPtr<DiagnosticsEngine> Diags, ASTFrontendAction *Action, ASTUnit *Unit, bool Persistent, StringRef ResourceFilesPath, bool OnlyLocalDecls, bool CaptureDiagnostics, bool PrecompilePreamble, bool CacheCodeCompletionResults, bool IncludeBriefCommentsInCodeCompletion, bool UserFilesAreVolatile, OwningPtr<ASTUnit> *ErrAST) argument
[all...]
/external/chromium_org/chrome/browser/ui/webui/performance_monitor/
H A Dperformance_monitor_ui_constants.h27 enum Unit { enum in namespace:performance_monitor
74 const Unit unit;
80 const UnitDetails* GetUnitDetails(Unit unit);
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dsorter.py34 class Unit(object): class in inherits:object
54 class VMUnit(Unit):
55 """Represents a Unit for a memory region on virtual memory."""
91 """Represents a Unit for a mmap'ed region."""
107 """Represents a Unit for a non-mmap'ed memory region on virtual memory."""
117 class MallocUnit(Unit):
118 """Represents a Unit for a malloc'ed memory block."""
/external/clang/tools/libclang/
H A DCIndexHigh.cpp248 ASTUnit &Unit; member in struct:__anon17567::FindFileMacroRefVisitData
253 FindFileMacroRefVisitData(ASTUnit &Unit, const FileEntry *File, argument
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; member in struct:__anon17568::FindFileIncludesVisitor
346 FindFileIncludesVisitor(ASTUnit &Unit, cons argument
388 ASTUnit *Unit = cxtu::getASTUnit(TU); local
[all...]
H A DCIndexDiagnostic.cpp210 unsigned clang_getNumDiagnostics(CXTranslationUnit Unit) { argument
211 if (!cxtu::getASTUnit(Unit))
213 return lazyCreateDiags(Unit, /*checkIfChanged=*/true)->getNumDiagnostics();
216 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) { argument
217 CXDiagnosticSet D = clang_getDiagnosticSetFromTU(Unit);
228 CXDiagnosticSet clang_getDiagnosticSetFromTU(CXTranslationUnit Unit) { argument
229 if (!cxtu::getASTUnit(Unit))
231 return static_cast<CXDiagnostic>(lazyCreateDiags(Unit));
H A DIndexing.cpp611 ASTUnit *Unit = ASTUnit::create(CInvok.getPtr(), Diags, local
614 OwningPtr<CXTUOwner> CXTU(new CXTUOwner(MakeCXTranslationUnit(CXXIdx, Unit)));
661 Unit,
671 printDiagsToStderr(Unit);
700 static void indexPreprocessingRecord(ASTUnit &Unit, IndexingContext &IdxCtx) { argument
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, IndexingContex argument
[all...]
H A DCIndex.cpp230 ASTUnit *Unit = cxtu::getASTUnit(TU);
231 SourceManager &SM = Unit->getSourceManager();
279 ASTUnit *Unit = cxtu::getASTUnit(TU); local
280 SourceManager &SM = Unit->getSourceManager();
284 Unit->findFileRegionDecls(File, Offset, Length, Decls);
304 Unit->findFileRegionDecls(File, Offset, Length, Decls);
2747 OwningPtr<ASTUnit> Unit(
2769 // Make sure to check that 'Unit' is non-NULL.
2771 printDiagsToStderr(Unit ? Unit
6477 printDiagsToStderr(ASTUnit *Unit) argument
6543 ASTUnit *Unit = cxtu::getASTUnit(TU); local
[all...]
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h798 * \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) function in class:Eigen::MatrixBase
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) function in class:Eigen::MatrixBase
826 * \sa MatrixBase::Unit(Index,Index), MatrixBase::Unit(Index), MatrixBase::UnitY(), MatrixBase::UnitZ(), MatrixBase::UnitW()
830 { return Derived::Unit(0); }
836 * \sa MatrixBase::Unit(Index,Index), MatrixBase::Unit(Index), MatrixBase::UnitY(), MatrixBase::UnitZ(), MatrixBase::UnitW()
840 { return Derived::Unit(
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalAnalysis.h353 /// getRegUnit - Return the live range for Unit.
355 LiveInterval &getRegUnit(unsigned Unit) { argument
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) { argument
368 return RegUnitIntervals[Unit];
371 const LiveInterval *getCachedRegUnit(unsigned Unit) const {
372 return RegUnitIntervals[Unit];
[all...]
/external/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp58 OS << "Unit~" << Unit; local
63 if (Unit >= TRI->getNumRegUnits()) {
64 OS << "BadUnit~" << Unit; local
69 MCRegUnitRootIterator Roots(Unit, TRI);
70 assert(Roots.isValid() && "Unit has no roots.");
H A DLiveDebugVariables.cpp668 unsigned Unit = *MCRegUnitIterator(Loc.getReg(), &TRI); local
669 LiveInterval *LI = &LIS.getRegUnit(Unit);
H A DLiveIntervalAnalysis.cpp222 // Register Unit Liveness
236 unsigned Unit = LI->reg; local
241 // The physregs aliasing Unit are the roots and their super-registers.
246 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
256 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
293 unsigned Unit = *Units; local
294 LiveInterval *Intv = RegUnitIntervals[Unit];
296 Intv = RegUnitIntervals[Unit] = new LiveInterval(Unit, HUGE_VALF);
301 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TR
728 getRegUnitLI(unsigned Unit) argument
[all...]
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c34 CAMLprim value llvm_initialize_native_target(value Unit) { argument
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumberLocal.h75 #define Unit decNumberUnit macro
256 /* decNumber struct) safely. Note that one Unit is included in the */
260 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber))
/external/icu4c/i18n/
H A DdecNumberLocal.h75 #define Unit decNumberUnit macro
244 /* decNumber struct) safely. Note that one Unit is included in the */
248 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber))
/external/llvm/include/llvm/Target/
H A DTargetRegisterInfo.h901 /// Usage: OS << PrintRegUnit(Unit, TRI) << '\n';
905 unsigned Unit; member in class:llvm::TargetRegisterInfo::PrintRegUnit
908 : TRI(tri), Unit(unit) {}
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.test.performance_3.6.0.v20091014.jarMETA-INF/MANIFEST.MF plugin.properties about.html scripts/cs.sh scripts/derby. ...
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp205 static bool hasRegUnit(CodeGenRegister::RegUnitList &RegUnits, unsigned Unit) { argument
206 return std::count(RegUnits.begin(), RegUnits.end(), Unit);
390 unsigned Unit = RegBank.newRegUnit(this, AR); local
391 RegUnits.push_back(Unit);
392 AR->RegUnits.push_back(Unit);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp546 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit, argument
570 return getOrCreateType(QualType(T, 0), Unit);
574 getOrCreateType(Qc.apply(CGM.getContext(), T), Unit, Declaration);
584 llvm::DIFile Unit) {
590 return getOrCreateType(CGM.getContext().getObjCIdType(), Unit);
594 Ty->getPointeeType(), Unit);
599 llvm::DIFile Unit) {
601 Ty->getPointeeType(), Unit);
657 llvm::DIFile Unit) {
659 return getOrCreateType(PointeeTy, Unit);
583 CreateType(const ObjCObjectPointerType *Ty, llvm::DIFile Unit) argument
598 CreateType(const PointerType *Ty, llvm::DIFile Unit) argument
656 getOrCreateTypeDeclaration(QualType PointeeTy, llvm::DIFile Unit) argument
663 CreatePointerLikeType(unsigned Tag, const Type *Ty, QualType PointeeTy, llvm::DIFile Unit) argument
694 CreateType(const BlockPointerType *Ty, llvm::DIFile Unit) argument
756 CreateType(const TypedefType *Ty, llvm::DIFile Unit, bool Declaration) argument
776 CreateType(const FunctionType *Ty, llvm::DIFile Unit) argument
979 getOrCreateMethodType(const CXXMethodDecl *Method, llvm::DIFile Unit) argument
988 getOrCreateInstanceMethodType( QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit) argument
1047 CreateCXXMemberFunction(const CXXMethodDecl *Method, llvm::DIFile Unit, llvm::DIType RecordTy) argument
1122 CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys, llvm::DIType RecordTy) argument
1149 CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys, llvm::DIType RecordTy) argument
1167 CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys, llvm::DIType RecordTy) argument
1208 CollectTemplateParams(const TemplateParameterList *TPList, ArrayRef<TemplateArgument> TAList, llvm::DIFile Unit) argument
1319 CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) argument
1334 CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial, llvm::DIFile Unit) argument
1348 getOrCreateVTablePtrType(llvm::DIFile Unit) argument
1380 CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys) argument
1492 CreateType(const ObjCObjectType *Ty, llvm::DIFile Unit) argument
1524 CreateType(const ObjCInterfaceType *Ty, llvm::DIFile Unit) argument
1700 CreateType(const VectorType *Ty, llvm::DIFile Unit) argument
1717 CreateType(const ArrayType *Ty, llvm::DIFile Unit) argument
1772 CreateType(const LValueReferenceType *Ty, llvm::DIFile Unit) argument
1778 CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit) argument
1983 getOrCreateType(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
1999 getOrCreateType(QualType(Ty.getTypePtr(), 0), Unit, Declaration); local
2069 CreateTypeNode(QualType Ty, llvm::DIFile Unit, bool Declaration) argument
2158 getOrCreateLimitedType(QualType Ty, llvm::DIFile Unit) argument
2257 CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) argument
2276 CreateMemberType(llvm::DIFile Unit, QualType FType, StringRef Name, uint64_t *Offset) argument
2415 llvm::DIFile Unit = getOrCreateFile(Loc); local
2585 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
2660 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
2801 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
3047 llvm::DIFile Unit = getOrCreateFile(D->getLocation()); local
3084 llvm::DIFile Unit = getOrCreateFile(ID->getLocation()); local
3110 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c98 CAMLprim LLVMContextRef llvm_create_context(value Unit) { argument
109 CAMLprim LLVMContextRef llvm_global_context(value Unit) { argument
1982 CAMLprim LLVMMemoryBufferRef llvm_memorybuffer_of_stdin(value Unit) { argument
2001 CAMLprim LLVMPassManagerRef llvm_passmanager_create(value Unit) { argument

Completed in 625 milliseconds

12