/external/webrtc/webrtc/libjingle/xmpp/ |
D | xmppstanzaparser.cc | 28 depth_(0), in XmppStanzaParser() 35 depth_ = 0; in Reset() 42 if (depth_++ == 0) { in IncomingStartElement() 59 if (depth_ > 1) { in IncomingCharacterData() 67 if (--depth_ == 0) { in IncomingEndElement() 74 if (depth_ == 1) { in IncomingEndElement()
|
D | xmppstanzaparser.h | 72 int depth_; variable
|
/external/v8/src/compiler/ |
D | loop-analysis.h | 45 size_t depth() const { return static_cast<size_t>(depth_); } in depth() 53 depth_(0), in Loop() 60 int depth_; variable 144 child->depth_ = parent->depth_ + 1; in SetParent()
|
D | loop-analysis.cc | 396 loop->loop->depth_ > innermost->loop->depth_) { in FinishLoopTree() 478 if (parent == nullptr || upper->depth_ > parent->depth_) { in ConnectLoopTree() 489 for (int i = 0; i < loop->depth_; i++) PrintF(" "); in PrintLoop() 490 PrintF("Loop depth = %d ", loop->depth_); in PrintLoop()
|
D | js-operator.h | 257 size_t depth() const { return depth_; } in depth() 265 const uint16_t depth_; variable
|
D | ast-graph-builder.cc | 120 depth_(builder_->environment()->context_chain_length()) { in ContextScope() 128 CHECK_EQ(depth_, builder_->environment()->context_chain_length()); in ~ContextScope() 138 int depth_; member in v8::internal::compiler::BASE_EMBEDDED
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | protostream_objectwriter.cc | 184 depth_(0), in AnyWriter() 191 ++depth_; in StartObject() 204 } else if (is_well_known_type_ && depth_ == 1) { in StartObject() 222 --depth_; in EndObject() 226 if (ow_ != NULL && (depth_ >= 0 || !is_well_known_type_)) { in EndObject() 231 if (depth_ < 0) { in EndObject() 239 ++depth_; in StartList() 248 } else if (is_well_known_type_ && depth_ == 1) { in StartList() 261 --depth_; in EndList() 262 if (depth_ < 0) { in EndList() [all …]
|
D | protostream_objectwriter.h | 168 int depth_; variable
|
/external/gemmlowp/internal/ |
D | pack.h | 145 : data_(data), width_(width), depth_(depth), stride_(stride) {} in SideMap() 148 : data_(data), width_(width), depth_(depth) { in SideMap() 149 stride_ = kOrder == SideMapOrder::WidthMajor ? depth_ : width_; in SideMap() 155 depth_(other.depth_), in SideMap() 159 int depth() const { return depth_; } in depth() 179 assert(start_depth + block_depth <= depth_); in block() 187 int width_, depth_, stride_; variable
|
/external/v8/src/ast/ |
D | ast-traversal-visitor.h | 52 int depth() const { return depth_; } in AST_NODE_LIST() 58 int depth_; variable 85 ++depth_; \ 87 --depth_; \ 94 : root_(root), depth_(0) { in AstTraversalVisitor() 101 : root_(root), depth_(0) { in AstTraversalVisitor()
|
D | ast.cc | 541 if (depth_ > 0) return; in InitDepthAndFlags() 695 if (depth_ > 0) return; in InitDepthAndFlags()
|
D | ast.h | 1241 DCHECK(depth_ >= 1); in depth() 1242 return depth_; in depth() 1253 int depth_ : 31; 1261 : Expression(pos, type), depth_(0) { in MaterializedLiteral() 1275 depth_ = depth; in set_depth()
|
/external/libchrome/base/json/ |
D | json_parser.cc | 173 explicit StackMarker(int* depth) : depth_(depth) { in StackMarker() 174 ++(*depth_); in StackMarker() 175 DCHECK_LE(*depth_, kStackMaxDepth); in StackMarker() 178 --(*depth_); in ~StackMarker() 182 return *depth_ >= kStackMaxDepth; in IsTooDeep() 186 int* const depth_; member in base::internal::__anon3b7557e10111::StackMarker
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Image.h | 67 Image(const Blob &blob_,const Geometry &size_,const size_t depth_); 71 Image(const Blob &blob_,const Geometry &size_,const size_t depth_, 160 void channelDepth(const ChannelType channel_,const size_t depth_); 215 void depth(const size_t depth_); 1200 void read(const Blob &blob_,const Geometry &size_,const size_t depth_); 1204 void read(const Blob &blob_,const Geometry &size_,const size_t depth_, 1466 void write(Blob *blob_,const std::string &magick_,const size_t depth_);
|
D | Options.h | 88 void depth(const size_t depth_);
|
D | STL.h | 873 void depth(size_t depth_); 1437 depthImage( const size_t depth_ );
|
/external/ImageMagick/Magick++/lib/ |
D | Image.cpp | 119 const size_t depth_) in Image() argument 126 read(blob_,size_,depth_); in Image() 138 const size_t depth_,const std::string &magick_) in Image() argument 145 read(blob_,size_,depth_,magick_); in Image() 472 const size_t depth_) in channelDepth() argument 477 SetImageDepth(image(),depth_,exceptionInfo); in channelDepth() 696 void Magick::Image::depth(const size_t depth_) in depth() argument 699 depth = depth_; in depth() 1164 void Magick::Image::modulusDepth(const size_t depth_) in modulusDepth() argument 1168 SetImageDepth(image(),depth_,exceptionInfo); in modulusDepth() [all …]
|
D | STL.cpp | 820 void Magick::ReadOptions::depth(size_t depth_) in depth() argument 822 _imageInfo->depth=depth_; in depth() 1314 Magick::depthImage::depthImage( const size_t depth_ ) in depthImage() argument 1315 : _depth( depth_ ) in depthImage()
|
D | Options.cpp | 194 void Magick::Options::depth(const size_t depth_) in depth() argument 196 _imageInfo->depth=depth_; in depth()
|
/external/flatbuffers/include/flatbuffers/ |
D | flatbuffers.h | 1368 : buf_(buf), end_(buf + buf_len), depth_(0), max_depth_(_max_depth), 1501 depth_++; 1503 return Check(depth_ <= max_depth_ && num_tables_ <= max_tables_); 1508 depth_--; 1525 size_t depth_;
|
/external/deqp/modules/gles3/functional/ |
D | es3fStencilTests.cpp | 137 …est_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFa… in StencilOp() argument 143 , depth (depth_) in StencilOp()
|
/external/deqp/modules/gles2/functional/ |
D | es2fStencilTests.cpp | 134 …est_ = GL_ALWAYS, int stencil_ = 0, GLenum depthTest_ = GL_ALWAYS, float depth_ = 1.0f, GLenum sFa… in StencilOp() argument 140 , depth (depth_) in StencilOp()
|
/external/v8/src/interpreter/ |
D | bytecode-generator.cc | 36 depth_(0), in ContextScope() 40 depth_ = outer_->depth_ + 1; in ContextScope() 44 outer_->depth_); in ContextScope() 68 if (depth > depth_) { in Previous() 91 int depth_; member in v8::internal::interpreter::BASE_EMBEDDED
|
/external/protobuf/php/ext/google/protobuf/ |
D | upb.c | 11221 int depth_; member 11258 if (!p->first_elem_[p->depth_]) { in print_comma() 11261 p->first_elem_[p->depth_] = false; in print_comma() 11508 p->depth_++; in start_frame() 11509 p->first_elem_[p->depth_] = true; in start_frame() 11515 p->depth_--; in end_frame() 11521 if (p->depth_ == 0) { in printer_startmsg() 11533 if (p->depth_ == 0) { in printer_endmsg() 11542 p->depth_++; in startseq() 11543 p->first_elem_[p->depth_] = true; in startseq() [all …]
|
/external/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 12019 int depth_; member 12075 if (!p->first_elem_[p->depth_]) { in print_comma() 12078 p->first_elem_[p->depth_] = false; in print_comma() 12325 p->depth_++; in start_frame() 12326 p->first_elem_[p->depth_] = true; in start_frame() 12332 p->depth_--; in end_frame() 12338 if (p->depth_ == 0) { in printer_startmsg() 12350 if (p->depth_ == 0) { in printer_endmsg() 12359 p->depth_++; in startseq() 12360 p->first_elem_[p->depth_] = true; in startseq() [all …]
|