HomeSort by relevance Sort by last modified time
    Searched refs:Inflate (Results 1 - 25 of 26) sorted by null

1 2

  /frameworks/base/tools/aapt2/xml/
XmlDom_test.cpp 29 TEST(XmlDomTest, Inflate) {
43 std::unique_ptr<xml::XmlResource> doc = xml::Inflate(&in, &diag, source);
XmlDom.h 156 std::unique_ptr<XmlResource> Inflate(std::istream* in, IDiagnostics* diag, const Source& source);
162 std::unique_ptr<XmlResource> Inflate(const void* data, size_t data_len, IDiagnostics* diag,
XmlDom.cpp 192 std::unique_ptr<XmlResource> Inflate(std::istream* in, IDiagnostics* diag, const Source& source) {
261 std::unique_ptr<XmlResource> Inflate(const void* data, size_t data_len, IDiagnostics* diag,
  /external/protobuf/src/google/protobuf/io/
gzip_stream.h 103 int Inflate(int flush);
gzip_stream.cc 88 int GzipInputStream::Inflate(int flush) {
90 // previous inflate filled output buffer. don't change input params yet.
113 int error = inflate(&zcontext_, flush);
152 zerror_ = Inflate(Z_NO_FLUSH);
154 // The underlying stream's Next returned false inside Inflate.
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
gzip_stream.h 103 int Inflate(int flush);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
gzip_stream.h 103 int Inflate(int flush);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 103 int Inflate(int flush);
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
gzip_stream.h 103 int Inflate(int flush);
  /external/pdfium/core/fxcrt/
fx_coordinates.h 277 void Inflate(BaseType x, BaseType y) {
283 void Inflate(const PointType& p) { Inflate(p.x, p.y); }
284 void Inflate(BaseType off_left,
293 void Inflate(const RectType& rt) {
294 Inflate(rt.left, rt.top, rt.left + rt.width, rt.top + rt.height);
499 void Inflate(FX_FLOAT x, FX_FLOAT y) {
507 void Inflate(FX_FLOAT other_left,
518 void Inflate(const CFX_FloatRect& rt) {
519 Inflate(rt.left, rt.bottom, rt.right, rt.top)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 224 VOID Inflate(INT dx, INT dy) {
230 VOID Inflate(const Point& point) {
231 Inflate(point.X, point.Y);
349 VOID Inflate(REAL dx, REAL dy) {
355 VOID Inflate(const PointF& point) {
356 Inflate(point.X, point.Y);
  /external/pdfium/fpdfsdk/
cpdfsdk_baannothandler.cpp 34 rect.Inflate(1, 1);
  /external/pdfium/xfa/fwl/theme/
cfwl_pushbuttontp.cpp 82 rtInner.Inflate(1, 1, 0, 0);
  /external/pdfium/xfa/fxfa/app/
xfa_ffpath.cpp 45 rect.Inflate(fHalfWidth, fHalfWidth);
xfa_ffwidget.cpp 160 rtWidget.Inflate(2, 2);
171 rtWidget.Inflate(2, 2);
    [all...]
  /external/pdfium/xfa/fwl/
cfwl_checkbox.cpp 136 m_rtCaption.Inflate(-kCaptionMargin, -kCaptionMargin);
147 m_rtFocus.Inflate(1, 1);
cfwl_datetimepicker.cpp 379 rtInvalidate.Inflate(2, 2);
603 rtInvalidate.Inflate(2, 2);
cfwl_widget.cpp 81 rect.Inflate(fBorder, fBorder);
cfwl_combobox.cpp 571 rect.Inflate(2, 2);
  /art/runtime/
monitor.cc 95 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
117 // We should only inflate a lock if the owner is ourselves or suspended. This avoids a race
820 void Monitor::Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code) {
831 VLOG(monitor) << "monitor: Inflate with hashcode " << hash_code
846 // We own the monitor, we can easily inflate it.
847 Inflate(self, self, obj.Get(), hash_code);
850 // Suspend the owner, inflate. First change to blocked and give up mutator_lock_.
    [all...]
monitor.h 52 // The default number of spins that are done before thread suspension is used to forcibly inflate
132 // Inflate the lock on obj. May fail to inflate for spurious reasons, always re-check.
180 static void Inflate(Thread* self, Thread* owner, mirror::Object* obj, int32_t hash_code)
  /frameworks/base/tools/aapt2/cmd/
Optimize.cpp 273 std::unique_ptr<xml::XmlResource> manifest = xml::Inflate(
Compile.cpp 402 xmlres = xml::Inflate(&fin, context->GetDiagnostics(), path_data.source);
Link.cpp 296 return xml::Inflate(&fin, diag, Source(path));
547 file_op.xml_to_flatten = xml::Inflate(data->data(), data->size(),
    [all...]
  /frameworks/base/tools/aapt2/test/
Builders.h 258 xml::Inflate(&in, &diag, Source("test.xml"));

Completed in 335 milliseconds

1 2