Searched defs:set (Results 51 - 74 of 74) sorted by relevance

123

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DMatrix.java42 set(src);
130 public void set(Matrix src) { method in class:Matrix
139 public void set(_Original_Matrix src) { method in class:Matrix
367 set(tmp);
401 set(m);
415 set(m);
429 set(m);
443 set(m);
457 set(m);
471 set(
[all...]
H A DPath.java83 public void set(Path src) { method in class:Path
165 * not null, set rect to the bounds of the path. If the path does not
179 * path contains 0 or 1 points, the bounds is set to (0,0,0,0)
233 * automatically set to (0,0).
264 * this contour, the first point is automatically set to (0,0).
303 * made for this contour, the first point is automatically set to (0,0).
H A DPaint.java223 set(paint);
276 public void set(Paint src) { method in class:Paint
286 super.set(src);
691 * @param textSize set the paint's text size.
716 * @param scaleX set the paint's scale in X for drawing/measuring text.
740 * @param skewX set the paint's skew factor in X for drawing text.
1202 bounds.set(0, 0, (int)rect.getWidth(), (int)rect.getHeight());
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java597 * @param account The account to set a password for
598 * @param password The password to set, null to clear the password
645 * @param account The account to set the userdata for
646 * @param key The userdata key to set. Must not be null
647 * @param value The value to set, null to clear this userdata key
672 * @param account The account to set an auth token for
806 * the user for a password. If the notifyAuthFailure parameter is set,
1186 protected void set(Bundle bundle) { method in class:AccountManager.AmsTask
1187 // TODO: somehow a null is being set as the result of the Future. Log this
1193 super.set(bundl
[all...]
/frameworks/base/core/java/android/content/
H A DContext.java99 * calls to unbind. When this flag is set, the callstack of the following
245 AttributeSet set, int[] attrs) {
246 return getTheme().obtainStyledAttributes(set, attrs, 0, 0);
257 AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) {
259 set, attrs, defStyleAttr, defStyleRes);
552 * application; you can only set the mode of the entire directory, not
657 * WallpaperManager.set()} instead.
664 * WallpaperManager.set()} instead.
711 * @param flagsValues Desired values for any bits set in
713 * @param extraFlags Always set t
244 obtainStyledAttributes( AttributeSet set, int[] attrs) argument
256 obtainStyledAttributes( AttributeSet set, int[] attrs, int defStyleAttr, int defStyleRes) argument
[all...]
H A DIntentFilter.java240 private static int findStringInSet(String[] set, String string, argument
242 if (set == null) return -1;
245 if (set[i].equals(string)) return i;
250 private static String[] addStringToSet(String[] set, String string, argument
252 if (findStringInSet(set, string, lengths, lenPos) >= 0) return set;
253 if (set == null) {
254 set = new String[2];
255 set[0] = string;
257 return set;
274 removeStringFromSet(String[] set, String string, int[] lengths, int lenPos) argument
[all...]
/frameworks/base/core/java/android/content/res/
H A DResources.java124 * Create a new Resources object on top of an existing set of assets in an
609 * the set is returned.
928 * In other words, a Theme is a set of values for resource attributes;
968 * they have in common will be set in this theme.
1063 * <var>set</var>
1090 * @param set The base set of attribute values. May be null.
1109 public TypedArray obtainStyledAttributes(AttributeSet set, argument
1118 XmlBlock.Parser parser = (XmlBlock.Parser)set;
1133 for (i=0; i<set
1235 obtainAttributes(AttributeSet set, int[] attrs) argument
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java25 * using either reset() - to construct an identity matrix, or one of the set..()
78 public void set(Matrix src) { method in class:Matrix
377 * @return true if the matrix was set to the specified transformation
392 * set inverse to be the inverse of this matrix. If this matrix cannot be
H A DPath.java66 public void set(Path src) { method in class:Path
144 * not null, set rect to the bounds of the path. If the path does not
158 * set to (0,0,0,0)
205 * automatically set to (0,0).
231 * this contour, the first point is automatically set to (0,0).
263 * made for this contour, the first point is automatically set to (0,0).
H A DPaint.java223 * get() on all of the src fields, and calling the corresponding set()
226 public void set(Paint src) { method in class:Paint
271 * Helper for getFlags(), returning true if ANTI_ALIAS_FLAG bit is set
276 * @return true if the antialias bit is set in the paint's flags.
288 * @param aa true to set the antialias bit in the flags, false to clear it
293 * Helper for getFlags(), returning true if DITHER_FLAG bit is set
300 * @return true if the dithering bit is set in the paint's flags.
314 * @param dither true to set the dithering bit in flags, false to clear it
319 * Helper for getFlags(), returning true if LINEAR_TEXT_FLAG bit is set
321 * @return true if the lineartext bit is set i
[all...]
/frameworks/base/libs/camera/
H A DCameraParameters.cpp203 void CameraParameters::set(const char *key, const char *value) function in class:android::CameraParameters
219 void CameraParameters::set(const char *key, int value) function in class:android::CameraParameters
223 set(key, str);
230 set(key, str);
283 set(KEY_PREVIEW_SIZE, str);
305 set(KEY_PREVIEW_FRAME_RATE, fps);
315 set(KEY_PREVIEW_FORMAT, format);
327 set(KEY_PICTURE_SIZE, str);
349 set(KEY_PICTURE_FORMAT, format);
/frameworks/base/media/jni/
H A Dandroid_media_MediaPlayer.cpp190 jobject set = env->CallObjectMethod(headers, entrySet); local
197 jobject iter = env->CallObjectMethod(set, iterator);
247 env->DeleteLocalRef(set);
/frameworks/base/opengl/libagl/
H A Dmatrix.cpp287 void matrixf_t::set(const GLfixed* rhs) { function in class:android::matrixf_t
291 void matrixf_t::set(const GLfloat* rhs) { function in class:android::matrixf_t
847 rhs.set(f);
886 rhs.set(f);
958 rhs.set(m);
967 rhs.set(m);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeContext.java236 public final TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs) { argument
237 return obtainStyledAttributes(set, attrs, 0, 0);
241 public TypedArray obtainStyledAttributes(AttributeSet set, int[] attrs, argument
246 if (set instanceof BridgeXmlBlockParser) {
247 parser = (BridgeXmlBlockParser)set;
/frameworks/base/core/java/android/content/pm/
H A DPackageManager.java174 * Resolution and querying flag: if set, only filters that support the
250 * allow test packages (those that have set android:testOnly in their
273 * that you don't want to kill the app containing the component. Be careful when you set this
807 * If flag GET_UNINSTALLED_PACKAGES is set and if the package is not
812 * deleted with DONT_DELTE_DATA flag set).
960 * If flag GET_UNINSTALLED_PACKAGES is set and if the package is not
966 * deleted with DONT_DELTE_DATA flag set).
1062 * If flag GET_UNINSTALLED_PACKAGES is set, a list of all
1107 * are taking possession of that entire set of permission names. Thus, it
1255 * device. If flag GET_UNINSTALLED_PACKAGES has been set,
1959 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
1984 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DWifiService.java414 // set a flag if the user is enabling Wifi while in airplane mode
642 wifiConfig.allowedKeyManagement.set(authType);
718 wifiConfig.allowedKeyManagement.set(KeyMgmt.NONE);
916 * just a "*" if the key is set, or the null string otherwise.
929 * just a "*" if the key is set, or the null string otherwise.
946 config.allowedProtocols.set(index);
959 config.allowedKeyManagement.set(index);
972 config.allowedAuthAlgorithms.set(index);
985 config.allowedPairwiseCiphers.set(index);
998 config.allowedGroupCiphers.set(inde
1264 makeString(BitSet set, String[] strings) argument
[all...]
H A DPackageManagerService.java166 * (the state is set to PKG_INSTALL_INCOMPLETE) and remains so till
713 Slog.w(TAG, "**** ro.build.version.sdk not set!");
1976 // First figure out how good the original match set is.
2013 // Okay we found a previously set preferred app.
2014 // If the result set is different from when this
2018 Slog.i(TAG, "Result set changed, dropping preferred activity for "
2617 // An updated system app will not have the PARSE_IS_SYSTEM flag set initially
2639 Slog.e(TAG, "Resource path not set for pkg : " + pkg.packageName);
2771 // Bail out. The resource and code paths haven't been set.
2772 Slog.w(TAG, " Code and resource paths haven't been set correctl
6637 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
6661 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
7465 PreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
[all...]
/frameworks/base/tools/aapt/
H A DResource.cpp57 ResourceDirIterator(const sp<ResourceTypeSet>& set, const String8& resType) argument
58 : mResType(resType), mSet(set), mSetPos(0), mGroupPos(0)
244 const sp<ResourceTypeSet>& set,
252 ResourceDirIterator it(set, String8(resType));
287 const sp<ResourceTypeSet>& set)
289 ResourceDirIterator it(set, String8("drawable"));
306 const sp<ResourceTypeSet>& set)
308 ResourceDirIterator it(set, String8("drawable"));
342 sp<ResourceTypeSet> set = new ResourceTypeSet(); local
343 set
242 makeFileResources(Bundle* bundle, const sp<AaptAssets>& assets, ResourceTable* table, const sp<ResourceTypeSet>& set, const char* resType) argument
286 preProcessImages(Bundle* bundle, const sp<AaptAssets>& assets, const sp<ResourceTypeSet>& set) argument
304 postProcessImages(const sp<AaptAssets>& assets, ResourceTable* table, const sp<ResourceTypeSet>& set) argument
346 sp<ResourceTypeSet> set = resources->valueAt(index); local
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java36 * set capture settings, start/stop preview, snap a picture, and retrieve
169 * if the same surface is re-set.
840 * Focus is set at infinity. Applications should not call
887 * Creates a single string with all the parameters set in
941 public void set(String key, String value) { method in class:Camera.Parameters
960 public void set(String key, int value) { method in class:Camera.Parameters
992 set(KEY_PREVIEW_SIZE, v);
1019 * applications set both width and height to 0, EXIF will not contain
1026 set(KEY_JPEG_THUMBNAIL_WIDTH, width);
1027 set(KEY_JPEG_THUMBNAIL_HEIGH
[all...]
/frameworks/base/core/java/android/app/
H A DContextImpl.java2545 int match, ComponentName[] set, ComponentName activity) {
2547 mPM.addPreferredActivity(filter, match, set, activity);
2555 int match, ComponentName[] set, ComponentName activity) {
2557 mPM.replacePreferredActivity(filter, match, set, activity);
2544 addPreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
2554 replacePreferredActivity(IntentFilter filter, int match, ComponentName[] set, ComponentName activity) argument
/frameworks/base/core/java/android/provider/
H A DContactsContract.java59 * as a phone number or email addresses. The set of data kinds that can be
60 * stored in this table is open-ended. There is a predefined set of common
64 * A row in the {@link RawContacts} table represents a set of data describing a
115 * {@link RawContacts#DIRTY} is not automatically set and the
116 * "syncToNetwork" parameter is set to false when calling
228 * @see android.provider.SyncStateContract.Helpers#set
230 public static void set(ContentProviderClient provider, Account account, byte[] data) method in class:ContactsContract.SyncState
232 SyncStateContract.Helpers.set(provider, CONTENT_URI, account, data);
583 * The value may be set manually by the user.
777 * if any constituent raw contacts are starred, then this field is set t
[all...]
/frameworks/base/libs/utils/
H A DResourceTypes.cpp2128 bag_set* set = typeSet[e]; local
2129 if (set) {
2130 if (set != (bag_set*)0xFFFFFFFF) {
2132 *outTypeSpecFlags = set->typeSpecFlags;
2134 *outBag = (bag_entry*)(set+1);
2136 return set->numAttrs;
2164 bag_set* set = NULL; local
2183 if (set) free(set);
2206 if (set
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java242 * This flag is set if the TextView tries to display an error before it
335 // If we get the paint from the skin, we should set it to left, since
742 // text, since we can't tell the IME about the set of digits
1354 // We need to retain the last set padding, so just clear
1448 * want a Drawable there. The Drawables' bounds will be set to
1472 * want a Drawable there. The Drawables' bounds will be set to
1760 * Return the set of text colors.
1762 * @return Returns the set of text colors.
1830 * Sets whether the movement method will automatically be set to
1832 * set t
2745 /* package */ void set(char[] chars, int start, int len) { method in class:TextView.CharWrapper
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java108 * <p>To enable the built-in zoom, set
138 * or set the entire Activity window as a WebView during {@link
230 * can set your Activity to handle the {@code orientation} and {@code keyboardHidden}
292 * window.devicePixelRatio} DOM property, then you should set the {@code target-densitydpi} meta
391 // This would be final but it needs to be set to null when the WebView is
480 // default is not set, the UI will continue handle them.
692 // scale limit, which can be set through viewport meta tag in the web page
717 // set to true temporarily during ScaleGesture triggered zoom
924 * Construct a new WebView with layout parameters, a default style and a set
1288 * Inform WebView of the network state. This is used to set
7432 nativeSetSelectionPointer(boolean set, float scale, int x, int y, boolean extendSelection) argument
7434 nativeSetSelectionRegion(boolean set) argument
[all...]

Completed in 796 milliseconds

123