/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/ |
jsunittest.js | 15 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.Logger.prototype._createLogTable = function() [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/ |
jsunittest.js | 15 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.Logger.prototype._createLogTable = function() [all...] |
/external/clang/lib/Frontend/ |
ASTMerge.cpp | 48 ASTUnit *Unit = ASTUnit::LoadFromASTFile(ASTFiles[I], Diags, 50 if (!Unit) 55 Unit->getASTContext(), 56 Unit->getFileManager(), 59 TranslationUnitDecl *TU = Unit->getASTContext().getTranslationUnitDecl(); 72 delete Unit;
|
ASTUnit.cpp | 853 /// of all macros that have been defined by the translation unit. 898 ASTUnit &Unit; 903 : Unit(_Unit), Hash(Hash) { [all...] |
/external/clang/test/CodeGenCXX/ |
array-value-initialize.cpp | 32 struct Unit 34 Unit() {} 35 Unit(const Unit& v) {} 41 Unit leafPos[1];
|
/external/llvm/lib/CodeGen/ |
TargetRegisterInfo.cpp | 58 OS << "Unit~" << Unit; 63 if (Unit >= TRI->getNumRegUnits()) { 64 OS << "BadUnit~" << Unit; 69 MCRegUnitRootIterator Roots(Unit, TRI); 70 assert(Roots.isValid() && "Unit has no roots.");
|
LiveDebugVariables.cpp | 668 unsigned Unit = *MCRegUnitIterator(Loc.getReg(), &TRI); 669 LiveInterval *LI = &LIS.getRegUnit(Unit); [all...] |
LiveIntervalAnalysis.cpp | 222 // Register Unit Liveness 232 /// computeRegUnitInterval - Compute the live interval of a register unit, based 236 unsigned Unit = LI->reg; 241 // The physregs aliasing Unit are the roots and their super-registers. 244 // idempotent. It is very rare for a register unit to have multiple roots, so 246 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) { 256 for (MCRegUnitRootIterator Roots(Unit, TRI); Roots.isValid(); ++Roots) { 293 unsigned Unit = *Units; 294 LiveInterval *Intv = RegUnitIntervals[Unit]; 296 Intv = RegUnitIntervals[Unit] = new LiveInterval(Unit, HUGE_VALF) [all...] |
/external/chromium_org/chrome/browser/ui/webui/performance_monitor/ |
performance_monitor_ui_constants.h | 27 enum Unit { 60 // two units of distance (meters to centimeters), but cannot convert a unit of 61 // time to a unit of memory (seconds to megabytes). 69 // A struct which holds the conversion information for each unit. The 70 // |amount_in_base_units| corresponds to the value of 1 |unit| in the specified 71 // base for the measurement type (for instance, since the base unit for memory 74 const Unit unit; member in struct:performance_monitor::UnitDetails 79 // Returns the corresponding UnitDetails for the given unit, or NULL if invalid. 80 const UnitDetails* GetUnitDetails(Unit unit) [all...] |
/external/chromium_org/tools/deep_memory_profiler/lib/ |
sorter.py | 34 class Unit(object): 35 """Represents a minimum unit of memory usage categorization. 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.""" 154 def append(self, unit, overwrite=False): 155 if not overwrite and unit.unit_id in self._units [all...] |
/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...] |
CIndex.cpp | 82 /// the translation unit. 230 ASTUnit *Unit = cxtu::getASTUnit(TU); 231 SourceManager &SM = Unit->getSourceManager(); 279 ASTUnit *Unit = cxtu::getASTUnit(TU); 280 SourceManager &SM = Unit->getSourceManager(); 284 Unit->findFileRegionDecls(File, Offset, Length, Decls); 304 Unit->findFileRegionDecls(File, Offset, Length, Decls); 350 // is a context that contains the range or we reach the translation unit [all...] |
/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/llvm/include/llvm/Target/ |
TargetRegisterInfo.h | 399 // Regunits are numerically ordered. Find a common unit. 614 /// Get the weight in units of pressure for this register unit. 620 /// Get the name of this register unit pressure set. 623 /// Get the register unit pressure limit for this dimension. 632 /// Get the dimensions of register pressure impacted by this register unit. [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
decNumberLocal.h | 75 #define Unit decNumberUnit 256 /* decNumber struct) safely. Note that one Unit is included in the */ 260 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber)) [all...] |
/external/icu4c/i18n/ |
decNumberLocal.h | 75 #define Unit decNumberUnit 244 /* decNumber struct) safely. Note that one Unit is included in the */ 248 ((((SD2U(d)-1)*sizeof(Unit))+sizeof(decNumber)*2-1)/sizeof(decNumber)) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.osgi.util_3.2.100.v20100503.jar | |
org.eclipse.test.performance_3.6.0.v20091014.jar | |
/external/llvm/utils/TableGen/ |
CodeGenRegisters.cpp | 175 /// Preincrement. Move to the next unit. 204 // Return true of this unit appears in RegUnits. 205 static bool hasRegUnit(CodeGenRegister::RegUnitList &RegUnits, unsigned Unit) { 206 return std::count(RegUnits.begin(), RegUnits.end(), Unit); 374 // Absent any ad hoc aliasing, we create one register unit per leaf register. 378 // When there is ad hoc aliasing, we simply create one unit per edge in the 390 unsigned Unit = RegBank.newRegUnit(this, AR); 391 RegUnits.push_back(Unit); 392 AR->RegUnits.push_back(Unit); 396 // a leaf register with ad hoc aliases doesn't get its own unit - it isn' [all...] |
/external/clang/lib/CodeGen/ |
CGDebugInfo.cpp | 299 /// getOrCreateMainFile - Get the file info for main compile unit. 341 /// CreateCompileUnit - Create new compile unit. 394 // Create new compile unit. 546 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit, 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) { [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
mtypes.h | [all...] |
/external/mesa3d/src/mesa/main/ |
mtypes.h | [all...] |
/prebuilts/devtools/tools/lib/ |
osgi-4.0.0.jar | |
/prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/ |
osgi-4.0.0.jar | |