Searched defs:order (Results 1 - 22 of 22) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/exif/
H A DOrderedDataOutputStream.java32 public OrderedDataOutputStream setByteOrder(ByteOrder order) { argument
33 mByteBuffer.order(order);
H A DCountedDataInputStream.java91 public void setByteOrder(ByteOrder order) { argument
92 mByteBuffer.order(order);
96 return mByteBuffer.order();
H A DExifData.java51 ExifData(ByteOrder order) { argument
52 mByteOrder = order;
117 * Gets the byte order.
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DOrderedDataOutputStream.java32 public OrderedDataOutputStream setByteOrder(ByteOrder order) { argument
33 mByteBuffer.order(order);
H A DCountedDataInputStream.java91 public void setByteOrder(ByteOrder order) { argument
92 mByteBuffer.order(order);
96 return mByteBuffer.order();
H A DExifData.java51 ExifData(ByteOrder order) { argument
52 mByteOrder = order;
117 * Gets the byte order.
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DOrderedDataOutputStream.java32 public OrderedDataOutputStream setByteOrder(ByteOrder order) { argument
33 mByteBuffer.order(order);
H A DCountedDataInputStream.java95 public void setByteOrder(ByteOrder order) { argument
96 mByteBuffer.order(order);
100 return mByteBuffer.order();
H A DExifData.java52 ExifData(ByteOrder order) { argument
53 mByteOrder = order;
118 * Gets the byte order.
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DPercentageBarChart.java43 public final int order; field in class:PercentageBarChart.Entry
47 protected Entry(int order, float percentage, Paint paint) { argument
48 this.order = order;
55 return order - another.order;
150 public static Entry createEntry(int order, float percentage, int color) { argument
154 return new Entry(order, percentage, p);
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/
H A DUsbManagerFragment.java109 private PreferenceGroup createPreferenceCategory(int order, int titleId) { argument
112 preferenceGroup.setOrder(order);
/packages/apps/DeskClock/src/com/android/deskclock/data/
H A DWeekdays.java276 * @param order the order in which to present the weekdays
277 * @return the enabled weekdays in the given {@code order}
279 public String toString(Context context, Order order) { argument
280 return toString(context, order, false /* forceLongNames */);
285 * @param order the order in which to present the weekdays
286 * @return the enabled weekdays in the given {@code order} in a manner that
289 public String toAccessibilityString(Context context, Order order) { argument
290 return toString(context, order, tru
310 toString(Context context, Order order, boolean forceLongNames) argument
[all...]
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/exif/
H A DCountedDataInputStream.java96 void setByteOrder(ByteOrder order) { argument
97 mByteBuffer.order(order);
101 return mByteBuffer.order();
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Dieee754.h50 static unsigned EffectiveSignificandSize(int order) { argument
51 if (order >= -1021)
53 else if (order <= -1074)
56 return (unsigned)order + 1074;
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
H A DMtpDeviceIndex.java22 * order, and the items within the buckets sorted by the date they are taken.
32 * The data can also be accessed in descending order, in which case the list
238 * specified order
239 * @param order
241 * order
243 public Object get(int position, SortOrder order) { argument
248 if (order == SortOrder.ASCENDING) {
270 * include labels and is in the specified order
271 * @return position-th item in specified order, when not including labels
273 public IngestObjectInfo getWithoutLabels(int position, SortOrder order) { argument
292 getPositionFromPositionWithoutLabels(int position, SortOrder order) argument
334 getPositionWithoutLabelsFromPosition(int position, SortOrder order) argument
369 getFirstPositionForBucketNumber(int bucketNumber, SortOrder order) argument
386 getBucketNumberForPosition(int position, SortOrder order) argument
403 isFirstInBucket(int position, SortOrder order) argument
419 getBuckets(SortOrder order) argument
[all...]
/packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
H A DRatingsFragment.java175 private void updateDependentRatingItems(ContentRatingSystem.Order order, argument
180 int ratingOrderIndex = item.getRatingOrderIndex(order);
222 for (ContentRatingSystem.Order order : mContentRatingSystem.getOrders()) {
223 int orderIndex = order.getRatingIndex(mRating);
225 mOrders.add(order);
283 private int getRatingOrderIndex(ContentRatingSystem.Order order) { argument
284 int orderIndex = mOrders.indexOf(order);
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
H A DOpenWnnDictionaryImplJni.java87 * Constant about the sort order (for JNI native library)
94 * Constant about the sort order (for JNI native library)
222 * @param order The sort order (see "Constant about the sort order")
229 public static final native int searchWord(long work, int operation, int order, String keyString ); argument
H A DWnnDictionary.java74 /** Sort order (frequency in descending). */
76 /** Sort order (character code of key string in ascending). */
200 * result of prefix search is output by following order: "bbcd",
217 * @param order The sort order
226 public int searchWord(int operation, int order, String keyString ); argument
233 * the same as {@link #searchWord(int operation, int order, String keyString)}.
244 public int searchWord(int operation, int order, String keyString, WnnWord wnnWord ); argument
H A DOpenWnnDictionaryImpl.java83 " from " + TABLE_NAME_DIC + " where %s order by " +
93 " from " + TABLE_NAME_DIC + " where %s = ? and %s = ? and %s order by " +
415 * @param order The type of sort order
417 protected void createQuery( String keyString, WnnWord wnnWord, int operation, int order) { argument
495 switch( order ) {
535 public int searchWord( int operation, int order, String keyString ) { argument
544 createQuery( keyString, null, operation, order );
567 int ret = OpenWnnDictionaryImplJni.searchWord( this.mWnnWork, operation, order, keyString );
580 public int searchWord( int operation, int order, Strin argument
[all...]
/packages/apps/TV/src/com/android/tv/dvr/
H A DDvrScheduleManager.java520 * Returns the priority for a series recording by order of series recording priority.
522 * Higher order will have higher priority.
524 public static long suggestSeriesPriority(int order) { argument
525 return DEFAULT_SERIES_PRIORITY + order * PRIORITY_OFFSET;
540 * this program is going to be recorded, with their priorities in decending order.
591 * this channel is going to be recorded, with their priority in decending order.
842 // Sort by the same order as that in InputTaskScheduler.
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/
H A DOpenWnnDictionaryImplJni.c385 (JNIEnv *env, jobject obj, jlong wnnWork, jint operation, jint order, jstring keyString)
392 !( order == jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_ORDER_BY_FREQUENCY ||
393 order == jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_ORDER_BY_KEY ) ||
414 work->cursor.cond.mode = order;
384 Java_jp_co_omronsoft_openwnn_OpenWnnDictionaryImplJni_searchWord(JNIEnv *env, jobject obj, jlong wnnWork, jint operation, jint order, jstring keyString) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java522 // Indicate which sorting order shall be used for the
526 public String order; field in class:BluetoothPbapObexServer.AppParamValue
549 order = "";
563 + " needTag=" + needTag + " vcard21=" + vcard21 + " order=" + order
603 appParamValue.order = Byte.toString(appParam[i]);
1023 String orderPara = appParamValue.order.trim();
1025 // If order parameter is not set by PCE, set default value per spec.
1028 "Assume order by 'Indexed' by default");
1030 if (D) Log.d(TAG, "Order parameter is not supported: " + appParamValue.order);
[all...]

Completed in 584 milliseconds