Searched defs:features (Results 1 - 15 of 15) sorted by relevance

/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/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/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/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/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
2029 GetAuthTokenByTypeAndFeaturesTask(final String accountType, final String authTokenType, final String[] features, Activity activityForPrompting, final Bundle addAccountOptions, final Bundle loginOptions, AccountManagerCallback<Bundle> callback, Handler handler) argument
2224 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/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/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/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/compile/slang/
H A Dslang.cpp174 std::vector<std::string> features; local
181 features.push_back("+long64");
182 mTargetOpts->FeaturesAsWritten = features;
/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,
406 * @param features features of the call (e.g. Video).
420 int presentation, int callType, int features, PhoneAccountHandle accountHandle,
458 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
419 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/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...]
/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/base/services/core/java/com/android/server/accounts/
H A DAccountManagerService.java860 Account account, String[] features) {
864 + ", features " + stringArrayToString(features)
870 if (features == null) throw new IllegalArgumentException("features is null");
875 new TestFeaturesSession(accounts, response, account, features).bind();
886 Account account, String[] features) {
889 mFeatures = features;
2072 IAccountManagerResponse response, String type, String[] features, int callingUid) {
2076 mFeatures = features;
859 hasFeatures(IAccountManagerResponse response, Account account, String[] features) argument
885 TestFeaturesSession(UserAccounts accounts, IAccountManagerResponse response, Account account, String[] features) argument
2071 GetAccountsByTypeAndFeatureSession(UserAccounts accounts, IAccountManagerResponse response, String type, String[] features, int callingUid) argument
2374 getAccountsByFeatures(IAccountManagerResponse response, String type, String[] features) argument
[all...]
/frameworks/base/tools/aapt/
H A DCommand.cpp488 * Explicit features defined in the group
490 KeyedVector<String8, bool> features; member in struct:FeatureGroup
517 const size_t numFeatures = grp.features.size();
519 const bool required = grp.features[i];
521 const String8& featureName = grp.features.keyAt(i);
530 if (grp.features.indexOfKey(impliedFeature.name) >= 0) {
557 grp->features.add(String8("android.hardware.camera"), true);
560 grp->features.add(String8("android.hardware.location"), true);
562 grp->features.add(String8("android.hardware.touchscreen"), true);
564 grp->features
[all...]

Completed in 521 milliseconds