Searched defs:symbols (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp317 // needs symbols to be grouped by hash code.
321 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
323 std::stable_sort(symbols.dynamicBegin(), symbols.dynamicEnd(),
509 /// allocateCommonSymbols - allocate common symbols in the corresponding
523 // FIXME: If the order of common symbols is defined, then sort common symbols
548 // allocate all local common symbols
555 // symbols. Therefore, we can not treat common symbols a
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java1016 * minimum number of symbols required in the password. After setting this,
1032 * @param length The new desired minimum number of symbols required in the
1046 * Retrieve the current number of symbols required in the password for all
1054 * @return The minimum number of symbols required in the password.
1074 * minimum number of non-letter characters (numerical digits or symbols)
2199 int lowercase, int numbers, int symbols, int nonletter, int userHandle) {
2203 numbers, symbols, nonletter, userHandle);
2198 setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase, int numbers, int symbols, int nonletter, int userHandle) argument
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp886 const sp<AaptSymbols>& symbols = javaSymbols->mNestedSymbols.valueAt(i); local
894 //printf("**** applying java symbols in dir %s\n", name.string());
895 status_t myerr = mNestedSymbols.valueAt(pos)->applyJavaSymbols(symbols);
1519 const sp<AaptSymbols>& symbols = mJavaSymbols.valueAt(i); local
1526 //printf("**** applying java symbols in dir %s\n", name.string());
1527 status_t err = mSymbols.valueAt(pos)->applyJavaSymbols(symbols);
H A DResource.cpp1575 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
1576 err = table.addSymbols(symbols);
1779 sp<AaptSymbols> symbols = local
1781 syms = permissionSymbols = symbols->addNestedSymbol(
1787 sp<AaptSymbols> symbols = local
1789 syms = permissionGroupSymbols = symbols->addNestedSymbol(
2039 //printf("Got R symbols!\n");
2042 //printf("Got attrs symbols! comment %s=%s\n",
2055 const sp<AaptSymbols>& symbols, int indent, bool includePrivate)
2064 size_t N = symbols
2053 writeResourceLoadedCallbackForLayoutClasses( FILE* fp, const sp<AaptAssets>& assets, const sp<AaptSymbols>& symbols, int indent, bool includePrivate) argument
2082 writeResourceLoadedCallback( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className, int indent) argument
2124 writeLayoutClasses( FILE* fp, const sp<AaptAssets>& assets, const sp<AaptSymbols>& symbols, int indent, bool includePrivate, bool nonConstantId) argument
2362 writeTextLayoutClasses( FILE* fp, const sp<AaptAssets>& assets, const sp<AaptSymbols>& symbols, bool includePrivate) argument
2458 writeSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className, int indent, bool nonConstantId, bool emitCallback) argument
2588 writeTextSymbolClass( FILE* fp, const sp<AaptAssets>& assets, bool includePrivate, const sp<AaptSymbols>& symbols, const String8& className) argument
2641 sp<AaptSymbols> symbols = assets->getSymbols().valueAt(i); local
[all...]
H A DResourceTable.cpp795 const String16 private_symbols16("private-symbols");
972 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
973 if (symbols != NULL) {
974 symbols = symbols->addNestedSymbol(String8(type), srcPos);
976 if (symbols != NULL) {
977 symbols->makeSymbolPublic(String8(name), srcPos);
980 symbols->appendComment(String8(name), comment, srcPos);
982 srcPos.error("Unable to create symbols!\n");
1084 sp<AaptSymbols> symbols local
1147 sp<AaptSymbols> symbols = assets->getJavaSymbolsFor(String8("R")); local
1212 sp<AaptSymbols> symbols = assets->getSymbolsFor(String8("R")); local
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp222 /// initStandardSymbols - define and initialize standard symbols.
230 // GNU extension: define __start and __stop symbols for the sections whose
281 // ----- section symbols ----- //
413 // ----- segment symbols ----- //
525 // ----- section symbols ----- //
593 // ----- segment symbols ----- //
778 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
792 symEnd = symbols.end();
793 for (symbol = symbols.begin(); symbol != symEnd; ++symbol) {
798 symtab_local_cnt = 1 + symbols
1013 const Module::SymbolTable& symbols = pModule.getSymbolTable(); local
1081 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
1353 Module::SymbolTable& symbols = pModule.getSymbolTable(); local
[all...]
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
H A DDevicePolicyManagerService.java351 private static final String TAG_MIN_PASSWORD_SYMBOLS = "min-password-symbols";
1356 out.attribute(null, "symbols", Integer.toString(policy.mActivePasswordSymbols));
1480 parser.getAttributeValue(null, "symbols"));
2673 int symbols = 0;
2687 symbols++;
2719 if (symbols < neededSymbols) {
2720 Slog.w(LOG_TAG, "resetPassword: number of special symbols " + symbols
2721 + " does not meet required number of special symbols " + neededSymbols);
3101 int lowercase, int numbers, int symbols, in
3100 setActivePasswordState(int quality, int length, int letters, int uppercase, int lowercase, int numbers, int symbols, int nonletter, int userHandle) argument
[all...]

Completed in 161 milliseconds