Searched defs:weight (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/aacdec/
H A Dlong_term_prediction.cpp30 Description: 1. Passed in "weight_index" instead of "weight".
31 2. Added weight table.
122 y(n) = weight * x(n - delay)
126 weight ----- LTP coefficient
167 weight = codebook[weight_index];
193 *pPredicted_samples = weight * (*pBuffer);
234 *pPredicted_samples = weight * (*pBuffer);
323 /* Purpose: Codebook for LTP weight coefficients. Stored in Q15 format */
383 UInt weight; local
403 weight
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java124 // This cannot be done by a simple comparator since an Activity weight
185 * Attribute for the choice weight.
187 private static final String ATTRIBUTE_WEIGHT = "weight";
206 * Default weight for a choice record.
529 * historical record with weight high enough that this activity will
531 * will eventually change if not used. Also the weight of the record for
544 final float weight;
546 // Add a record with weight enough to boost the chosen at the top.
547 weight = oldDefaultActivity.weight
785 public final float weight; field in class:ActivityChooserModel.HistoricalRecord
794 HistoricalRecord(String activityName, long time, float weight) argument
805 HistoricalRecord(ComponentName activityName, long time, float weight) argument
874 public float weight; field in class:ActivityChooserModel.ActivityResolveInfo
[all...]
H A DLinearLayout.java40 * grow to fill up any remaining space in the layout by setting the <em>weight</em> member of
410 * When true, all children with a weight will be considered having
414 * @return True to measure children with a weight using the minimum
424 * When set to true, all children with a weight will be considered having
430 * @param enabled True to measure children with a weight using the
546 * @return A number greater than 0.0f if the weight sum is defined, or
547 * a number lower than or equals to 0.0f if not weight sum is
563 * to 0.0f if the weight sum should be computed from the children's
657 totalWeight += lp.weight;
659 if (heightMode == MeasureSpec.EXACTLY && lp.height == 0 && lp.weight >
1780 public float weight; field in class:LinearLayout.LayoutParams
1837 LayoutParams(int width, int height, float weight) argument
[all...]
/frameworks/base/core/java/android/speech/srec/
H A DRecognizer.java201 * @param weight weight to give the word. One is normal, 50 is low.
204 public void addWordToSlot(String slot, String word, String pron, int weight, String tag) { argument
205 SR_GrammarAddWordToSlot(mGrammar, slot, word, pron, weight, tag);
625 String ruleName, int weight);
664 String word, String pronunciation, int weight, String tag);
667 // const struct SR_Nametag_t* nametag, int weight, String tag);
624 SR_RecognizerActivateRule(int recognizer, int grammar, String ruleName, int weight) argument
663 SR_GrammarAddWordToSlot(int grammar, String slot, String word, String pronunciation, int weight, String tag) argument
/frameworks/base/core/java/android/hardware/
H A DCamera.java1488 * <p>Each Area consists of a rectangle specifying its bounds, and a weight
1496 * <p>The weight must range from 1 to 1000, and represents a weight for
1498 * the same weight as a smaller area will have more effect in the
1511 * Create an area with specified rectangle and weight.
1514 * @param weight the weight of the area.
1516 public Area(Rect rect, int weight) { argument
1518 this.weight = weight;
1563 public int weight; field in class:Camera.Area
[all...]

Completed in 85 milliseconds