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

1 2

  /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.
478 // Compute the depth and index for this parameter pack.
479 unsigned Depth = 0, Index = 0;
485 Depth = TTP->getDepth();
493 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
517 // If we don't have a template argument at this depth/index, then we
520 if (Depth >= TemplateArgs.getNumLevels() ||
521 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
527 NewPackSize = TemplateArgs(Depth, Index).pack_size();
539 if (PartialDepth == Depth && PartialIndex == Index
    [all...]
SemaTemplateInstantiate.cpp 630 /// \brief Retrieve the depth and index of a parameter pack.
706 unsigned Depth, Index;
707 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
708 if (TemplateArgs.hasTemplateArgument(Depth, Index)) {
709 Result = TemplateArgs(Depth, Index);
710 TemplateArgs.setArgument(Depth, Index, TemplateArgument());
725 unsigned Depth, Index;
726 llvm::tie(Depth, Index) = getDepthAndIndex(PartialPack);
727 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 520 unsigned Depth, unsigned Position,
542 KeyLoc, Loc, Depth, Position, ParamName,
639 unsigned Depth,
671 Depth, Position, ParamName, T,
721 unsigned Depth,
733 Depth, Position, IsParameterPack,
789 Sema::ActOnTemplateParameterList(unsigned Depth,
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/llvm/include/llvm/
PassManagers.h 266 explicit PMDataManager() : TPM(NULL), Depth(0) {
335 unsigned getDepth() const { return Depth; }
336 void setDepth(unsigned newDepth) { Depth = newDepth; }
399 unsigned 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 400 unsigned Depth = 0;
403 if (Depth == 0 && *I == Target) return I;
404 if (Depth != 0 && *I == '}') Depth--;
417 Depth++;
  /external/clang/lib/Lex/
PPMacroExpansion.cpp     [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/clang/lib/Parse/
ParseTemplate.cpp 41 /// \brief RAII class that manages the template parameter depth.
44 unsigned &Depth;
48 explicit TemplateParameterDepthCounter(unsigned &Depth)
49 : Depth(Depth), AddedLevels(0) { }
52 Depth -= AddedLevels;
56 ++Depth;
60 operator unsigned() const { return Depth; }
118 TemplateParameterDepthCounter Depth(TemplateParameterDepth);
138 if (ParseTemplateParameters(Depth, TemplateParams, LAngleLoc
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 375 unsigned Depth = 0;
378 ++Depth;
380 return Depth;
  /external/llvm/lib/CodeGen/
SplitKit.cpp 672 << MBB->getNumber() << " at depth 0\n");
684 unsigned Depth = Loop->getLoopDepth();
685 if (Depth < BestDepth) {
687 BestDepth = Depth;
689 << MBB->getNumber() << " at depth " << Depth << '\n');
    [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 637 Value *Depth = EmitScalarExpr(E->getArg(0));
638 Depth = Builder.CreateIntCast(Depth, Int32Ty, false);
640 return RValue::get(Builder.CreateCall(F, Depth));
643 Value *Depth = EmitScalarExpr(E->getArg(0));
644 Depth = Builder.CreateIntCast(Depth, Int32Ty, false);
646 return RValue::get(Builder.CreateCall(F, Depth));
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 1187 milliseconds

1 2