Searched refs:symbols (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/tools/aapt2/
H A DTableFlattener.h54 bool flattenValue(BigBuffer* out, const FlatEntry& flatEntry, SymbolEntryVector* symbols);
H A DResourceParser_test.cpp276 ASSERT_EQ(enumAttr->symbols.size(), 3u);
278 EXPECT_EQ(enumAttr->symbols[0].symbol.name.entry, u"bar");
279 EXPECT_EQ(enumAttr->symbols[0].value, 0u);
281 EXPECT_EQ(enumAttr->symbols[1].symbol.name.entry, u"bat");
282 EXPECT_EQ(enumAttr->symbols[1].value, 1u);
284 EXPECT_EQ(enumAttr->symbols[2].symbol.name.entry, u"baz");
285 EXPECT_EQ(enumAttr->symbols[2].value, 2u);
300 ASSERT_EQ(flagAttr->symbols.size(), 3u);
302 EXPECT_EQ(flagAttr->symbols[0].symbol.name.entry, u"bar");
303 EXPECT_EQ(flagAttr->symbols[
[all...]
H A DTableFlattener.cpp46 MapFlattener(BigBuffer* out, const FlatEntry& flatEntry, SymbolEntryVector* symbols) : argument
47 mOut(out), mSymbols(symbols) {
146 for (const auto& symbol : attr.symbols) {
216 ValueFlattener(BigBuffer* out, SymbolEntryVector* symbols) : argument
217 result(false), mOut(out), mOutValue(nullptr), mSymbols(symbols) {
249 SymbolEntryVector* symbols) {
274 ValueFlattener flattener(out, symbols);
279 MapFlattener flattener(out, flatEntry, symbols);
248 flattenValue(BigBuffer* out, const FlatEntry& flatEntry, SymbolEntryVector* symbols) argument
H A DResourceValues.cpp230 std::copy(symbols.begin(), symbols.end(), std::back_inserter(attr->symbols));
337 << util::joiner(symbols.begin(), symbols.end(), ", ")
H A DLinker_test.cpp52 flagAttr->symbols.push_back(Attribute::Symbol{
54 flagAttr->symbols.push_back(Attribute::Symbol{
H A DDebug.cpp39 for (const auto& symbol : attr.symbols) {
H A DLinker.cpp256 for (auto& symbol : attr.symbols) {
H A DResourceTableResolver.cpp173 // Internal IDs are special keys, which are not enum/flag symbols, so skip.
185 entry.attr->symbols.push_back(Attribute::Symbol{
H A DResourceValues.h219 std::vector<Symbol> symbols; member in struct:aapt::Attribute
H A DBinaryResourceParser.cpp52 for (auto& entry : attr.symbols) {
828 attr->symbols.push_back(std::move(symbol));
H A DResourceParser.cpp214 for (const auto& entry : enumAttr.symbols) {
215 // Enum symbols are stored as @package:id/symbol resources,
237 for (const auto& entry : flagAttr.symbols) {
238 // Flag symbols are stored as @package:id/symbol resources,
627 if (name == u"private-symbols") {
630 << "got a <private-symbols> tag."
1058 attr->symbols.swap(items);
/frameworks/base/tools/aapt/
H A DResource.cpp1606 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
1607 err = table.addSymbols(symbols, bundle->getSkipSymbolsWithoutDefaultLocalization());
1810 sp<AaptSymbols> symbols = local
1812 syms = permissionSymbols = symbols->addNestedSymbol(
1818 sp<AaptSymbols> symbols = local
1820 syms = permissionGroupSymbols = symbols->addNestedSymbol(
2070 //printf("Got R symbols!\n");
2073 //printf("Got attrs symbols! comment %s=%s\n",
2086 const sp<AaptSymbols>& symbols, int indent, bool /* includePrivate */)
2095 size_t N = symbols
2084 writeResourceLoadedCallbackForLayoutClasses( FILE* fp, const sp<AaptAssets>& assets, const sp<AaptSymbols>& symbols, int indent, bool ) argument
2113 writeResourceLoadedCallback( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className, int indent) argument
2155 writeLayoutClasses( FILE* fp, const sp<AaptAssets>& assets, const sp<AaptSymbols>& symbols, int indent, bool includePrivate, bool nonConstantId) argument
2393 writeTextLayoutClasses( FILE* fp, const sp<AaptAssets>& assets, const sp<AaptSymbols>& symbols, bool includePrivate) argument
2489 writeSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className, int indent, bool nonConstantId, bool emitCallback) argument
2619 writeTextSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className) argument
2672 sp<AaptSymbols> symbols = assets->getSymbols().valueAt(i); local
[all...]
H A DResourceTable.cpp817 const String16 private_symbols16("private-symbols");
995 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
996 if (symbols != NULL) {
997 symbols = symbols->addNestedSymbol(String8(type), srcPos);
999 if (symbols != NULL) {
1000 symbols->makeSymbolPublic(String8(name), srcPos);
1003 symbols->appendComment(String8(name), comment, srcPos);
1005 srcPos.error("Unable to create symbols!\n");
1107 sp<AaptSymbols> symbols local
1170 sp<AaptSymbols> symbols = assets->getJavaSymbolsFor(String8("R")); local
1235 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
[all...]
H A DAaptAssets.cpp859 const sp<AaptSymbols>& symbols = javaSymbols->mNestedSymbols.valueAt(i); local
867 //printf("**** applying java symbols in dir %s\n", name.string());
868 status_t myerr = mNestedSymbols.valueAt(pos)->applyJavaSymbols(symbols);
1492 const sp<AaptSymbols>& symbols = mJavaSymbols.valueAt(i); local
1499 //printf("**** applying java symbols in dir %s\n", name.string());
1500 status_t err = mSymbols.valueAt(pos)->applyJavaSymbols(symbols);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp211 /// initStandardSymbols - define and initialize standard symbols.
217 // GNU extension: define __start and __stop symbols for the sections whose
268 // ----- section symbols ----- //
394 // ----- segment symbols ----- //
496 // ----- section symbols ----- //
561 // ----- segment symbols ----- //
731 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
745 symEnd = symbols.end();
746 for (symbol = symbols.begin(); symbol != symEnd; ++symbol) {
751 symtab_local_cnt = 1 + symbols
959 const Module::SymbolTable& symbols = pModule.getSymbolTable(); local
1025 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
1293 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
[all...]
/frameworks/support/v8/renderscript/rs_support/
H A DAndroid.mk19 # These symbols are normally defined by BUILD_XXX, but we need to define them
/frameworks/rs/
H A DAndroid.mk72 # These symbols are normally defined by BUILD_XXX, but we need to define them
/frameworks/wilhelm/src/
H A DAndroid.mk67 # Reduce size of .so and hide internal global symbols
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java730 int symbols = 0;
744 symbols++;
750 numbers, symbols, nonletter, userHandle);
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp294 // needs symbols to be grouped by hash code.
298 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
301 symbols.dynamicBegin(), symbols.dynamicEnd(), DynsymGOTCompare(*m_pGOT));
463 /// allocateCommonSymbols - allocate common symbols in the corresponding
475 // FIXME: If the order of common symbols is defined, then sort common symbols
500 // allocate all local common symbols
507 // symbols. Therefore, we can not treat common symbols a
[all...]
/frameworks/base/core/java/android/app/admin/
H A DIDevicePolicyManager.aidl112 int numbers, int symbols, int nonletter, int userHandle);
H A DDevicePolicyManager.java1351 * minimum number of symbols required in the password. After setting this,
1367 * @param length The new desired minimum number of symbols required in the
1381 * Retrieve the current number of symbols required in the password for all
1389 * @return The minimum number of symbols required in the password.
1409 * minimum number of non-letter characters (numerical digits or symbols)
2640 int lowercase, int numbers, int symbols, int nonletter, int userHandle) {
2644 numbers, symbols, nonletter, userHandle);
2639 setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase, int numbers, int symbols, int nonletter, int userHandle) argument
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java423 private static final String TAG_MIN_PASSWORD_SYMBOLS = "min-password-symbols";
1486 out.attribute(null, "symbols", Integer.toString(policy.mActivePasswordSymbols));
1625 parser.getAttributeValue(null, "symbols"));
2873 int symbols = 0;
2887 symbols++;
2919 if (symbols < neededSymbols) {
2920 Slog.w(LOG_TAG, "resetPassword: number of special symbols " + symbols
2921 + " does not meet required number of special symbols " + neededSymbols);
3458 int lowercase, int numbers, int symbols, in
3457 setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase, int numbers, int symbols, int nonletter, int userHandle) argument
[all...]
/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 2965 milliseconds