Searched defs:features (Results 1 - 17 of 17) sorted by path

/frameworks/base/core/java/android/accounts/
H A DAbstractAccountAuthenticator.java119 String authTokenType, String[] features, Bundle options)
124 + ", features " + (features == null ? "[]" : Arrays.toString(features)));
130 accountType, authTokenType, features, options);
252 Account account, String[] features) throws RemoteException {
256 new AccountAuthenticatorResponse(response), account, features);
375 * @param requiredFeatures a String array of authenticator-specific features that the added
465 * Checks if the account supports all the specified authenticator specific features.
468 * @param features a
118 addAccount(IAccountAuthenticatorResponse response, String accountType, String authTokenType, String[] features, Bundle options) argument
251 hasFeatures(IAccountAuthenticatorResponse response, Account account, String[] features) argument
481 hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features) argument
[all...]
H A DAccountManager.java83 * identifies the authenticator. Account <em>features</em> are used to
85 * type and features are authenticator-specific strings, and must be known by
550 * Finds out whether a particular account has all the specified features.
551 * Account features are authenticator-specific string tokens identifying
552 * boolean account properties. For example, features are used to tell
564 * @param features An array of the account features to check
570 * true if the account exists and has all of the specified features.
573 final String[] features,
576 if (features
572 hasFeatures(final Account account, final String[] features, AccountManagerCallback<Boolean> callback, Handler handler) argument
617 getAccountsByTypeAndFeatures( final String type, final String[] features, AccountManagerCallback<Account[]> callback, Handler handler) argument
1894 GetAuthTokenByTypeAndFeaturesTask(final String accountType, final String authTokenType, final String[] features, Activity activityForPrompting, final Bundle addAccountOptions, final Bundle loginOptions, AccountManagerCallback<Bundle> callback, Handler handler) argument
2089 getAuthTokenByFeatures( final String accountType, final String authTokenType, final String[] features, final Activity activity, final Bundle addAccountOptions, final Bundle getAuthTokenOptions, final AccountManagerCallback<Bundle> callback, final Handler handler) argument
[all...]
/frameworks/base/core/java/android/app/admin/
H A DDevicePolicyManager.java2014 * such as widgets. After setting this, keyguard features will be disabled according to the
2040 * Determine whether or not features have been disabled in keyguard either by the current
2043 * have disabled features in keyguard.
2607 * Sets a list of features to enable for a TrustAgent component. This is meant to be
2609 * trust agents but those with features enabled by this function call.
2616 * @param agent Which component to enable features for.
2617 * @param features List of features to enable. Consult specific TrustAgent documentation for
2622 List<String> features) {
2625 mService.setTrustAgentFeaturesEnabled(admin, agent, features, UserHandl
2621 setTrustAgentFeaturesEnabled(ComponentName admin, ComponentName agent, List<String> features) argument
[all...]
/frameworks/base/core/java/android/content/pm/
H A DFeatureGroupInfo.java22 * A set of features that can be requested by an application. This corresponds
29 * The list of features that are required by this group.
33 public FeatureInfo[] features; field in class:FeatureGroupInfo
39 features = other.features;
49 dest.writeTypedArray(features, flags);
56 group.features = source.createTypedArray(FeatureInfo.CREATOR);
/frameworks/base/core/java/android/provider/
H A DCallLog.java164 * Bit-mask describing features of the call (e.g. video).
168 public static final String FEATURES = "features";
377 * @param features features of the call (e.g. Video).
388 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
390 return addCall(ci, context, number, presentation, callType, features, accountHandle,
405 * @param features features of the call (e.g. Video).
419 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
457 values.put(FEATURES, features);
387 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage) argument
418 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, int features, PhoneAccountHandle accountHandle, long start, int duration, Long dataUsage, boolean addForAllUsers) argument
[all...]
/frameworks/base/core/java/android/service/trust/
H A DTrustAgentService.java90 * A white list of features that the given trust agent should support when otherwise disabled
116 Bundle features = msg.peekData();
118 boolean result = onSetTrustAgentFeaturesEnabled(features);
174 * Called when device policy wants to restrict features in the agent in response to
181 * disabled. An empty list means all features should be disabled.
318 public void setTrustAgentFeaturesEnabled(Bundle features, IBinder token) { argument
320 msg.setData(features);
/frameworks/base/core/java/android/speech/tts/
H A DVoice.java29 * Characteristics and features of a Text-To-Speech Voice. Each TTS Engine can expose
30 * multiple voices for each locale, with different set of features.
75 Set<String> features) {
81 this.mFeatures = features;
168 * Returns the set of features it supports for a given voice.
193 .append(", features: ").append(mFeatures.toString())
70 Voice(String name, Locale locale, int quality, int latency, boolean requiresNetworkConnection, Set<String> features) argument
/frameworks/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java856 Account account, String[] features) {
860 + ", features " + stringArrayToString(features)
866 if (features == null) throw new IllegalArgumentException("features is null");
871 new TestFeaturesSession(accounts, response, account, features).bind();
882 Account account, String[] features) {
885 mFeatures = features;
2041 IAccountManagerResponse response, String type, String[] features, int callingUid) {
2045 mFeatures = features;
855 hasFeatures(IAccountManagerResponse response, Account account, String[] features) argument
881 TestFeaturesSession(UserAccounts accounts, IAccountManagerResponse response, Account account, String[] features) argument
2040 GetAccountsByTypeAndFeatureSession(UserAccounts accounts, IAccountManagerResponse response, String type, String[] features, int callingUid) argument
2343 getAccountsByFeatures(IAccountManagerResponse response, String type, String[] features) argument
[all...]
/frameworks/base/test-runner/src/android/test/
H A DIsolatedContext.java138 final String type, final String[] features,
137 getAccountsByTypeAndFeatures( final String type, final String[] features, AccountManagerCallback<Account[]> callback, Handler handler) argument
/frameworks/base/tools/aapt/
H A DCommand.cpp487 * Explicit features defined in the group
489 KeyedVector<String8, bool> features; member in struct:FeatureGroup
516 const size_t numFeatures = grp.features.size();
518 if (!grp.features[i]) {
522 const String8& featureName = grp.features.keyAt(i);
531 if (grp.features.indexOfKey(impliedFeature.name) >= 0) {
558 grp->features.add(String8("android.hardware.camera"), true);
561 grp->features.add(String8("android.hardware.location"), true);
563 grp->features.add(String8("android.hardware.touchscreen"), true);
565 grp->features
[all...]
/frameworks/compile/libbcc/lib/Support/
H A DCompilerConfig.cpp103 llvm::StringMap<bool> features; local
104 llvm::sys::getHostCPUFeatures(features);
127 if (features.count("hwdiv-arm") && features["hwdiv-arm"])
130 if (features.count("hwdiv") && features["hwdiv"])
/frameworks/compile/mclinker/tools/mcld/lib/
H A DTripleOptions.cpp155 // Package up features to be passed to target/subtarget
158 llvm::SubtargetFeatures features; local
160 features.AddFeature(m_MAttrs[i]);
161 feature_str = features.getString();
/frameworks/compile/slang/
H A Dslang.cpp174 std::vector<std::string> features; local
181 features.push_back("+long64");
182 mTargetOpts->FeaturesAsWritten = features;
/frameworks/minikin/libs/minikin/
H A DLayout.cpp631 static void addFeatures(const string &str, vector<hb_feature_t>* features) { argument
643 /* We do not allow setting features on ranges. As such, reject any
647 features->push_back(feature);
661 vector<hb_feature_t> features; local
662 // Disable default-on non-required ligature features if letter-spacing
671 features.push_back(no_liga);
672 features.push_back(no_clig);
674 addFeatures(ctx->paint.fontFeatureSettings, &features);
725 hb_shape(hbFont, buffer, features.empty() ? NULL : &features[
[all...]
/frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
H A DHistogramPredictor.java45 // 2. Different features could have different weights on prediction scores.
202 public List<Map.Entry<String, Double> > findTopClasses(Map<String, String> features, int topK) { argument
212 if (features.containsKey(featureName)) {
213 String featureValue = features.get(featureName);
272 * Add a new observation of given sample id and features to the histograms
274 public void addSample(String sampleId, Map<String, String> features) { argument
275 for (Map.Entry<String, String> entry : features.entrySet()) {
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DFeatureAssembly.java54 public boolean registerFeaturePair(String[] features) { argument
55 if (features.length != 2 ||
56 !mPossibleFeatures.contains(features[0]) ||
57 !mPossibleFeatures.contains(features[1])) {
60 mUseFeatures.add(features[0]);
61 mUseFeatures.add(features[1]);
62 mUsePairedFeatures.add(Pair.create(features[0], features[1]));
77 Map<String, String> features = mAggregatorManager.getDataMap(f);
80 if (features
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DExtendedBitmapDrawable.java93 if ((mOpts.features & ExtendedOptions.FEATURE_STATE_CHANGES) != 0) {
566 * This class contains the features a client can specify, and arguments to those features.
665 * Non-changeable bit field describing the features you want the
671 * opts.features = FEATURE_ORDERED_DISPLAY | FEATURE_PARALLAX | FEATURE_STATE_CHANGES;
674 public final int features; field in class:ExtendedBitmapDrawable.ExtendedOptions
746 public ExtendedOptions(final int features) { argument
747 this(features, null, null);
753 public ExtendedOptions(final int features, final Drawable placeholder, argument
755 this.features
[all...]

Completed in 514 milliseconds