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

1 2 3

  /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();
70 delete Unit;
ASTUnit.cpp 777 /// of all macros that have been defined by the translation unit.
833 ASTUnit &Unit;
838 : Unit(_Unit), Hash(Hash) {
854 Unit.addTopLevelDecl(D);
860 Unit.addFileLevelDecl(D);
882 return Unit.getASTMutationListener();
886 return Unit.getDeserializationListener();
892 ASTUnit &Unit;
897 new MacroDefinitionTrackerPPCallbacks(Unit.getCurrentTopLevelHashValue()));
898 return new TopLevelDeclTrackerConsumer(Unit,
    [all...]
  /external/clang/test/CodeGenCXX/
array-value-initialize.cpp 32 struct Unit
34 Unit() {}
35 Unit(const Unit& v) {}
41 Unit leafPos[1];
  /external/chromium_org/ui/base/l10n/
formatter.h 29 enum Unit {
34 UNIT_COUNT // Enum size counter, not a unit. Must be last.
40 TWO_UNITS_COUNT // Enum size counter, not a unit pair. Must be last.
59 void Format(Unit unit, int value, icu::UnicodeString& formatted_string) const;
109 // For use in unit tests only.
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 93 /// The compile unit that this location entry is referenced by.
94 const DwarfCompileUnit *Unit;
97 DebugLocEntry() : Begin(nullptr), End(nullptr), Unit(nullptr) {}
100 : Begin(B), End(E), Unit(U) {
117 const DwarfCompileUnit *getCU() const { return Unit; }
DIE.h 163 /// Climb up the parent chain to get the compile or type unit DIE this DIE
445 /// \brief A signature reference to a type unit.
447 const DwarfTypeUnit &Unit;
450 explicit DIETypeSignature(const DwarfTypeUnit &Unit)
451 : DIEValue(isTypeSignature), Unit(Unit) {}
453 /// \brief Emit type unit signature.
DwarfDebug.cpp 422 // was inlined from another compile unit.
515 // was inlined from another compile unit.
793 // FIXME: Consider the time-space tradeoff of just storing the unit pointer
796 DwarfCompileUnit *Unit = lookupUnit(VariableDie->getUnit());
797 assert(Unit);
800 Unit->addDIEEntry(*VariableDie, dwarf::DW_AT_abstract_origin,
803 Unit->applyVariableAttributes(*Var, *VariableDie);
851 assert(SPCU && "Unable to find Compile Unit!");
    [all...]
  /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.");
77 if (TRI && TRI->isVirtualRegister(Unit)) {
78 OS << "%vreg" << TargetRegisterInfo::virtReg2Index(Unit);
LiveDebugVariables.cpp 673 unsigned Unit = *MCRegUnitIterator(Loc.getReg(), &TRI);
674 LiveRange *LR = &LIS.getRegUnit(Unit);
    [all...]
LiveIntervalAnalysis.cpp 224 // Register Unit Liveness
234 /// computeRegUnitInterval - Compute the live range of a register unit, based
237 void LiveIntervals::computeRegUnitRange(LiveRange &LR, unsigned Unit) {
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 LiveRange *LR = RegUnitRanges[Unit];
296 LR = RegUnitRanges[Unit] = new LiveRange()
    [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/chromium_org/tools/usb_gadget/
hid_descriptors.py 137 Unit = _DefineItem('Unit', 6, hid_constants.Scope.GLOBAL)
  /external/clang/lib/CodeGen/
CGDebugInfo.h 73 llvm::DIFile Unit;
75 llvm::DIFile Unit)
76 : Type(Type), Decl(Decl), Unit(Unit) {}
134 llvm::DIType CreateType(const RValueReferenceType *Ty, llvm::DIFile Unit);
144 QualType ThisPtr, const FunctionProtoType *Func, llvm::DIFile Unit);
174 llvm::DIFile Unit);
176 CollectFunctionTemplateParams(const FunctionDecl *FD, llvm::DIFile Unit);
330 /// CreateCompileUnit - Create new compile unit.
337 /// getOrCreateMainFile - Get the file info for main compile unit
    [all...]
CGDebugInfo.cpp 274 /// getOrCreateMainFile - Get the file info for main compile unit.
314 /// CreateCompileUnit - Create new compile unit.
373 // Create new compile unit.
525 llvm::DIType CGDebugInfo::CreateQualifiedType(QualType Ty, llvm::DIFile Unit) {
548 return getOrCreateType(QualType(T, 0), Unit);
551 llvm::DIType FromTy = getOrCreateType(Qc.apply(CGM.getContext(), T), Unit);
561 llvm::DIFile Unit) {
567 return getOrCreateType(CGM.getContext().getObjCIdType(), Unit);
571 Ty->getPointeeType(), Unit);
576 llvm::DIFile Unit) {
    [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 594 ASTUnit *Unit = ASTUnit::create(CInvok.get(), Diags,
597 if (!Unit) {
603 new CXTUOwner(MakeCXTranslationUnit(CXXIdx, Unit)));
650 Unit,
660 printDiagsToStderr(Unit);
662 if (isASTReadError(Unit)) {
694 static void indexPreprocessingRecord(ASTUnit &Unit, IndexingContext &IdxCtx) {
695 Preprocessor &PP = Unit.getPreprocessor();
702 std::tie(I, E) = Unit.getLocalPreprocessingEntities();
704 bool isModuleFile = Unit.isModuleFile()
    [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 newSize, 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/chromium_org/device/bluetooth/
bluetooth_low_energy_defs_win.h 163 BTH_LE_UUID Unit;
  /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
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/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 107 Unit = 3,
407 tType = Unit;
    [all...]
  /external/icu/icu4c/source/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 
  /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...]

Completed in 835 milliseconds

1 2 3