Home
last modified time | relevance | path

Searched refs:input (Results 1 – 25 of 31) sorted by relevance

12

/development/ndk/platforms/android-9/arch-x86/include/asm/
Dalternative_32.h37input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" "… argument
39input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" "… argument
/development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
DSampleSpellCheckerService.java64 final String input = textInfo.getText(); in onGetSuggestions() local
65 final int length = input.length(); in onGetSuggestions()
72 new String[] {"aaa", "bbb", "Candidate for " + input, mLocale}); in onGetSuggestions()
100 final String input = ti.getText(); in onGetSentenceSuggestionsMultiple() local
101 final int length = input.length(); in onGetSentenceSuggestionsMultiple()
105 if (input.equalsIgnoreCase("I wold like to here form you")) { in onGetSentenceSuggestionsMultiple()
128 new String[] {"aaa", "bbb", "Candidate for " + input, mLocale}); in onGetSentenceSuggestionsMultiple()
/development/ndk/samples/hello-neon/jni/
Dhelloneon-intrinsics.c24 fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, int k… in fir_filter_neon_intrinsics() argument
36 int16x4_t input_vec = vld1_s16(input + (nn+offset+mm*4)); in fir_filter_neon_intrinsics()
48 sum += kernel[mm] * input[nn+offset+mm]; in fir_filter_neon_intrinsics()
59 sum += kernel[mm]*input[nn+offset+mm]; in fir_filter_neon_intrinsics()
Dhelloneon-intrinsics.h20 void fir_filter_neon_intrinsics(short *output, const short* input, const short* kernel, int width, …
Dhelloneon.c45 fir_filter_c(short *output, const short* input, const short* kernel, int width, int kernelSize) in fir_filter_c() argument
53 sum += kernel[mm]*input[nn+offset+mm]; in fir_filter_c()
/development/samples/training/notify-user/src/com/example/android/pingme/
DMainActivity.java56 String input = editText.getText().toString(); in onPingClick() local
58 if(input == null || input.trim().equals("")){ in onPingClick()
62 seconds = Integer.parseInt(input); in onPingClick()
/development/samples/BrowserPlugin/jni/form/
DFormPlugin.cpp163 ANPPaint* FormPlugin::getPaint(TextInput* input) { in getPaint() argument
164 return (input == m_activeInput) ? m_paintActive : m_paintInput; in getPaint()
331 void FormPlugin::handleTextInput(TextInput* input, ANPKeyCode keyCode, int32_t unichar) { in handleTextInput() argument
335 scrollIntoView(input); in handleTextInput()
339 if (input->charPtr > 0) { in handleTextInput()
340 input->charPtr--; in handleTextInput()
346 if (input->charPtr >= (sizeof(input->text) - 1)) in handleTextInput()
350 input->text[input->charPtr] = static_cast<char>(unichar); in handleTextInput()
351 input->charPtr++; in handleTextInput()
356 void FormPlugin::scrollIntoView(TextInput* input) { in scrollIntoView() argument
[all …]
DFormPlugin.h63 void handleTextInput(TextInput* input, ANPKeyCode keyCode, int32_t unichar);
64 void scrollIntoView(TextInput* input);
65 void switchActiveInput(TextInput* input);
/development/samples/TtsEngine/src/com/example/android/ttsengine/
DRobotSpeakTtsService.java200 private static char normalize(char input) { in normalize() argument
201 if (input == ' ') { in normalize()
202 return input; in normalize()
205 if (input < 'a') { in normalize()
208 if (input > 'z') { in normalize()
212 return input; in normalize()
DCheckVoiceData.java116 private boolean isLanguageSupported(String input) { in isLanguageSupported() argument
118 if (lang.equals(input)) { in isLanguageSupported()
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
DMainActivity.java101 final EditText input = new EditText(this); in showUrlDialog() local
102 alertBuilder.setView(input); in showUrlDialog()
104 input.setText(SUGGESTED_URL); in showUrlDialog()
111 Uri uri = Uri.parse(input.getText().toString()); in showUrlDialog()
/development/apps/GestureBuilder/src/com/android/gesture/builder/
DCreateGestureActivity.java80 final TextView input = (TextView) findViewById(R.id.gesture_name); in addGesture() local
81 final CharSequence name = input.getText(); in addGesture()
83 input.setError(getString(R.string.error_missing_name)); in addGesture()
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DCompressedTextureActivity.java92 InputStream input = getResources().openRawResource(R.raw.androids); in load() local
95 GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, input); in load()
100 input.close(); in load()
/development/samples/training/NsdChat/src/com/example/android/nsdchat/
DChatConnection.java229 BufferedReader input; in run() local
231 input = new BufferedReader(new InputStreamReader( in run()
236 messageStr = input.readLine(); in run()
245 input.close(); in run()
/development/cmds/monkey/
DREADME.NETWORK.txt5 into the input system. The idea is that a process will run on a host
49 This command injects KeyEvent's into the input system. The keycode
63 This command injects a MotionEvent into the input system that
73 This command injects a MotionEvent into the input system that
84 This command will wake the device up from sleep and allow user input.
/development/cmds/monkey/src/com/android/commands/monkey/
DMonkeyGetFrameRateEvent.java100 private String getNumberOfFrames(String input){ in getNumberOfFrames() argument
102 Matcher m = NO_OF_FRAMES_PATTERN.matcher(input); in getNumberOfFrames()
DMonkeySourceNetwork.java549 private BufferedReader input; field in MonkeySourceNetwork
581 input = new BufferedReader(new InputStreamReader(clientSocket.getInputStream())); in startServer()
591 input.close(); in stopServer()
603 private static String replaceQuotedChars(String input) { in replaceQuotedChars() argument
604 return input.replace("\\\"", "\""); in replaceQuotedChars()
715 String command = input.readLine(); in getNextEvent()
DMonkeyKeyEvent.java20 import android.hardware.input.InputManager;
DMonkeySourceScript.java625 String input = args[0]; in handleEvent() local
626 String cmd = "input text " + input; in handleEvent()
639 String input = args[0]; in handleEvent() local
640 MonkeyGetFrameRateEvent e = new MonkeyGetFrameRateEvent("end", input); in handleEvent()
DMonkeyMotionEvent.java20 import android.hardware.input.InputManager;
/development/samples/Wiktionary/src/com/example/android/wiktionary/
DExtendedWikiHelper.java147 public String apply(String input) { in apply() argument
148 Matcher m = mPattern.matcher(input); in apply()
/development/samples/BrowserPlugin/jni/navigation/
DNavigationPlugin.cpp162 ANPPaint* NavigationPlugin::getPaint(ANPRectF* input) { in getPaint() argument
163 return (input == m_activeNav) ? m_paintActive : m_paintDisabled; in getPaint()
/development/testrunner/
Drun_command.py107 output = pipe.communicate(input=stdin_input)[0]
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DXmlDocumentProvider.java348 private Pattern createPattern(String input) { in createPattern() argument
349 String pattern = input.replaceAll("//", "/(.*/|)").replaceAll("^/", "^/") + "$"; in createPattern()
/development/samples/BrowserPlugin/jni/audio/
DAudioPlugin.cpp271 ANPPaint* AudioPlugin::getPaint(ANPRectF* input) { in getPaint() argument
272 return (input == m_activeRect) ? m_paintActiveRect : m_paintRect; in getPaint()

12