Searched refs:from (Results 76 - 100 of 156) sorted by relevance

1234567

/frameworks/base/core/java/android/content/
H A DContentValues.java57 * Creates a set of values copied from the given set
59 * @param from the values to copy
61 public ContentValues(ContentValues from) { argument
62 mValues = new HashMap<String, Object>(from.mValues);
66 * Creates a set of values copied from the given HashMap. This is used
100 * Adds all values from the passed in ContentValues.
102 * @param other the ContentValues from which to copy
/frameworks/base/core/java/android/net/
H A DUri.java66 that some threads will immediately see changes from other threads on
69 overhead, which means the most common case, access from a single thread,
87 For reference, from RFC 2396:
221 * Gets the decoded user information from the authority.
230 * Gets the encoded user information from the authority.
239 * Gets the encoded host from the authority for this URI. For example,
248 * Gets the port from the authority for this URI. For example,
272 * Gets the decoded query component from this URI. The query comes after
282 * Gets the encoded query component from this URI. The query comes after
401 * Constructs a new builder, copying the attributes from thi
2058 static Part from(String encoded, String decoded) { method in class:Uri.Part
2235 static PathPart from(String encoded, String decoded) { method in class:Uri.PathPart
[all...]
H A DConnectivityManager.java56 * If this is a connection that was the result of failing over from a
135 * may be passed up from the lower networking layers, and its
664 public static ConnectivityManager from(Context context) { method in class:ConnectivityManager
H A DNetworkPolicyManager.java71 public static NetworkPolicyManager from(Context context) { method in class:NetworkPolicyManager
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduParser.java527 EncodedStringValue from = null;
536 from = parseEncodedStringValue(pduDataStream);
537 if (null != from) {
538 byte[] address = from.getTextString();
546 from.setTextString(str.getBytes());
555 from = new EncodedStringValue(
565 Log.v(LOG_TAG, "parseHeaders: from address: " + headerField
566 + " value: " + from.getString());
568 headers.setEncodedStringValue(from, PduHeaders.FROM);
1217 * Extract a byte value from th
[all...]
/frameworks/base/core/java/android/view/
H A DView.java123 * either from code or by specifying a tree of views in one or more XML layout
175 * is created from code and a form that is called when the view is
176 * inflated from a layout file. The second form should parse and apply
183 * from XML.</td>
256 * <td>Called when the view is detached from its window.
343 * after layout. These values may, but do not have to, be different from the
412 * MeasureSpecs are used to push requirements down the tree from parent to
473 * from that thread, you should use a {@link Handler}.
918 * <p>Indicates that this view gets its drawable states from its direct parent
1798 * Horizontal layout direction of this view is from Lef
[all...]
H A DViewDebug.java96 * @ViewDebug.IntToString(from = 0, to = "VISIBLE"),
97 * @ViewDebug.IntToString(from = 4, to = "INVISIBLE"),
98 * @ViewDebug.IntToString(from = 8, to = "GONE")
116 * @ViewDebug.IntToString(from = 0, to = "INVALID"),
117 * @ViewDebug.IntToString(from = 1, to = "FIRST"),
118 * @ViewDebug.IntToString(from = 2, to = "SECOND")
179 * Defines a mapping from an int value to a String. Such a mapping can be used
192 int from(); method in interface:ViewDebug.IntToString
203 * Defines a mapping from a flag to a String. Such a mapping can be used
277 * Returns a View to enable grabbing screenshots from custo
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserView.java217 LayoutInflater inflater = LayoutInflater.from(mContext);
695 convertView = LayoutInflater.from(getContext()).inflate(
705 convertView = LayoutInflater.from(getContext()).inflate(
/frameworks/base/include/androidfw/
H A DInput.h63 * This input source flag is hidden from the API because switches are only used by the system
70 * SystemUiVisibility constants from View.
115 * policy decisions such as waking from device sleep.
141 // Indicates that the input event is from a trusted source such as a directly attached
253 void initialize(const InputEvent& from);
305 void initialize(const KeyEvent& from);
/frameworks/compile/libbcc/runtime/make/
H A Dutil.mk103 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))
/frameworks/ex/carousel/java/com/android/ex/carousel/
H A Dcarousel.rs60 float3 from;
78 // Request states. Used for loading 3D object properties from the Java client.
184 bool drawRuler; // whether to draw a ruler from the card to the detail texture
272 {2,2,2}, // from
423 // convert from carousel rotation angle (in card slot units) to radians.
429 // convert from radians to carousel rotation angle (in card slot units).
436 // from - position of the camera in x,y,z
445 camera.from.x = fromX;
446 camera.from.y = fromY;
447 camera.from
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DShareCompat.java49 * method {@link IntentBuilder#from(Activity)}.
56 * to call out the app that the content was shared from.
161 * Retrieve the name of the package that launched calledActivity from a share intent.
181 * Retrieve the ComponentName of the activity that launched calledActivity from a share intent.
269 * Create a new IntentBuilder for launching a sharing action from launchingActivity.
271 * @param launchingActivity Activity that the share will be launched from
274 public static IntentBuilder from(Activity launchingActivity) { method in class:ShareCompat.IntentBuilder
647 * from shared posts if desired.</p>
671 public static IntentReader from(Activity activity) { method in class:ShareCompat.IntentReader
858 * was not started for a result, IntentBuilder will read this from extr
[all...]
H A DTaskStackBuilder.java46 * <p>When crossing from one task stack to another post-Android 3.0,
65 * from the developer guide and <a href="{@docRoot}design/patterns/navigation.html">Navigation</a>
66 * from the design guide.
145 public static TaskStackBuilder from(Context context) { method in class:TaskStackBuilder
195 // We have the actual parent intent, build the rest from static metadata
253 * @param index Index from 0-getIntentCount()
267 * @param index Index from 0-getIntentCount()
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java342 LayoutInflater inflater = LayoutInflater.from(mBuilder.getContext());
/frameworks/base/core/java/android/webkit/
H A DFindActionModeCallback.java50 mCustomView = LayoutInflater.from(context).inflate(
122 * Highlight all the instances of the string from mEditText in mWebView.
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuItemView.java268 mInflater = LayoutInflater.from(mContext);
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTweener.java132 Tweener from(Object object, long duration, Object... vars) { method in class:Tweener
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardMultiUserAvatar.java76 LayoutInflater.from(context).inflate(resId, userSelector, false);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DAccountUnlockScreen.java92 LayoutInflater.from(context).inflate(
229 * @return an account name from the database, or null if we can't
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java78 CharSequence nonLocalizedLabel; // the label information from the package mgr.
79 int labelRes; // the label information from the package mgr.
433 // doing anything special with something that comes from
525 void addResultLocked(ActivityRecord from, String resultWho, argument
528 ActivityResult r = new ActivityResult(from, resultWho,
536 void removeResultsLocked(ActivityRecord from, String resultWho, argument
541 if (r.mFrom != from) continue;
/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp299 ALOGE("Unable to instantiate color conversion from format 0x%08x to "
448 int from; member in struct:android::Map
472 if (meta->findCString(kMap[i].from, &value)) {
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp28 OMX_COLOR_FORMATTYPE from, OMX_COLOR_FORMATTYPE to)
29 : mSrcFormat(from),
27 ColorConverter( OMX_COLOR_FORMATTYPE from, OMX_COLOR_FORMATTYPE to) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java178 LayoutInflater inflater = LayoutInflater.from(getContext());
205 LayoutInflater inflater = LayoutInflater.from(mContext);
/frameworks/base/core/java/android/app/
H A DProgressDialog.java122 LayoutInflater inflater = LayoutInflater.from(mContext);
/frameworks/base/core/java/android/net/http/
H A DSslCertificate.java63 * Not-before date from the validity period
68 * Not-after date from the validity period
147 * @param validNotBefore The not-before date from the certificate
149 * @param validNotAfter The not-after date from the certificate
163 * @param validNotBefore The not-before date from the certificate validity period
164 * @param validNotAfter The not-after date from the certificate validity period
174 * Creates a new SSL certificate object from an X509 certificate
197 * @return Not-before date from the certificate validity period or
205 * @return Not-before date from the certificate validity period in
216 * @return Not-after date from th
[all...]

Completed in 390 milliseconds

1234567