/external/expat/examples/ |
outline.c | 46 int Depth; 53 for (i = 0; i < Depth; i++) 63 Depth++; 69 Depth--;
|
/external/javassist/src/main/javassist/runtime/ |
Cflow.java | 26 private static class Depth { 27 private int depth; field in class:Cflow.Depth 28 Depth() { depth = 0; } 29 int get() { return depth; } 30 void inc() { ++depth; } 31 void dec() { --depth; } 35 return new Depth(); 41 public void enter() { ((Depth)get()).inc(); } 46 public void exit() { ((Depth)get()).dec(); [all...] |
/external/qemu/distrib/sdl-1.2.12/src/video/vgl/ |
SDL_vglvideo.h | 40 int Depth;
|
/external/chromium/chrome/common/ |
libxml_utils.h | 63 // Return the depth in the tree of the current node. 64 int Depth() { return xmlTextReaderDepth(reader_); } 132 // All following elements will be indented to match their depth.
|
/external/llvm/include/llvm/CodeGen/ |
ScoreboardHazardRecognizer.h | 47 size_t Depth; 51 Scoreboard():Data(NULL), Depth(0), Head(0) { } 56 size_t getDepth() const { return Depth; } 58 // Depth is expected to be a power-of-2. 59 assert(Depth && !(Depth & (Depth - 1)) && 62 return Data[(Head + idx) & (Depth-1)]; 67 Depth = d; 68 Data = new unsigned[Depth]; [all...] |
ScheduleDAG.h | 269 bool isDepthCurrent : 1; // True if Depth is current. 271 unsigned Depth; // Node depth. 288 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0), 302 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0), 315 isDepthCurrent(false), isHeightCurrent(false), Depth(0), Height(0), 360 /// getDepth - Return the depth of this node, which is the length of the 365 return Depth; 377 /// depth value, set it to be the new depth value. This als [all...] |
/external/clang/lib/Sema/ |
SemaTemplateVariadic.cpp | 450 /// \brief Retrieve the depth and index of a parameter pack. 477 // Compute the depth and index for this parameter pack. 478 unsigned Depth = 0, Index = 0; 484 Depth = TTP->getDepth(); 492 llvm::tie(Depth, Index) = getDepthAndIndex(ND); 516 // If we don't have a template argument at this depth/index, then we 519 if (Depth >= TemplateArgs.getNumLevels() || 520 !TemplateArgs.hasTemplateArgument(Depth, Index)) { 526 NewPackSize = TemplateArgs(Depth, Index).pack_size(); 538 if (PartialDepth == Depth && PartialIndex == Index [all...] |
SemaTemplateInstantiate.cpp | 630 /// \brief Retrieve the depth and index of a parameter pack. 708 unsigned Depth, Index; 709 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack); 710 if (TemplateArgs.hasTemplateArgument(Depth, Index)) { 711 Result = TemplateArgs(Depth, Index); 712 TemplateArgs.setArgument(Depth, Index, TemplateArgument()); 727 unsigned Depth, Index; 728 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack); 729 TemplateArgs.setArgument(Depth, Index, Arg); [all...] |
SemaTemplateDeduction.cpp | 293 "Cannot deduce non-type template argument with depth > 0"); 321 "Cannot deduce non-type template argument with depth > 0"); 352 "Cannot deduce non-type template argument with depth > 0"); 512 /// \brief Retrieve the depth and index of a template parameter. 525 /// \brief Retrieve the depth and index of an unexpanded parameter pack. 743 unsigned Depth, Index; 744 llvm::tie(Depth, Index) = getDepthAndIndex(Unexpanded[I]); 745 if (Depth == 0 && !SawIndices[Index]) { [all...] |
SemaTemplate.cpp | 518 unsigned Depth, unsigned Position, 540 KeyLoc, Loc, Depth, Position, ParamName, 637 unsigned Depth, 669 Depth, Position, ParamName, T, 719 unsigned Depth, 731 Depth, Position, IsParameterPack, 787 Sema::ActOnTemplateParameterList(unsigned Depth, [all...] |
SemaDeclCXX.cpp | [all...] |
/external/llvm/include/llvm/ |
PassManagers.h | 266 explicit PMDataManager(int Depth) : TPM(NULL), Depth(Depth) { 335 unsigned getDepth() const { return Depth; } 398 unsigned Depth; 411 explicit FPPassManager(int Depth) 412 : ModulePass(ID), PMDataManager(Depth) { }
|
/external/clang/include/clang/Sema/ |
Scope.h | 97 /// Depth - This is the depth of this scope. The translation-unit scope has 98 /// depth 0. 99 unsigned short Depth;
|
/external/clang/lib/Basic/ |
Diagnostic.cpp | 311 unsigned Depth = 0; 314 if (Depth == 0 && *I == Target) return I; 315 if (Depth != 0 && *I == '}') Depth--; 328 Depth++;
|
/external/clang/lib/Lex/ |
PPMacroExpansion.cpp | [all...] |
/external/clang/lib/Parse/ |
ParseTemplate.cpp | 37 /// \brief RAII class that manages the template parameter depth. 40 unsigned &Depth; 44 explicit TemplateParameterDepthCounter(unsigned &Depth) 45 : Depth(Depth), AddedLevels(0) { } 48 Depth -= AddedLevels; 52 ++Depth; 56 operator unsigned() const { return Depth; } 113 TemplateParameterDepthCounter Depth(TemplateParameterDepth); 133 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc [all...] |
/external/opencv/cxcore/include/ |
cvwimage.h | 204 // Return depth type (e.g. IPL_DEPTH_8U, IPL_DEPTH_32F) which is the number 207 int Depth() const; 243 assert(!img || img->depth == Depth()); 247 assert(!image || image->depth == Depth()); 290 assert(!image || image->depth == WImage<T>::Depth()); 505 // Specializations for depth 507 inline int WImage<uchar>::Depth() const {return IPL_DEPTH_8U; [all...] |
/external/llvm/lib/Analysis/ |
RegionInfo.cpp | 375 unsigned Depth = 0; 378 ++Depth; 380 return Depth;
|
/external/llvm/lib/CodeGen/ |
InlineSpiller.cpp | 345 // Prefer to spill at a smaller loop depth. 346 unsigned Depth = Loops.getLoopDepth(MBB); 347 if (Depth < SpillDepth) { 348 DEBUG(dbgs() << " spill depth " << Depth << ": " << PrintReg(Reg) 353 SpillDepth = Depth; [all...] |
/external/llvm/lib/Target/MSP430/ |
MSP430ISelLowering.cpp | [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
replace.h | 247 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth() == 0) 307 if (fst->Final(fst_state) != Weight::Zero() && stack.Depth()) { 417 size_t Depth() const {
|
/external/clang/include/clang/AST/ |
DeclTemplate.h | 96 /// \brief Get the depth of this template parameter list in the set of 99 /// The first template parameter list in a declaration will have depth 0, 100 /// the second template parameter list will have depth 1, etc. [all...] |
Type.h | [all...] |
/external/clang/lib/CodeGen/ |
CGBuiltin.cpp | 642 Value *Depth = EmitScalarExpr(E->getArg(0)); 643 Depth = Builder.CreateIntCast(Depth, Int32Ty, false, "tmp"); 645 return RValue::get(Builder.CreateCall(F, Depth)); 648 Value *Depth = EmitScalarExpr(E->getArg(0)); 649 Depth = Builder.CreateIntCast(Depth, Int32Ty, false, "tmp"); 651 return RValue::get(Builder.CreateCall(F, Depth)); [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | [all...] |