/external/chromium_org/tools/grit/grit/testdata/ |
del_footer.html | 5 <input onclick=deleting() type=submit value="Remove checked results" name=submit2>
|
/external/libpng/projects/cbuilder5/ |
zlib.readme.txt | 9 C++ Builder, please submit it to the zlib developers, not to the
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
FormType.java | 25 form, submit, cancel, result;
enum constant in enum:FormType
|
/frameworks/base/tests/TransitionTests/res/layout/ |
clipping_text_2.xml | 12 android:text="@string/submit"
|
fading_test_simple2.xml | 13 android:text="@string/submit"
|
/frameworks/support/v4/java/android/support/v4/widget/ |
SearchViewCompat.java | 42 void setQuery(View searchView, CharSequence query, boolean submit); 96 public void setQuery(View searchView, CharSequence query, boolean submit) { 189 public void setQuery(View searchView, CharSequence query, boolean submit) { 190 SearchViewCompatHoneycomb.setQuery(searchView, query, submit); 342 * keyboard or due to pressing a submit button. 344 * to indicate that it has handled the submit request. Otherwise return false to 417 * @param submit whether to submit the query right now or only update the contents of 420 public static void setQuery(View searchView, CharSequence query, boolean submit) { 421 IMPL.setQuery(searchView, query, submit); [all...] |
/external/chromium/chrome/browser/sync/resources/ |
setting_up.html | 31 input[type='submit'] { 36 html[os='mac'] input[type='submit'] {
|
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
offline.js | 17 $('submit-button').value = decodeURIComponent(params['stringSignIn']); 26 form.addEventListener('submit', function(e) {
|
offline.css | 126 input[type=submit].g-button { 133 *+html input[type=submit].g-button { 158 .g-button-submit { 169 .g-button-submit:hover { 177 .g-button-submit:active { 181 .g-button-submit:visited { 184 .g-button-submit:focus { 188 .g-button-submit:focus:hover { 248 .signin-box input[type=submit] {
|
/external/chromium_org/chrome/installer/setup/eula/ |
oem_ar.html | 43 <input type="submit" name="submit" value="???? ??????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="?????" />
|
oem_bg.html | 43 <input type="submit" name="submit" value="??????? ? ??????????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="?????" />
|
oem_hi.html | 43 <input type="submit" name="submit" value="??????? ???? ?? ?????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="???? ????" />
|
oem_iw.html | 43 <input type="submit" name="submit" value="??? ?????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="???" />
|
oem_ja.html | 43 <input type="submit" name="submit" value="?????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="?????" />
|
oem_ko.html | 43 <input type="submit" name="submit" value="?? ? ??" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="??" />
|
oem_ru.html | 43 <input type="submit" name="submit" value="??????? ??????? ? ?????????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="??????" />
|
oem_sr.html | 43 <input type="submit" name="submit" value="???????? ? ??????????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="??????" />
|
oem_th.html | 43 <input type="submit" name="submit" value="?????????????????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="??????" />
|
oem_uk.html | 43 <input type="submit" name="submit" value="???????? ?? ?????????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="?????????" />
|
oem_zh-CN.html | 43 <input type="submit" name="submit" value="?????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="??" />
|
oem_zh-TW.html | 43 <input type="submit" name="submit" value="?????" /> <input onClick="window.returnValue = 2; window.close();" type="button" name="cancel" value="??" />
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/ |
RobolectricBackgroundExecutorServiceTest.java | 47 Future<String> future = executorService.submit(runnable, "foo"); 61 Future<String> future = executorService.submit(new Callable<String>() {
|
/external/chromium_org/chrome/browser/resources/net_internals/ |
hsts_view.js | 38 form.addEventListener('submit', this.onSubmitAdd_.bind(this), false); 41 form.addEventListener('submit', this.onSubmitDelete_.bind(this), false); 44 form.addEventListener('submit', this.onSubmitQuery_.bind(this), false); 60 HSTSView.ADD_SUBMIT_ID = 'hsts-view-add-submit'; 63 HSTSView.DELETE_SUBMIT_ID = 'hsts-view-delete-submit'; 67 HSTSView.QUERY_SUBMIT_ID = 'hsts-view-query-submit';
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractListeningExecutorService.java | 33 * method. More concretely, the {@code submit}, {@code invokeAny} and {@code invokeAll} methods 42 @Override public ListenableFuture<?> submit(Runnable task) { method in class:AbstractListeningExecutorService 48 @Override public <T> ListenableFuture<T> submit(Runnable task, T result) { method in class:AbstractListeningExecutorService 54 @Override public <T> ListenableFuture<T> submit(Callable<T> task) { method in class:AbstractListeningExecutorService 84 futures.add(ecs.submit(it.next())); 93 futures.add(ecs.submit(it.next()));
|
/libcore/luni/src/main/java/java/util/concurrent/ |
AbstractExecutorService.java | 12 * execution methods. This class implements the {@code submit}, 16 * the implementation of {@code submit(Runnable)} creates an 78 public Future<?> submit(Runnable task) { method in class:AbstractExecutorService 89 public <T> Future<T> submit(Runnable task, T result) { method in class:AbstractExecutorService 100 public <T> Future<T> submit(Callable<T> task) { method in class:AbstractExecutorService 136 futures.add(ecs.submit(it.next())); 145 futures.add(ecs.submit(it.next()));
|