Searched refs:from (Results 1 - 25 of 512) sorted by relevance

1234567891011>>

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DStrSegment.java31 public int from; field in class:StrSegment
64 * @param from The start position
67 public StrSegment(String str, int from, int to) { argument
69 this.from = from;
H A DStrSegmentClause.java32 * @param from The start position
35 public StrSegmentClause(WnnClause clause, int from, int to) { argument
36 super(clause.candidate, from, to);
H A DComposingText.java29 * {@link LetterConverter} and {@link WnnEngine} get the input string from it, and
87 tmp += "(" + ss.string + "," + ss.from + "," + ss.to + ")";
120 * @param from Convert range from
124 public String toString(int layer, int from, int to) { argument
129 for (int i = from; i <= to; i++) {
153 * @param mod_from Modified from
154 * @param mod_len Length after modified (# of StrSegments from {@code mod_from})
155 * @param org_len Length before modified (# of StrSegments from {@code mod_from})
181 last.string = toString(layer, last.from, las
308 replaceStrSegment0(int layer, StrSegment[] str, int from, int to) argument
359 deleteStrSegment(int layer, int from, int to) argument
435 deleteStrSegment0(int layer, int from, int to, int diff) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
H A DFloatAnimation.java25 public FloatAnimation(float from, float to, int duration) { argument
26 mFrom = from;
28 mCurrent = from;
H A DAlphaAnimation.java27 public AlphaAnimation(float from, float to) { argument
28 mStartAlpha = from;
30 mCurrentAlpha = from;
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DNotificationMgr.java36 public void cancelAllBetween(int from, int to) { argument
37 for (int i = from; i <= to; i++) {
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
H A Dnj_dic.h60 #define NJ_INT32_WRITE(to, from)\
61 {(to)[0]=(NJ_UINT8)(((from)>>24) & 0x000000ff);\
62 (to)[1]=(NJ_UINT8)(((from)>>16) & 0x000000ff);\
63 (to)[2]=(NJ_UINT8)(((from)>>8) & 0x000000ff);\
64 (to)[3]=(NJ_UINT8)((from) & 0x000000ff);}
66 #define NJ_INT16_WRITE(to, from)\
67 {(to)[0]=(NJ_UINT8)(((from)>>8) & 0x00ff);\
68 (to)[1]=(NJ_UINT8)((from) & 0x00ff);}
/packages/apps/Dialer/java/com/android/contacts/common/model/
H A DContact.java33 * about a contact can come from multiple data sources, which are each represented by a RawContact
75 * Small version of the contact photo loaded from a blob instead of from a file. If a large
153 public Contact(Uri requestedUri, Contact from) { argument
156 mStatus = from.mStatus;
157 mException = from.mException;
158 mLookupUri = from.mLookupUri;
159 mUri = from.mUri;
160 mDirectoryId = from.mDirectoryId;
161 mLookupKey = from
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DFunction.java21 * A transformation from one object to another. For example, a
38 * @since 2010.01.04 <b>stable</b> (imported from Google Collections Library)
47 * @param from the source object
50 T apply(F from); argument
H A DEscaper.java25 * "Foo&lt;Bar&gt;"} to prevent {@code "<Bar>"} from being confused with an XML tag. When the
94 public String apply(String from) {
95 return escape(from);
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContact.java40 * about a contact can come from multiple data sources, which are each represented by a RawContact
88 * Small version of the contact photo loaded from a blob instead of from a file. If a large
170 public Contact(Uri requestedUri, Contact from) { argument
173 mStatus = from.mStatus;
174 mException = from.mException;
175 mLookupUri = from.mLookupUri;
176 mUri = from.mUri;
177 mDirectoryId = from.mDirectoryId;
178 mLookupKey = from
[all...]
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
H A DShadowPackageMonitor.java19 import static org.robolectric.util.ReflectionHelpers.ClassParameter.from;
49 from(Context.class, context), from(Looper.class, thread),
50 from(UserHandle.class, user), from(Boolean.TYPE, externalStorage));
/packages/apps/Dialer/java/com/android/dialer/spam/
H A DSpamBindings.java90 * @param from Where in the dialer this was reported from. Must be one of {@link
99 ReportingLocation.Type from,
109 * @param from Where in the dialer this was reported from. Must be one of {@link
118 ReportingLocation.Type from,
128 * @param from Where in the dialer this was reported from. Must be one of {@link
137 ReportingLocation.Type from,
147 * @param from Wher
95 reportSpamFromAfterCallNotification( String number, String countryIso, int callType, ReportingLocation.Type from, ContactLookupResult.Type contactLookupResultType) argument
114 reportSpamFromCallHistory( String number, String countryIso, int callType, ReportingLocation.Type from, ContactSource.Type contactSourceType) argument
133 reportNotSpamFromAfterCallNotification( String number, String countryIso, int callType, ReportingLocation.Type from, ContactLookupResult.Type contactLookupResultType) argument
152 reportNotSpamFromCallHistory( String number, String countryIso, int callType, ReportingLocation.Type from, ContactSource.Type contactSourceType) argument
[all...]
H A DSpamBindingsStub.java86 ReportingLocation.Type from,
94 ReportingLocation.Type from,
102 ReportingLocation.Type from,
110 ReportingLocation.Type from,
82 reportSpamFromAfterCallNotification( String number, String countryIso, int callType, ReportingLocation.Type from, ContactLookupResult.Type contactLookupResultType) argument
90 reportSpamFromCallHistory( String number, String countryIso, int callType, ReportingLocation.Type from, ContactSource.Type contactSourceType) argument
98 reportNotSpamFromAfterCallNotification( String number, String countryIso, int callType, ReportingLocation.Type from, ContactLookupResult.Type contactLookupResultType) argument
106 reportNotSpamFromCallHistory( String number, String countryIso, int callType, ReportingLocation.Type from, ContactSource.Type contactSourceType) argument
/packages/apps/Dialer/java/com/android/incallui/answer/impl/answermethod/
H A DAnswerMethodHolder.java30 void onAnswerProgressUpdate(@FloatRange(from = -1f, to = 1f) float answerProgress);
/packages/apps/Dialer/java/com/android/incallui/answer/protocol/
H A DAnswerScreenDelegate.java41 * is called from the answer UI to animate the accept and reject action.
46 * @param progress float from -1 to 1. -1 is fully rejected, 1 is fully accepted, and 0 is neutral
48 void updateWindowBackgroundColor(@FloatRange(from = -1f, to = 1.0f) float progress);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSwipeableItemView.java40 public static SwipeableView from(View view) { method in class:SwipeableItemView.SwipeableView
/packages/apps/Launcher3/src/com/android/launcher3/util/
H A DIOUtils.java45 public static long copy(InputStream from, OutputStream to) throws IOException { argument
49 while ((r = from.read(buf)) != -1) {
/packages/apps/Camera2/src/com/android/camera/stats/
H A DCamera2FaceProxy.java23 * Wraps the Camera2 required class to insulate Kit-Kat devices from Camera2 API
35 public static Camera2FaceProxy from(Face face) { method in class:Camera2FaceProxy
/packages/apps/Settings/src/com/android/settings/datausage/
H A DDataUsageUtils.java43 ConnectivityManager connectivityManager = ConnectivityManager.from(context);
56 ConnectivityManager connectivityManager = ConnectivityManager.from(context);
65 SubscriptionManager subManager = SubscriptionManager.from(context);
86 TelephonyManager telephonyManager = TelephonyManager.from(context);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
H A DMatrixFit.java31 public MatrixFit(double[][] from, double[][] to) { argument
32 mValid = fit(from, to);
47 public boolean fit(double[][] from, double[][] to) { argument
48 if ((from.length != to.length) || (from.length < 1)) {
49 Log.e(LOGTAG, "from and to must be of same size");
53 mDimension = from[0].length;
56 if (from.length < mDimension) {
61 double[][] q = new double[from.length][mDimension];
62 for (int i = 0; i < from
[all...]
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenModeSettingsBase.java100 String id = NotificationManager.from(mContext).addAutomaticZenRule(rule);
102 NotificationManager.from(mContext).getAutomaticZenRule(id);
112 NotificationManager.from(mContext).updateAutomaticZenRule(id, rule);
119 NotificationManager.from(mContext).removeAutomaticZenRule(id);
135 NotificationManager.from(mContext).setZenMode(zenMode, conditionId, TAG);
140 = NotificationManager.from(mContext).getAutomaticZenRules();
/packages/apps/Camera2/src/com/android/camera/captureintent/state/
H A DStateBackgroundWithSurfaceTexture.java43 * Used to transition from StateOpeningCamera, StateStartingPreview and
46 public static StateBackgroundWithSurfaceTexture from( method in class:StateBackgroundWithSurfaceTexture
71 return Optional.of((State) StateForegroundWithSurfaceTexture.from(
84 return Optional.of((State) StateBackground.from(
H A DStateForegroundWithSurfaceTexture.java38 // Used to transition from BackgroundWithSurfaceTexture on module is resumed.
39 public static StateForegroundWithSurfaceTexture from( method in class:StateForegroundWithSurfaceTexture
73 return Optional.of((State) StateOpeningCamera.from(this, mResourceConstructed,
76 return Optional.of((State) StateFatal.from(this, mResourceConstructed));
H A DStateSavingPicture.java47 public static StateSavingPicture from( method in class:StateSavingPicture
90 return Optional.of((State) StateIntentCompleted.from(
101 return Optional.of((State) StateIntentCompleted.from(
105 return Optional.of((State) StateIntentCompleted.from(this, mResourceConstructed));

Completed in 705 milliseconds

1234567891011>>