Searched defs:pattern (Results 1 - 19 of 19) sorted by relevance

/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_EncodeVLCZigzag_Inter.c43 * pattern - block pattern which is used to decide whether this block is
70 OMX_U8 pattern,
84 if (pattern)
66 omxVCM4P2_EncodeVLCZigzag_Inter( OMX_U8 **ppBitStream, OMX_INT * pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_U8 pattern, OMX_INT shortVideoHeader ) argument
H A DomxVCM4P2_EncodeVLCZigzag_IntraACVLC.c42 * scan pattern; takes one of the following values:
49 * pattern - block pattern which is used to decide whether this block is
81 OMX_U8 pattern,
92 pattern,
76 omxVCM4P2_EncodeVLCZigzag_IntraACVLC( OMX_U8 **ppBitStream, OMX_INT *pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_U8 predDir, OMX_U8 pattern, OMX_INT shortVideoHeader ) argument
H A DarmVCM4P2_EncodeVLCZigzag_intra.c45 * the zigzag scan pattern. This takes one of the
56 * [in] pattern block pattern which is used to decide whether
77 OMX_U8 pattern,
94 if (pattern)
72 armVCM4P2_EncodeVLCZigzag_Intra( OMX_U8 **ppBitStream, OMX_INT *pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_U8 predDir, OMX_U8 pattern, OMX_INT shortVideoHeader, OMX_U8 start ) argument
H A DomxVCM4P2_EncodeVLCZigzag_IntraDCVLC.c47 * scan pattern; takes one of the following values:
54 * pattern - block pattern which is used to decide whether this block is
88 OMX_U8 pattern,
106 if (pattern)
155 pattern,
83 omxVCM4P2_EncodeVLCZigzag_IntraDCVLC( OMX_U8 **ppBitStream, OMX_INT *pBitOffset, const OMX_S16 *pQDctBlkCoef, OMX_U8 predDir, OMX_U8 pattern, OMX_INT shortVideoHeader, OMXVCM4P2VideoComponent videoComp ) argument
/frameworks/base/core/java/android/os/
H A DVibrator.java76 * Vibrate with a given pattern.
85 * To cause the pattern to repeat, pass the index into the pattern array at which
89 * @param pattern an array of longs of times for which to turn the vibrator on or off.
90 * @param repeat the index into pattern at which to repeat, or -1 if
93 public void vibrate(long[] pattern, int repeat) argument
99 // catch this here because the server will do nothing. pattern may
102 if (repeat < pattern.length) {
104 mService.vibratePattern(pattern, repeat, mToken);
H A DPatternMatcher.java20 * A simple pattern matcher, which is safe to use on untrusted data: it does
26 * Pattern type: the given pattern must exactly match the string it is
32 * Pattern type: the given pattern must match the
38 * Pattern type: the given pattern is interpreted with a
51 public PatternMatcher(String pattern, int type) { argument
52 mPattern = pattern;
109 static boolean matchPattern(String pattern, String match, int type) { argument
112 return pattern.equals(match);
114 return match.startsWith(pattern);
119 final int NP = pattern
[all...]
/frameworks/base/core/java/android/content/pm/
H A DPathPermission.java31 public PathPermission(String pattern, int type, String readPermission, argument
33 super(pattern, type);
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java206 * Split this encoded string around matches of the given pattern.
208 * @param pattern the delimiting pattern
210 * string around matches of the given pattern
212 public EncodedStringValue[] split(String pattern) { argument
213 String[] temp = getString().split(pattern);
/frameworks/base/core/java/android/text/util/
H A DLinkify.java44 * Alone with the pattern that is to be matched, a url scheme prefix is also
45 * required. Any pattern match that does not begin with the supplied scheme
48 * the scheme <code>http://</code>. If the pattern matches example.com, which
149 * support@example.com. So, when matching against a web url pattern you
155 * Examines the character span matched by the pattern and determines
158 * @param s The body of text against which the pattern
161 * matched by the pattern - inclusive
297 * @param pattern Regex pattern to be used for finding links
302 public static final void addLinks(TextView text, Pattern pattern, Strin argument
342 addLinks(Spannable text, Pattern pattern, String scheme) argument
424 gatherLinks(ArrayList<LinkSpec> links, Spannable s, Pattern pattern, String[] schemes, MatchFilter matchFilter, TransformFilter transformFilter) argument
[all...]
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dbitstream.cpp562 /* Modified : 12/18/2000 : changed the pattern type to uint */
568 uint pattern; local
572 BitstreamShowBits16(stream, n_stuffed, &pattern);
573 if (pattern == msk[n_stuffed-1]) return PV_TRUE;
580 uint pattern; local
588 BitstreamShowBits16(stream, n_stuffed, &pattern);
589 if (pattern == 0) return PV_TRUE;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPatternUnlockScreen.java47 // how long before we clear the wrong pattern
68 * whether there is a fallback option available when the pattern is forgotten.
78 * poke it when the user starts drawing the pattern.
84 * Useful for clearing out the wrong pattern after a delay
134 * @param lockPatternUtils Used to lookup lock pattern settings.
139 * their pattern (e.g they have a google account so we can show them the account based
183 // lock pattern view.
209 // as long as the user is entering a pattern (i.e sending a touch
271 // reset lock pattern
276 // show "forgot pattern
330 onPatternCellAdded(List<Cell> pattern) argument
341 onPatternDetected(List<LockPatternView.Cell> pattern) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DVibratorService.java57 Vibration(IBinder token, long[] pattern, int repeat, int uid) { argument
58 this(token, 0, pattern, repeat, uid);
61 private Vibration(IBinder token, long millis, long[] pattern, argument
66 mPattern = pattern;
83 // This is a pattern, return false to play the simple
127 // either a timeout of > 0 or a non-null pattern.
143 private boolean isAll0(long[] pattern) { argument
144 int N = pattern.length;
146 if (pattern[i] != 0) {
153 public void vibratePattern(long[] pattern, in argument
[all...]
/frameworks/compile/libbcc/tests/
H A Ddisassem.cpp108 u_int pattern; member in struct:arm32_insn
317 if ((insn & i_ptr->mask) == i_ptr->pattern) {
/frameworks/base/core/java/android/app/
H A DNotification.java189 * The pattern with which to vibrate.
192 * To vibrate the default pattern, see {@link #defaults}.
856 * Set the vibration pattern to use.
858 * @see android.os.Vibrator for a discussion of the <code>pattern</code>
861 public Builder setVibrate(long[] pattern) { argument
862 mVibrate = pattern;
/frameworks/base/core/java/android/text/
H A DTextUtils.java331 * Splits a string on a pattern. String.split() returns [''] when the string to be
334 * @param pattern the regular expression to match
339 public static String[] split(String text, Pattern pattern) { argument
343 return pattern.split(text, -1);
/frameworks/base/core/java/com/android/internal/widget/
H A DLockPatternUtils.java54 * Utilities for the lock pattern and its settings.
74 * method of verifying the user, and resetting their lock pattern.
80 * wrong pattern too many times.
97 * The minimum number of dots in a valid pattern.
102 * The minimum number of dots the user must include in a wrong pattern
142 Log.d(TAG, "lock pattern file changed");
239 * Check to see if a pattern matches the saved pattern. If no pattern exists,
241 * @param pattern Th
244 checkPattern(List<LockPatternView.Cell> pattern) argument
433 saveLockPattern(List<LockPatternView.Cell> pattern) argument
464 saveLockPattern(List<LockPatternView.Cell> pattern, boolean isFallback) argument
724 patternToString(List<LockPatternView.Cell> pattern) argument
745 patternToHash(List<LockPatternView.Cell> pattern) argument
[all...]
H A DLockPatternView.java52 * Is also capable of displaying a static pattern in "in progress", "wrong" or
72 * How many milliseconds we spend animating each circle of a lock pattern
74 * constant * the length of the pattern to complete.
82 * Lookup table for the circles of the pattern we are currently drawing.
83 * This will be the cells of the complete pattern unless we are animating,
133 * Represents a cell in the 3 X 3 matrix of the unlock pattern view.
191 * How to display the current pattern.
196 * The pattern drawn is correct (i.e draw it in a friendly color)
201 * Animate the pattern (for demo, and help).
206 * The pattern i
230 onPatternCellAdded(List<Cell> pattern) argument
236 onPatternDetected(List<Cell> pattern) argument
344 setPattern(DisplayMode displayMode, List<Cell> pattern) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_server_BluetoothService.cpp421 jstring pattern, jint attr_id) {
429 const char *c_pattern = env->GetStringUTFChars(pattern, NULL);
431 LOGV("... pattern = %s", c_pattern);
439 env->ReleaseStringUTFChars(pattern, c_pattern);
937 jstring path, jstring pattern) {
947 const char *c_pattern = env->GetStringUTFChars(pattern, NULL);
965 env->ReleaseStringUTFChars(pattern, c_pattern);
419 getDeviceServiceChannelNative(JNIEnv *env, jobject object, jstring path, jstring pattern, jint attr_id) argument
936 discoverServicesNative(JNIEnv *env, jobject object, jstring path, jstring pattern) argument
/frameworks/base/core/java/android/server/
H A DBluetoothService.java2825 /*package*/ native boolean discoverServicesNative(String objectPath, String pattern); argument

Completed in 542 milliseconds