Searched refs:level (Results 1 - 25 of 349) sorted by relevance

1234567891011>>

/frameworks/data-binding/integration-tests/TestApp/app/src/androidTest/java/android/databinding/library/
H A DDataBinderTrojan.java23 public static void setBuildSdkInt(int level) { argument
24 ViewDataBinding.SDK_INT = level;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode_inline.h25 Int idx, run, level, j; local
48 level = dataBlock[j];
51 if (level < 0)
53 RLB->level[idx] = -level;
61 RLB->level[idx] = level;
85 level = dataBlock[j];
88 if (level < 0)
90 RLB->level[id
116 Int idx, run, level, j; local
139 ldrsh level, [dataBlock, run] /* load data */ local
181 ldrsh level, [dataBlock, run] /* load data */ local
230 Int idx, run, level = 0, j; local
[all...]
H A Dvlc_encode.cpp142 Int PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
143 Int PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream);
144 Int PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream);
145 Int PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream);
154 Int PutCoeff_Inter_RVLC(Int run, Int level, BitstreamEncVideo *bitstream);
155 Int PutCoeff_Inter_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream);
156 Int PutCoeff_Intra_RVLC(Int run, Int level, BitstreamEncVideo *bitstream);
157 Int PutCoeff_Intra_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream);
159 Int PutRunCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream);
160 Int PutRunCoeff_Inter_Last(Int run, Int level, BitstreamEncVide
291 PutCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream) argument
311 PutCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
333 PutCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream) argument
365 PutCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
393 PutCoeff_Inter_RVLC(Int run, Int level, BitstreamEncVideo *bitstream) argument
449 PutCoeff_Inter_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
483 PutCoeff_Intra_RVLC(Int run, Int level, BitstreamEncVideo *bitstream) argument
545 PutCoeff_Intra_RVLC_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
580 PutRunCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream) argument
609 PutRunCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
638 PutRunCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream) argument
688 PutRunCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
729 PutLevelCoeff_Inter(Int run, Int level, BitstreamEncVideo *bitstream) argument
756 PutLevelCoeff_Inter_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
783 PutLevelCoeff_Intra(Int run, Int level, BitstreamEncVideo *bitstream) argument
829 PutLevelCoeff_Intra_Last(Int run, Int level, BitstreamEncVideo *bitstream) argument
1436 Int level; local
1509 Int level; local
1578 Int level; local
1792 Int level; local
[all...]
H A Dvlc_encode.h24 Int PutCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
25 Int PutCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
33 Int PutCoeff_Inter_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
34 Int PutCoeff_Intra_RVLC(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
35 Int PutRunCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
36 Int PutRunCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
37 Int PutLevelCoeff_Inter(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
38 Int PutLevelCoeff_Intra(Int run, Int level, Int last, BitstreamEncVideo *bitstream);
/frameworks/base/core/java/android/content/
H A DComponentCallbacks2.java69 * fallback that's roughly equivalent to the {@link ComponentCallbacks2#TRIM_MEMORY_COMPLETE} level.
149 * should never compare to exact values of the level, since new intermediate
151 * is greater or equal to a level you are interested in.
153 * <p>To retrieve the processes current trim level at any point, you can
157 * @param level The context of the trim, giving a hint of the amount of
164 void onTrimMemory(int level); argument
/frameworks/base/core/java/android/content/pm/
H A DPermissionInfo.java45 * System-level value for {@link #protectionLevel}, corresponding
133 * The level of access this permission is protecting, as per
191 public static int fixProtectionLevel(int level) { argument
192 if (level == PROTECTION_SIGNATURE_OR_SYSTEM) {
193 level = PROTECTION_SIGNATURE | PROTECTION_FLAG_PRIVILEGED;
195 return level;
199 public static String protectionToString(int level) { argument
201 switch (level&PROTECTION_MASK_BASE) {
215 if ((level&PermissionInfo.PROTECTION_FLAG_PRIVILEGED) != 0) {
218 if ((level
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrengthWcdma.java104 * Get signal level as an int from 0..4
108 int level;
115 if (asu <= 2 || asu == 99) level = SIGNAL_STRENGTH_NONE_OR_UNKNOWN;
116 else if (asu >= WCDMA_SIGNAL_STRENGTH_GREAT) level = SIGNAL_STRENGTH_GREAT;
117 else if (asu >= WCDMA_SIGNAL_STRENGTH_GOOD) level = SIGNAL_STRENGTH_GOOD;
118 else if (asu >= WCDMA_SIGNAL_STRENGTH_MODERATE) level = SIGNAL_STRENGTH_MODERATE;
119 else level = SIGNAL_STRENGTH_POOR;
120 if (DBG) log("getLevel=" + level);
121 return level;
131 int level
[all...]
H A DCellSignalStrengthGsm.java123 * Get signal level as an int from 0..4
127 int level;
134 if (asu <= 2 || asu == 99) level = SIGNAL_STRENGTH_NONE_OR_UNKNOWN;
135 else if (asu >= GSM_SIGNAL_STRENGTH_GREAT) level = SIGNAL_STRENGTH_GREAT;
136 else if (asu >= GSM_SIGNAL_STRENGTH_GOOD) level = SIGNAL_STRENGTH_GOOD;
137 else if (asu >= GSM_SIGNAL_STRENGTH_MODERATE) level = SIGNAL_STRENGTH_MODERATE;
138 else level = SIGNAL_STRENGTH_POOR;
139 if (DBG) log("getLevel=" + level);
140 return level;
150 int level
[all...]
H A DSignalStrength.java498 * Retrieve an abstract level value for the overall signal strength.
506 int level = 0;
509 level = getLteLevel();
510 if (level == SIGNAL_STRENGTH_NONE_OR_UNKNOWN) {
511 level = getTdScdmaLevel();
512 if (level == SIGNAL_STRENGTH_NONE_OR_UNKNOWN) {
513 level = getGsmLevel();
521 level = cdmaLevel;
524 level = evdoLevel;
526 /* We know both, use the lowest level */
[all...]
H A DCellSignalStrengthCdma.java116 * Get signal level as an int from 0..4
120 int level;
126 level = getCdmaLevel();
129 level = getEvdoLevel();
131 /* We know both, use the lowest level */
132 level = cdmaLevel < evdoLevel ? cdmaLevel : evdoLevel;
134 if (DBG) log("getLevel=" + level);
135 return level;
139 * Get the signal level as an asu value between 0..97, 99 is unknown
165 int level
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLUtils.java93 * @param level
98 public static void texImage2D(int target, int level, int internalformat, argument
106 if (native_texImage2D(target, level, internalformat, bitmap, -1, border)!=0) {
118 * @param level
124 public static void texImage2D(int target, int level, int internalformat, argument
132 if (native_texImage2D(target, level, internalformat, bitmap, type, border)!=0) {
142 * @param level
146 public static void texImage2D(int target, int level, Bitmap bitmap, argument
154 if (native_texImage2D(target, level, -1, bitmap, -1, border)!=0) {
176 * @param level
181 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap) argument
206 texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
266 native_texImage2D(int target, int level, int internalformat, Bitmap bitmap, int type, int border) argument
268 native_texSubImage2D(int target, int level, int xoffset, int yoffset, Bitmap bitmap, int format, int type) argument
[all...]
/frameworks/base/libs/hwui/
H A DOpDumper.h28 static void dump(const RecordedOp& op, std::ostream& output, int level = 0);
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Constructed.java30 private void toString(int level, StringBuilder sb) { argument
31 sb.append(indent(level)).append(super.toString()).append(":\n");
34 ((Asn1Constructed) child).toString(level + 1, sb);
36 sb.append(indent(level + 1)).append(child.toString()).append('\n');
41 public static String indent(int level) { argument
42 char[] indent = new char[level * 2];
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaticShadowHelper.java38 public void setShadowFocusLevel(Object impl, float level); argument
60 public void setShadowFocusLevel(Object impl, float level) { argument
83 public void setShadowFocusLevel(Object impl, float level) { argument
84 ShadowHelperJbmr2.setShadowFocusLevel(impl, level);
117 public void setShadowFocusLevel(Object impl, float level) { argument
118 mImpl.setShadowFocusLevel(impl, level);
H A DShadowHelper.java36 public void setShadowFocusLevel(Object impl, float level); argument
54 public void setShadowFocusLevel(Object impl, float level) { argument
79 public void setShadowFocusLevel(Object impl, float level) { argument
80 ShadowHelperApi21.setShadowFocusLevel(impl, level);
114 public void setShadowFocusLevel(Object impl, float level) { argument
115 mImpl.setShadowFocusLevel(impl, level);
/frameworks/base/core/java/android/text/
H A DAndroidBidi.java72 int level = levels[i];
73 if (level != curLevel) {
74 curLevel = level;
120 int level = levels[i];
121 if (level != curLevel) {
122 curLevel = level;
123 if (level > maxLevel) {
124 maxLevel = level;
125 } else if (level < minLevel) {
126 minLevel = level;
[all...]
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java40 * <th>logger level</th>
41 * <th>Android level</th>
126 int level = getAndroidLevel(record.getLevel());
128 if (!Log.isLoggable(tag, level)) {
134 Log.println(level, tag, message);
140 public void publish(Logger source, String tag, Level level, String message) { argument
142 int priority = getAndroidLevel(level);
155 * Converts a {@link java.util.logging.Logger} logging level into an Android one.
157 * @param level The {@link java.util.logging.Logger} logging level
161 getAndroidLevel(Level level) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DarmVCM4P2_CheckVLCEscapeMode.c42 * Performs escape mode decision based on the run, run+, level, level+ and
49 * [in] level Level value (non-zero value) to be encoded
52 * levelPlus = sign(level)*[abs(level) - LMAX]
55 * The run value after which level
74 OMX_S16 level,
84 level = armAbs (level);
87 /* Check for a valid entry with run, level an
71 armVCM4P2_CheckVLCEscapeMode( OMX_U32 run, OMX_U32 runPlus, OMX_S16 level, OMX_S16 levelPlus, OMX_U8 maxStoreRun, OMX_U8 maxRunForMultipleEntries, OMX_INT shortVideoHeader, const OMX_U8 *pRunIndexTable ) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dvlc_decode.cpp874 pTcoef->level = (int) tab->level; //tab->val & 255;
879 if (tab->level != 0xFF)
884 //if (((tab->run<<8)|(tab->level)|(tab->last<<16)) == VLC_ESCAPE_CODE)
888 /* first escape mode. level is offset */
921 pTcoef->level = (int)tab->level; //tab->val & 255;
925 /* need to add back the max level */
930 pTcoef->level = pTcoef->level
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DGradientDrawable_Delegate.java42 int level = thisDrawable.getLevel();
43 // 10000 is the max level. See android.graphics.drawable.Drawable#getLevel()
44 float sweep = useLevel ? (360.0f * level / 10000.0f) : 360f;
66 mLevel.setInt(thisDrawable, level);
/frameworks/wilhelm/src/android/
H A Dandroid_sles_conversions.h83 static inline float sles_to_android_amplification(SLmillibel level) { argument
85 return pow(10, (float)level/2000);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DColorFilterCache.java62 * Returns a ColorFilter for a given alpha level between 0 and 1.0.
64 * @param level The alpha level the filter should apply.
65 * @return A ColorFilter at the alpha level for the color represented by the
68 public ColorFilter getFilterForLevel(float level) { argument
69 if (level >= 0 && level <= 1.0) {
70 int filterIndex = (int) (0xFF * level);
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.h42 unsigned char profile, level; member in struct:android::VideoFormats::config_t
74 ProfileType profile, LevelType level);
83 ProfileType profile, LevelType level);
87 ProfileType *profile, LevelType *level) const;
95 ProfileType profile, LevelType level,
/frameworks/base/core/tests/coretests/src/android/os/
H A DTraceTest.java158 private int dMethod(int level) { argument
160 if (level > 0) {
161 count = dMethod(level - 1);
166 if (level == 0) {
169 return dMethod(level - 1);
188 public int gMethod(int level) { argument
190 int count = level;
191 if (level > 1)
192 count += gMethod(level - 1);
/frameworks/base/tools/aapt/
H A DSourcePos.cpp22 Level level; member in struct:ErrorPos
26 ErrorPos(const String8& file, int line, const String8& error, Level level);
35 :line(-1), level(NOTE)
43 level(that.level)
51 level(lev)
61 this->level = rhs.level;
69 switch (level) {

Completed in 6113 milliseconds

1234567891011>>