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

/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/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.cpp46 ASTUnit *Unit = ASTUnit::LoadFromASTFile(ASTFiles[I], Diags, local
48 if (!Unit)
53 Unit->getASTContext(),
54 Unit->getFileManager(),
57 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl();
70 delete Unit;
H A DASTUnit.cpp852 ASTUnit &Unit; member in class:__anon96::TopLevelDeclTrackerConsumer
857 : Unit(_Unit), Hash(Hash) {
873 Unit.addTopLevelDecl(D);
879 Unit.addFileLevelDecl(D);
904 ASTUnit &Unit; member in class:__anon96::TopLevelDeclTrackerAction
909 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
910 return new TopLevelDeclTrackerConsumer(Unit,
911 Unit.getCurrentTopLevelHashValue());
915 TopLevelDeclTrackerAction(ASTUnit &_Unit) : Unit(_Unit) {}
919 return Unit
924 ASTUnit &Unit; member in class:__anon96::PrecompilePreambleConsumer
929 PrecompilePreambleConsumer(ASTUnit &Unit, const Preprocessor &PP, StringRef isysroot, raw_ostream *Out) argument
966 ASTUnit &Unit; member in class:__anon96::PrecompilePreambleAction
969 PrecompilePreambleAction(ASTUnit &Unit) argument
1688 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/llvm/lib/Analysis/
H A DDbgInfoPrinter.cpp122 DICompileUnit Unit; local
134 Unit = Var.getCompileUnit();
145 Unit = Var.getCompileUnit();
156 Unit = Var.getCompileUnit();
163 StringRef F = Unit.getFilename();
166 StringRef D = Unit.getDirectory();
/external/clang/tools/libclang/
H A DCIndexHigh.cpp215 ASTUnit *Unit = static_cast<ASTUnit*>(TU->TUData); local
216 SourceManager &SM = Unit->getSourceManager();
246 ASTUnit &Unit; member in struct:__anon4841::FindFileMacroRefVisitData
251 FindFileMacroRefVisitData(ASTUnit &Unit, const FileEntry *File, argument
254 : Unit(Unit), File(File), Macro(Macro), visitor(visitor) { }
257 return Unit.getASTContext();
313 ASTUnit *Unit = static_cast<ASTUnit*>(TU->TUData);
314 SourceManager &SM = Unit->getSourceManager();
325 FindFileMacroRefVisitData data(*Unit, Fil
[all...]
H A DCIndexDiagnostic.cpp211 unsigned clang_getNumDiagnostics(CXTranslationUnit Unit) { argument
212 if (!Unit->TUData)
214 return lazyCreateDiags(Unit, /*checkIfChanged=*/true)->getNumDiagnostics();
217 CXDiagnostic clang_getDiagnostic(CXTranslationUnit Unit, unsigned Index) { argument
218 CXDiagnosticSet D = clang_getDiagnosticSetFromTU(Unit);
229 CXDiagnosticSet clang_getDiagnosticSetFromTU(CXTranslationUnit Unit) { argument
230 if (!Unit->TUData)
232 return static_cast<CXDiagnostic>(lazyCreateDiags(Unit));
H A DIndexing.cpp355 ASTUnit *Unit = ASTUnit::create(CInvok.getPtr(), Diags, local
358 OwningPtr<CXTUOwner> CXTU(new CXTUOwner(MakeCXTranslationUnit(CXXIdx, Unit)));
394 Unit,
404 printDiagsToStderr(Unit);
433 static void indexPreprocessingRecord(ASTUnit &Unit, IndexingContext &IdxCtx) { argument
434 Preprocessor &PP = Unit.getPreprocessor();
444 bool OnlyLocal = !Unit.isMainFileAST() && Unit.getOnlyLocalDecls();
465 static void indexTranslationUnit(ASTUnit &Unit, IndexingContext &IdxCtx) { argument
469 bool OnlyLocal = !Unit
[all...]
H A DCIndex.cpp221 ASTUnit *Unit = static_cast<ASTUnit *>(TU->TUData);
222 SourceManager &SM = Unit->getSourceManager();
267 ASTUnit *Unit = static_cast<ASTUnit *>(TU->TUData); local
268 SourceManager &SM = Unit->getSourceManager();
272 Unit->findFileRegionDecls(File, Offset, Length, Decls);
292 Unit->findFileRegionDecls(File, Offset, Length, Decls);
2623 OwningPtr<ASTUnit> Unit(
2644 // Make sure to check that 'Unit' is non-NULL.
2646 printDiagsToStderr(Unit ? Unit
6071 printDiagsToStderr(ASTUnit *Unit) argument
[all...]
/external/llvm/include/llvm/CodeGen/
H A DLiveIntervalAnalysis.h325 /// getRegUnit - Return the live range for Unit.
327 LiveInterval &getRegUnit(unsigned Unit) { argument
328 LiveInterval *LI = RegUnitIntervals[Unit];
331 RegUnitIntervals[Unit] = LI = new LiveInterval(Unit, HUGE_VALF);
337 /// getCachedRegUnit - Return the live range for Unit if it has already
339 LiveInterval *getCachedRegUnit(unsigned Unit) { argument
340 return RegUnitIntervals[Unit];
/external/llvm/lib/Target/
H A DTargetRegisterInfo.cpp52 OS << "Unit~" << Unit; local
57 if (Unit >= TRI->getNumRegUnits()) {
58 OS << "BadUnit~" << Unit; local
63 MCRegUnitRootIterator Roots(Unit, TRI);
64 assert(Roots.isValid() && "Unit has no roots.");
/external/llvm/bindings/ocaml/executionengine/
H A Dexecutionengine_ocaml.c34 CAMLprim value llvm_initialize_native_target(value Unit) { argument
/external/icu4c/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/llvm/include/llvm/Target/
H A DTargetRegisterInfo.h868 /// Usage: OS << PrintRegUnit(Unit, TRI) << '\n';
872 unsigned Unit; member in class:llvm::PrintRegUnit
875 : TRI(tri), Unit(unit) {}
/external/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp659 unsigned Unit = *MCRegUnitIterator(Loc.getReg(), &TRI); local
660 LiveInterval *LI = &LIS.getRegUnit(Unit);
H A DLiveIntervalAnalysis.cpp507 // Register Unit Liveness
521 unsigned Unit = LI->reg; local
526 // The physregs aliasing Unit are the roots and their super-registers.
531 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
543 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) {
582 unsigned Unit = *Units; local
583 LiveInterval *Intv = RegUnitIntervals[Unit];
585 Intv = RegUnitIntervals[Unit] = new LiveInterval(Unit, HUGE_VALF);
590 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TR
[all...]
/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.cpp191 static bool hasRegUnit(CodeGenRegister::RegUnitList &RegUnits, unsigned Unit) { argument
192 return std::count(RegUnits.begin(), RegUnits.end(), Unit);
371 unsigned Unit = RegBank.newRegUnit(this, AR); local
372 RegUnits.push_back(Unit);
373 AR->RegUnits.push_back(Unit);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp463 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) { argument
486 return getOrCreateType(QualType(T, 0), Unit);
489 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
499 llvm::DIFile Unit) {
502 Ty->getPointeeType(), Unit);
507 llvm::DIFile Unit) {
509 Ty->getPointeeType(), Unit);
568 llvm::DIFile Unit) {
570 return getOrCreateType(PointeeTy, Unit);
581 return CreateQualifiedType(PointeeTy, Unit);
498 CreateType(const ObjCObjectPointerType *Ty, llvm::DIFile Unit) argument
506 CreateType(const PointerType *Ty, llvm::DIFile Unit) argument
567 CreatePointeeType(QualType PointeeTy, llvm::DIFile Unit) argument
595 CreatePointerLikeType(unsigned Tag, const Type *Ty, QualType PointeeTy, llvm::DIFile Unit) argument
615 CreateType(const BlockPointerType *Ty, llvm::DIFile Unit) argument
678 CreateType(const TypedefType *Ty, llvm::DIFile Unit) argument
696 CreateType(const FunctionType *Ty, llvm::DIFile Unit) argument
860 getOrCreateMethodType(const CXXMethodDecl *Method, llvm::DIFile Unit) argument
926 CreateCXXMemberFunction(const CXXMethodDecl *Method, llvm::DIFile Unit, llvm::DIType RecordTy) argument
1001 CollectCXXMemberFunctions(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys, llvm::DIType RecordTy) argument
1032 CollectCXXFriends(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys, llvm::DIType RecordTy) argument
1050 CollectCXXBases(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys, llvm::DIType RecordTy) argument
1091 CollectTemplateParams(const TemplateParameterList *TPList, const TemplateArgumentList &TAList, llvm::DIFile Unit) argument
1117 CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit) argument
1132 CollectCXXTemplateParams(const ClassTemplateSpecializationDecl *TSpecial, llvm::DIFile Unit) argument
1146 getOrCreateVTablePtrType(llvm::DIFile Unit) argument
1178 CollectVTableInfo(const CXXRecordDecl *RD, llvm::DIFile Unit, SmallVectorImpl<llvm::Value *> &EltTys) argument
1289 CreateType(const ObjCObjectType *Ty, llvm::DIFile Unit) argument
1296 CreateType(const ObjCInterfaceType *Ty, llvm::DIFile Unit) argument
1456 CreateType(const VectorType *Ty, llvm::DIFile Unit) argument
1477 CreateType(const ArrayType *Ty, llvm::DIFile Unit) argument
1532 CreateType(const LValueReferenceType *Ty, llvm::DIFile Unit) argument
1538 CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit) argument
1712 getOrCreateType(QualType Ty, llvm::DIFile Unit) argument
1742 CreateTypeNode(QualType Ty, llvm::DIFile Unit) argument
1823 getOrCreateLimitedType(QualType Ty, llvm::DIFile Unit) argument
1921 CreateLimitedTypeNode(QualType Ty,llvm::DIFile Unit) argument
1940 CreateMemberType(llvm::DIFile Unit, QualType FType, StringRef Name, uint64_t *Offset) argument
2030 llvm::DIFile Unit = getOrCreateFile(Loc); local
2199 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
2264 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
2411 llvm::DIFile Unit = getOrCreateFile(VD->getLocation()); local
2627 llvm::DIFile Unit = getOrCreateFile(D->getLocation()); local
2661 llvm::DIFile Unit = getOrCreateFile(ID->getLocation()); local
2687 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
/external/mesa3d/src/mesa/main/
H A Dmtypes.h1126 * Used for Texture.Unit[]._ReallyEnabled flags.
1433 struct gl_texture_unit Unit[MAX_COMBINED_TEXTURE_IMAGE_UNITS]; member in struct:gl_texture_attrib
1456 /** Bitwise-OR of all Texture.Unit[i]._GenFlags */
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-nodeps.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 563 milliseconds