Searched defs:flatten (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/test-runner/src/android/test/
H A DTestCaseUtil.java45 public static List<String> getTestCaseNames(Test test, boolean flatten) { argument
46 List<Test> tests = (List<Test>) getTests(test, flatten);
54 public static List<? extends Test> getTests(Test test, boolean flatten) { argument
55 return getTests(test, flatten, new HashSet<Class<?>>());
58 private static List<? extends Test> getTests(Test test, boolean flatten, argument
83 if (flatten) {
84 testCases.addAll(getTests(childTest, flatten, seen));
/frameworks/base/tools/aapt2/flatten/
H A DXmlFlattener_test.cpp17 #include "flatten/XmlFlattener.h"
47 ::testing::AssertionResult flatten(xml::XmlResource* doc, android::ResXMLTree* outTree, function in class:aapt::XmlFlattenerTest
54 return ::testing::AssertionFailure() << "failed to flatten XML Tree";
78 ASSERT_TRUE(flatten(doc.get(), &tree));
161 ASSERT_TRUE(flatten(doc.get(), &tree, options));
180 ASSERT_TRUE(flatten(doc.get(), &tree));
199 ASSERT_TRUE(flatten(doc.get(), &tree));
H A DTableFlattener_test.cpp17 #include "flatten/TableFlattener.h"
39 ::testing::AssertionResult flatten(ResourceTable* table, ResTable* outTable) { function in class:aapt::TableFlattenerTest
43 return ::testing::AssertionFailure() << "failed to flatten ResourceTable";
53 ::testing::AssertionResult flatten(ResourceTable* table, ResourceTable* outTable) { function in class:aapt::TableFlattenerTest
57 return ::testing::AssertionFailure() << "failed to flatten ResourceTable";
161 ASSERT_TRUE(flatten(table.get(), &resTable));
201 ASSERT_TRUE(flatten(table.get(), &resTable));
221 ASSERT_TRUE(flatten(table.get(), &result));
H A DXmlFlattener.cpp18 #include "flatten/ChunkWriter.h"
19 #include "flatten/ResourceTypeExtensions.h"
20 #include "flatten/XmlFlattener.h"
228 // Add it to the list of strings to flatten.
239 bool result = xmlAttr->compiledValue->flatten(&flatAttr->typedValue);
256 bool XmlFlattener::flatten(IAaptContext* context, xml::Node* node) { function in class:aapt::XmlFlattener
271 // Now we flatten the string pool references into the correct places.
312 return flatten(context, resource->root.get());
/frameworks/native/libs/ui/
H A DFrameStats.cpp34 status_t FrameStats::flatten(void* buffer, size_t size) const { function in class:android::FrameStats
H A DFence.cpp140 status_t Fence::flatten(void*& buffer, size_t& size, int*& fds, size_t& count) const { function in class:android::Fence
H A DGraphicBuffer.cpp290 status_t GraphicBuffer::flatten(void*& buffer, size_t& size, int*& fds, size_t& count) const { function in class:android::GraphicBuffer
H A DRegion.cpp767 status_t Region::flatten(void* buffer, size_t size) const { function in class:android::Region
769 validate(*this, "Region::flatten");
778 status_t result = rect.flatten(buffer, size);
/frameworks/av/camera/
H A DCameraParameters2.cpp37 String8 CameraParameters2::flatten() const function in class:android::CameraParameters2
H A DCameraParameters.cpp185 String8 CameraParameters::flatten() const function in class:android::CameraParameters
/frameworks/native/libs/gui/
H A DBufferItem.cpp104 status_t BufferItem::flatten( function in class:android::BufferItem
120 status_t err = mGraphicBuffer->flatten(buffer, size, fds, count);
126 status_t err = mFence->flatten(buffer, size, fds, count);
132 status_t err = mSurfaceDamage.flatten(buffer, size);
H A DSensor.cpp437 status_t Sensor::flatten(void* buffer, size_t size) const { function in class:android::Sensor
H A DIGraphicBufferProducer.cpp722 status_t IGraphicBufferProducer::QueueBufferInput::flatten( function in class:android::IGraphicBufferProducer::QueueBufferInput
735 status_t result = fence->flatten(buffer, size, fds, count);
739 return surfaceDamage.flatten(buffer, size);
/frameworks/base/tools/aapt2/
H A DResourceValues.cpp49 bool RawString::flatten(android::Res_value* outValue) const { function in class:aapt::RawString
69 bool Reference::flatten(android::Res_value* outValue) const { function in class:aapt::Reference
100 bool Id::flatten(android::Res_value* out) const { function in class:aapt::Id
125 bool String::flatten(android::Res_value* outValue) const { function in class:aapt::String
158 bool StyledString::flatten(android::Res_value* outValue) const { function in class:aapt::StyledString
182 bool FileReference::flatten(android::Res_value* outValue) const { function in class:aapt::FileReference
212 bool BinaryPrimitive::flatten(android::Res_value* outValue) const { function in class:aapt::BinaryPrimitive
421 item->flatten(&val);
H A DStringPool.cpp297 bool StringPool::flatten(BigBuffer* out, const StringPool& pool, bool utf8) { function in class:aapt::StringPool
400 return flatten(out, pool, true);
404 return flatten(out, pool, false);
/frameworks/native/include/binder/
H A DParcel.h458 virtual status_t flatten(void* buffer, size_t size, int* fds, size_t count) const = 0;
475 virtual status_t flatten(void* buffer, size_t size, int* fds, size_t count) const { function in class:android::Parcel::FlattenableHelper
476 return val.flatten(buffer, size, fds, count);
529 return val.flatten(buffer, size);
/frameworks/base/tools/aapt2/link/
H A DLink.cpp25 #include "flatten/Archive.h"
26 #include "flatten/TableFlattener.h"
27 #include "flatten/XmlFlattener.h"
295 bool flatten(ResourceTable* table, IArchiveWriter* archiveWriter);
428 bool ResourceFileFlattener::flatten(ResourceTable* table, IArchiveWriter* archiveWriter) { function in class:aapt::ResourceFileFlattener
488 // Now flatten the sorted values.
1273 if (!fileFlattener.flatten(&mFinalTable, archiveWriter.get())) {
/frameworks/base/core/java/android/hardware/
H A DCamera.java1884 native_setParameters(params.flatten());
2488 public String flatten() { method in class:Camera.Parameters
2504 * <p>The {@link #flatten()} method does the reverse.</p>
/frameworks/base/tools/aapt/
H A DResourceTable.cpp122 status_t err = root->flatten(target,
2176 sp<AaptFile> ResourceTable::flatten(Bundle* bundle, const sp<const ResourceFilter>& filter, function in class:ResourceTable
2180 status_t err = flatten(bundle, filter, data, isBase);
2858 status_t ResourceTable::flatten(Bundle* bundle, const sp<const ResourceFilter>& filter, function in class:ResourceTable
3227 ssize_t amt = e->flatten(bundle, data, cl->getPublic());
3732 ssize_t ResourceTable::Entry::flatten(Bundle* /* bundle */, const sp<AaptFile>& data, bool isPublic) function in class:ResourceTable::Entry
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 682 milliseconds