HomeSort by relevance Sort by last modified time
    Searched full:recognize (Results 1 - 25 of 1030) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/gesture/
package.html 3 Provides classes to create, recognize, load and save gestures.
GestureLibrary.java 63 public ArrayList<Prediction> recognize(Gesture gesture) { method in class:GestureLibrary
64 return mStore.recognize(gesture);
  /external/srec/doc/logs/uapi/
run_voicetags1.log 27 recognize()
50 recognize()
74 recognize()
143 +recognize()
146 -recognize()
156 +recognize()
158 -recognize()
171 +recognize()
174 -recognize()
220 +recognize()
    [all...]
run_robustness1.log 22 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
26 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
41 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
46 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
60 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
65 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
79 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
84 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
98 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
103 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
    [all...]
run_robustness2.log 27 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
29 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
53 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
54 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
79 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
80 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
105 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
106 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
131 android.speech.recognition.test.contacts.CLRecognizer:+recognize()
132 android.speech.recognition.test.contacts.CLRecognizer:-recognize()
    [all...]
run_robustness3.log 47 +recognize()
49 -recognize()
70 +recognize()
72 -recognize()
171 +recognize()
174 -recognize()
194 +recognize()
196 -recognize()
295 +recognize()
298 -recognize()
    [all...]
  /external/clang/test/SemaCXX/
virtuals.cpp 21 // Needs to recognize that overridden function is virtual.
24 // Needs to recognize that function does not override.
28 // Needs to recognize invalid uses of abstract classes.
  /external/pcre/doc/
pcre_exec.3 39 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
40 PCRE_NEWLINE_ANYCRLF Recognize CR, LF, & CRLF as newline sequences
41 PCRE_NEWLINE_CR Recognize CR as the only newline sequence
42 PCRE_NEWLINE_CRLF Recognize CRLF as the only newline sequence
43 PCRE_NEWLINE_LF Recognize LF as the only newline sequence
pcre_dfa_exec.3 44 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
45 PCRE_NEWLINE_ANYCRLF Recognize CR, LF, & CRLF as newline sequences
46 PCRE_NEWLINE_CR Recognize CR as the only newline sequence
47 PCRE_NEWLINE_CRLF Recognize CRLF as the only newline sequence
48 PCRE_NEWLINE_LF Recognize LF as the only newline sequence
pcre_compile.3 47 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
48 PCRE_NEWLINE_ANYCRLF Recognize CR, LF, and CRLF as newline
pcre_compile2.3 51 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
52 PCRE_NEWLINE_ANYCRLF Recognize CR, LF, and CRLF as newline
  /external/jsr305/ri/src/main/java/javax/annotation/
Syntax.java 25 * Different tools will recognize different syntaxes, but some proposed
39 * should ignore any keys they don't recognize.
  /external/pcre/doc/html/
pcre_exec.html 50 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
51 PCRE_NEWLINE_ANYCRLF Recognize CR, LF, & CRLF as newline sequences
52 PCRE_NEWLINE_CR Recognize CR as the only newline sequence
53 PCRE_NEWLINE_CRLF Recognize CRLF as the only newline sequence
54 PCRE_NEWLINE_LF Recognize LF as the only newline sequence
pcre_dfa_exec.html 54 PCRE_NEWLINE_ANY Recognize any Unicode newline sequence
55 PCRE_NEWLINE_ANYCRLF Recognize CR, LF, & CRLF as newline sequences
56 PCRE_NEWLINE_CR Recognize CR as the only newline sequence
57 PCRE_NEWLINE_CRLF Recognize CRLF as the only newline sequence
58 PCRE_NEWLINE_LF Recognize LF as the only newline sequence
  /external/icu4c/layout/
LEGlyphFilter.h 16 * recognize a set of glyph indices.
  /external/kernel-headers/original/linux/
compiler-gcc.h 13 shouldn't recognize the original var, and make assumptions about it */
  /external/llvm/test/Transforms/LoopSimplify/
single-backedge.ll 2 ; for all loops. This allows the -indvars pass to recognize the %IV
  /external/srec/doc/logs/srec/
out_SHIP_set_get_param.txt 11 Recognize:
  /external/valgrind/main/memcheck/tests/
long_namespace_xml.cpp 27 // A function that returns p in such a way that gcc 4.5.x does not recognize
  /frameworks/base/docs/html/resources/articles/
gestures.jd 10 recognize simple actions, like a swipe, but it has been more
16 recognize gestures. This article will show you how you can use the
91 to try to recognize the gesture. In return, you will get a list of
99 ArrayList&lt;prediction&gt; predictions = mLibrary.recognize(gesture);
116 recognize pre-defined gestures (see the source code of the project
126 of other views. This can be useful to recognize gestures in a game or
159 whether we want to recognize gestures made of a single stroke or
182 ArrayList&lt;Prediction&gt; predictions = mLibrary.recognize(gesture);
210 addition. The gestures API does not even have to be used to recognize complex
211 shapes; it will work equally well to recognize simple swipes. We are ver
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureLibraryTest.java 65 public ArrayList<Prediction> recognize(Gesture gesture) { method in class:GestureLibraryTest.GestureLibraryFacade
66 return mGestureLibrary.recognize(gesture);
GestureStorageAccessor.java 42 ArrayList<Prediction> recognize(Gesture gesture); method in interface:GestureStorageAccessor
  /external/chromium/net/ftp/
ftp_server_type_histograms.h 16 // a server type we don't recognize, a security attack (when what we're
  /external/llvm/test/Transforms/InstCombine/
preserve-sminmax.ll 7 ; other analyses wouldn't recognize it.
  /ndk/sources/host-tools/sed-4.2.1/lib/
mbrlen.c 0 /* Recognize multibyte character.

Completed in 2154 milliseconds

1 2 3 4 5 6 7 8 91011>>