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

1 2

  /frameworks/base/tools/aapt2/
ResourceValues.cpp 250 typeMask(t),
261 if (typeMask == android::ResTable_map::TYPE_ANY) {
267 if ((typeMask & android::ResTable_map::TYPE_REFERENCE) != 0) {
276 if ((typeMask & android::ResTable_map::TYPE_STRING) != 0) {
285 if ((typeMask & android::ResTable_map::TYPE_INTEGER) != 0) {
294 if ((typeMask & android::ResTable_map::TYPE_BOOLEAN) != 0) {
303 if ((typeMask & android::ResTable_map::TYPE_COLOR) != 0) {
312 if ((typeMask & android::ResTable_map::TYPE_FLOAT) != 0) {
321 if ((typeMask & android::ResTable_map::TYPE_DIMENSION) != 0) {
330 if ((typeMask & android::ResTable_map::TYPE_FRACTION) != 0)
    [all...]
ResourceParser.h 71 * The type of Item that can be parsed is denoted by the `typeMask`.
75 std::unique_ptr<Item> parseXml(xml::XmlPullParser* parser, const uint32_t typeMask,
99 bool parseArrayImpl(xml::XmlPullParser* parser, ParsedResource* outResource, uint32_t typeMask);
ResourceUtils.cpp 477 const StringPiece16& value, uint32_t typeMask,
493 if (typeMask & android::ResTable_map::TYPE_COLOR) {
501 if (typeMask & android::ResTable_map::TYPE_BOOLEAN) {
509 if (typeMask & android::ResTable_map::TYPE_INTEGER) {
519 if (typeMask & floatMask) {
523 if (typeMask & androidTypeToAttributeTypeMask(floatingPoint->value.dataType)) {
538 const uint32_t typeMask = attr->typeMask;
539 std::unique_ptr<Item> value = parseItemForAttribute(str, typeMask, onCreateReference);
544 if (typeMask & android::ResTable_map::TYPE_ENUM)
    [all...]
ResourceUtils.h 154 const StringPiece16& value, uint32_t typeMask,
ResourceParser.cpp 474 * with typeMask denoting which items it can be. If allowRawValue is
479 std::unique_ptr<Item> ResourceParser::parseXml(xml::XmlPullParser* parser, const uint32_t typeMask,
503 std::unique_ptr<Item> processedItem = ResourceUtils::parseItemForAttribute(rawValue, typeMask,
514 if (typeMask & android::ResTable_map::TYPE_STRING) {
752 uint32_t typeMask = 0;
756 typeMask = parseFormatAttribute(maybeFormat.value());
757 if (typeMask == 0) {
798 if ((maybeMin || maybeMax) && (typeMask & android::ResTable_map::TYPE_INTEGER) == 0) {
    [all...]
ResourceParser_test.cpp 136 EXPECT_EQ(uint32_t(android::ResTable_map::TYPE_STRING), attr->typeMask);
140 EXPECT_EQ(uint32_t(android::ResTable_map::TYPE_ANY), attr->typeMask);
169 EXPECT_EQ(uint32_t(android::ResTable_map::TYPE_INTEGER), attr->typeMask);
188 EXPECT_EQ(uint32_t(android::ResTable_map::TYPE_STRING), attr->typeMask);
202 EXPECT_EQ(uint32_t(android::ResTable_map::TYPE_BOOLEAN), attr->typeMask);
215 EXPECT_EQ(enumAttr->typeMask, android::ResTable_map::TYPE_ENUM);
241 EXPECT_EQ(flagAttr->typeMask, android::ResTable_map::TYPE_FLAGS);
ResourceTable.cpp 233 if (existingAttr->typeMask == incomingAttr->typeMask) {
240 if (existingAttr->isWeak() && existingAttr->typeMask == android::ResTable_map::TYPE_ANY) {
245 if (incomingAttr->isWeak() && incomingAttr->typeMask == android::ResTable_map::TYPE_ANY) {
ResourceValues.h 264 uint32_t typeMask;
Debug.cpp 42 if (attr->typeMask & kMask) {
  /frameworks/base/tools/aapt2/java/
JavaClassGenerator.cpp 99 const uint32_t typeMask = attr->typeMask;
100 if (typeMask & android::ResTable_map::TYPE_REFERENCE) {
108 if (typeMask & android::ResTable_map::TYPE_STRING) {
114 if (typeMask & android::ResTable_map::TYPE_INTEGER) {
118 if (typeMask & android::ResTable_map::TYPE_BOOLEAN) {
124 if (typeMask & android::ResTable_map::TYPE_COLOR) {
131 if (typeMask & android::ResTable_map::TYPE_FLOAT) {
136 if (typeMask & android::ResTable_map::TYPE_DIMENSION) {
145 if (typeMask & android::ResTable_map::TYPE_FRACTION)
    [all...]
  /frameworks/base/tools/aapt2/test/
Builders.h 175 mAttr->typeMask = android::ResTable_map::TYPE_ANY;
178 AttributeBuilder& setTypeMask(uint32_t typeMask) {
179 mAttr->typeMask = typeMask;
  /frameworks/base/tools/aapt2/flatten/
TableFlattener_test.cpp 211 attr.typeMask = android::ResTable_map::TYPE_INTEGER;
226 EXPECT_EQ(attr.typeMask, actualAttr->typeMask);
  /frameworks/base/tools/aapt2/link/
XmlReferenceLinker.cpp 112 !(attribute->typeMask & android::ResTable_map::TYPE_STRING)) {
ReferenceLinker.cpp 144 if (!transformed && (attr->typeMask & android::ResTable_map::TYPE_STRING)) {
  /external/opencv/ml/src/
mlestimate.cpp 659 const CvMat* typeMask,
702 trainParams, compIdx, trainDataIdx, typeMask, missedMeasurementMask));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.contenttype_3.5.0.v20150421-2214.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.cpp 501 attr->typeMask = util::deviceToHost32(typeMaskIter->value.data);
517 if (attr->typeMask & (ResTable_map::TYPE_ENUM | ResTable_map::TYPE_FLAGS)) {
  /frameworks/base/tools/aapt2/process/
SymbolTable.cpp 161 s->attribute->typeMask = entry[i].map.value.data;
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 91 CV_EXPORTS int randomType(RNG& rng, int typeMask, int minChannels, int maxChannels);
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 88 pbAttr->set_format_flags(attr->typeMask);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Folder.java 730 * Checks if <code>typeMask</code> is of the specified {@link FolderType}
735 public static boolean isType(final int typeMask, final int folderType) {
736 return (typeMask & folderType) != 0;
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 202 TypeMask mask = this->getType();
230 TypeMask mask = this->getType();
645 TypeMask aType = a.getType();
646 TypeMask bType = b.getType();
840 TypeMask mask = this->getType();
1518 uint32_t typemask; member in struct:__anon22945::AggregateMatrix
    [all...]

Completed in 769 milliseconds

1 2