/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
D | xmppstanzaparser.cc | 45 depth_(0), in XmppStanzaParser() 52 depth_ = 0; in Reset() 59 if (depth_++ == 0) { in IncomingStartElement() 76 if (depth_ > 1) { in IncomingCharacterData() 84 if (--depth_ == 0) { in IncomingEndElement() 91 if (depth_ == 1) { in IncomingEndElement()
|
D | xmppstanzaparser.h | 89 int depth_; variable
|
/external/chromium_org/ui/gfx/geometry/ |
D | box_f.h | 23 depth_(0.f) {} in BoxF() 28 depth_(depth < 0 ? 0 : depth) {} in BoxF() 34 depth_(depth < 0 ? 0 : depth) {} in BoxF() 40 depth_(depth < 0 ? 0 : depth) {} in BoxF() 52 set_size(width_ * x_scale, height_ * y_scale, depth_ * z_scale); in Scale() 84 float depth() const { return depth_; } in depth() 85 void set_depth(float depth) { depth_ = depth < 0 ? 0 : depth; } in set_depth() 94 depth_ = depth < 0 ? 0 : depth; in set_size() 122 float depth_; variable
|
D | box_f.cc | 19 depth_); in ToString() 24 (width_ == 0 && depth_ == 0) || in IsEmpty() 25 (height_ == 0 && depth_ == 0); in IsEmpty() 43 depth_ = max_z - min_z; in ExpandTo()
|
/external/chromium_org/third_party/brotli/src/brotli/enc/ |
D | entropy_encode.h | 64 uint8_t depth_[kSize]; member 78 memset(code->depth_, 0, sizeof(code->depth_)); in BuildEntropyCode() 93 CreateHuffmanTree(counts, alphabet_size, tree_limit, &code->depth_[0]); in BuildEntropyCode() 96 &code->depth_[0]); in BuildEntropyCode() 98 ConvertBitDepthsToSymbols(&code->depth_[0], alphabet_size, &code->bits_[0]); in BuildEntropyCode()
|
D | encode.cc | 220 WriteBits(entropy.depth_[ix], entropy.bits_[ix], storage_ix, storage); in StoreHuffmanTreeToBitMask() 237 const uint8_t *depth = &code.depth_[0]; in StoreHuffmanCodeSimple() 275 const uint8_t *depth = &code.depth_[0]; in StoreHuffmanCodeComplex() 293 &huffman_tree_entropy.depth_[0], storage_ix, storage); in StoreHuffmanCodeComplex() 305 memset(code->depth_, 0, sizeof(code->depth_)); in BuildAndStoreEntropyCode() 335 CreateHuffmanTree(&counts[0], alphabet_size, tree_limit, code->depth_); in BuildAndStoreEntropyCode() 337 CreateHuffmanTree(histogram.data_, alphabet_size, tree_limit, code->depth_); in BuildAndStoreEntropyCode() 339 ConvertBitDepthsToSymbols(code->depth_, alphabet_size, code->bits_); in BuildAndStoreEntropyCode() 366 WriteBits(entropy.depth_[code], entropy.bits_[code], storage_ix, storage); in EncodeCommand() 388 WriteBits(entropy.depth_[code], entropy.bits_[code], storage_ix, storage); in EncodeCopyDistance() [all …]
|
D | bit_cost.h | 42 return HuffmanTreeBitCost(&histogram.data_[0], &entropy.depth_[0]); in HuffmanTreeBitCost()
|
/external/chromium_org/remoting/webapp/ |
D | xmpp_stream_parser.js | 33 this.depth_ = 0; 99 if (this.depth_ <= 1) { 154 base.debug.assert(this.depth_ > 1); 170 ++this.depth_; 171 if (this.depth_ == 1) { 193 if (this.depth_ <= 1) { 197 --this.depth_; 198 if (this.depth_ == 1) {
|
/external/chromium_org/pdf/ |
D | draw_utils.h | 69 uint32 GetValue(int32 x, int32 y) const { return matrix_[y * depth_ + x]; } in GetValue() 71 uint32 depth() const { return depth_; } in depth() 76 uint32 depth_;
|
D | draw_utils.cc | 225 : depth_(depth), factor_(factor), background_(background) { in ShadowMatrix() 226 DCHECK(depth_ > 0); in ShadowMatrix() 227 matrix_.resize(depth_ * depth_); in ShadowMatrix() 233 std::vector<double> pow_pv(depth_, 0.0); in ShadowMatrix() 235 double r = static_cast<double>(depth_); in ShadowMatrix() 238 for (uint32 y = 0; y < depth_; y++) { in ShadowMatrix() 272 matrix_[y * depth_ + x] = pixel; in ShadowMatrix() 273 matrix_[x * depth_ + y] = pixel; in ShadowMatrix()
|
/external/chromium_org/remoting/test/ |
D | leaky_bucket.cc | 12 : depth_(depth), in LeakyBucket() 25 if (new_level > depth_) in AddPacket()
|
D | leaky_bucket.h | 27 double depth_; variable
|
/external/chromium_org/ui/webui/resources/js/cr/ui/ |
D | tree.js | 294 depth_: 0, property in TreeItem 296 return this.depth_; 305 if (depth != this.depth_) { 308 this.depth_ = depth;
|
/external/chromium_org/base/json/ |
D | json_parser.cc | 167 explicit StackMarker(int* depth) : depth_(depth) { in StackMarker() 168 ++(*depth_); in StackMarker() 169 DCHECK_LE(*depth_, kStackMaxDepth); in StackMarker() 172 --(*depth_); in ~StackMarker() 176 return *depth_ >= kStackMaxDepth; in IsTooDeep() 180 int* const depth_; member in base::internal::__anonb787c72f0111::StackMarker
|
/external/chromium_org/mojo/public/cpp/utility/tests/ |
D | run_loop_unittest.cc | 307 depth_(0), in NestingRunLoopHandler() 322 size_t current_depth = ++depth_; in OnHandleReady() 339 --depth_; in OnHandleReady() 365 size_t depth_; member in mojo::__anonac93ab6c0111::NestingRunLoopHandler
|
/external/chromium_org/v8/src/compiler/ |
D | js-operator.h | 24 : immutable_(immutable), depth_(depth), index_(index) { in ContextAccess() 28 int depth() const { return depth_; } in depth() 36 const uint16_t depth_; variable
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
D | angletypes.h | 77 Extents(int width_, int height_, int depth_) : width(width_), height(height_), depth(depth_) { } in Extents()
|
/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()
|
D | es3fShaderTextureFunctionTests.cpp | 201 int depth_, in TextureSpec() 208 , depth (depth_) in TextureSpec()
|
/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/chromium_org/v8/src/ |
D | ast.h | 1409 DCHECK(depth_ >= 1); in depth() 1410 return depth_; in depth() 1418 depth_(0) {} in MaterializedLiteral() 1428 depth_ = depth; in set_depth() 1446 int depth_; variable
|
D | objects-inl.h | 3654 frames_[depth_++ & kDepthMask] = string; in PushLeft() 3660 frames_[(depth_-1) & kDepthMask] = string; in PushRight() 3665 if (depth_ > maximum_depth_) maximum_depth_ = depth_; in AdjustMaximumDepth() 3670 DCHECK(depth_ > 0); in Pop() 3671 DCHECK(depth_ <= maximum_depth_); in Pop() 3672 depth_--; in Pop()
|
D | hydrogen-instructions.h | 7404 : literal_index_(index), depth_(depth), allocation_site_mode_(mode) { in literal_index_() 7409 : literal_index_(index), depth_(depth), in literal_index_() 7415 int depth() const { return depth_; } in depth() 7424 int depth_; variable
|
D | objects.h | 9292 depth_ = 0; 9300 if (depth_ == 0) return NULL; in Next() 9315 inline bool StackBlown() { return maximum_depth_ - depth_ == kStackSize; } in StackBlown() 9325 int depth_; variable
|
D | objects.cc | 8189 depth_ = 1; in Initialize() 8190 maximum_depth_ = kStackSize + depth_; in Initialize() 8196 DCHECK(depth_ != 0); in Continue() 8216 depth_ = 1; in Search() 8277 if (depth_ == 0) { in NextLeaf() 8287 ConsString* cons_string = frames_[OffsetForDepth(depth_ - 1)]; in NextLeaf()
|