HomeSort by relevance Sort by last modified time
    Searched full:submit (Results 501 - 525 of 1817) sorted by null

<<21222324252627282930>>

  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
Throttle.java 35 public static final boolean DEBUG = false; // Don't submit with true
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarReceiver.java 55 executor.submit(new Runnable() {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cgi.py 94 ("group_id=5470&set=custom&_assigned_to=31392&_status=1&_category=100&SUBMIT=Browse",
95 {'SUBMIT': ['Browse'],
253 Content-Disposition: form-data; name="submit"
263 {'name':'submit', 'filename':None, 'value':' Add '}]
test_MimeWriter.py 86 To: kss-submit@cnri.reston.va.us
205 toplevel.addheader("To", "kss-submit@cnri.reston.va.us")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cgi.py 94 ("group_id=5470&set=custom&_assigned_to=31392&_status=1&_category=100&SUBMIT=Browse",
95 {'SUBMIT': ['Browse'],
253 Content-Disposition: form-data; name="submit"
263 {'name':'submit', 'filename':None, 'value':' Add '}]
test_MimeWriter.py 86 To: kss-submit@cnri.reston.va.us
205 toplevel.addheader("To", "kss-submit@cnri.reston.va.us")
  /docs/source.android.com/src/source/
cla-individual.jd 58 <p>Should You wish to submit work that is not Your original creation, You may submit it to the Project Leads separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [named here]".<br></p></p>
  /external/ceres-solver/docs/source/
contributing.rst 27 We now describe how to set up your development environment and submit
58 the Gerrit pre-commit hook automatically. This pre-submit hook
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_impl.h 296 // Delays enabling submit button for a short period of time. Exposed for
300 // Ends the delay for enabling the submit button. Called only from tests.
498 // Accepts any pending legal documents now that the user has pressed Submit.
501 // Start the submit proccess to interact with Online Wallet (might do various
562 // Called when the delay for enabling the submit button ends.
694 // True after the user first accepts the dialog and presses "Submit". May
738 // dialog. Only applies to Wallet and is populated on submit.
741 // The timer that delays enabling submit button for a short period of time on
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/forms/
calendar-picker.html 85 <input type="submit" value="Submit">
  /external/eigen/test/
testsuite.cmake 34 # - EIGEN_NO_UPDATE: allows to submit dash boards from local repositories
35 # This might be interesting in case you want to submit dashboards
  /external/stlport/
INSTALL 102 - wait until somebody else will submit corresponding changes to be incorporated in next STLport
105 In case you do patch STLport, please submit your patches to
  /external/chromium/chrome/browser/autofill/
autofill_metrics_unittest.cc 218 form.action = GURL("http://example.com/submit.html");
348 form.action = GURL("http://example.com/submit.html");
460 form.action = GURL("http://example.com/submit.html");
596 form.action = GURL("http://example.com/submit.html");
632 form.action = GURL("http://example.com/submit.html");
770 form.action = GURL("http://example.com/submit.html");
    [all...]
  /frameworks/av/media/libstagefright/omx/
GraphicBufferSource.cpp 114 // rather than just submit the first buffer, to avoid a degenerate case:
115 // if all BQ buffers arrive before we start executing, and we only submit
118 // submit a single additional buffer, repeatedly, never using more than
119 // one codec buffer simultaneously. (We could instead try to submit
133 // submit, try to send EOS now as well.
537 // available, we *must* submit the EOS from here or we'll just
  /libcore/luni/src/main/java/java/util/concurrent/
Executors.java 592 public Future<?> submit(Runnable task) {
593 return e.submit(task);
595 public <T> Future<T> submit(Callable<T> task) {
596 return e.submit(task);
598 public <T> Future<T> submit(Runnable task, T result) {
599 return e.submit(task, result);
ScheduledThreadPoolExecutor.java 57 * {@link AbstractExecutorService#submit(Runnable) submit}
67 * {@code submit}, {@code schedule}, {@code scheduleAtFixedRate},
120 * otherwise override submit methods to get this effect. These
601 public Future<?> submit(Runnable task) { method in class:ScheduledThreadPoolExecutor
609 public <T> Future<T> submit(Runnable task, T result) { method in class:ScheduledThreadPoolExecutor
617 public <T> Future<T> submit(Callable<T> task) { method in class:ScheduledThreadPoolExecutor
    [all...]
  /frameworks/base/core/java/android/widget/
SearchView.java 66 * A widget that provides a user interface for the user to enter a search query and submit a request
180 * keyboard or due to pressing a submit button.
182 * to indicate that it has handled the submit request. Otherwise return false to
507 * @param submit whether to submit the query right now or only update the contents of
510 public void setQuery(CharSequence query, boolean submit) {
517 // If the query is not empty and submit is requested, submit the query
518 if (submit && !TextUtils.isEmpty(query)) {
614 * Enables showing a submit button when the query is non-empty. In cases where the SearchVie
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SearchView.java 75 * A widget that provides a user interface for the user to enter a search query and submit a request
193 * keyboard or due to pressing a submit button.
195 * to indicate that it has handled the submit request. Otherwise return false to
538 * @param submit whether to submit the query right now or only update the contents of
541 public void setQuery(CharSequence query, boolean submit) {
548 // If the query is not empty and submit is requested, submit the query
549 if (submit && !TextUtils.isEmpty(query)) {
645 * Enables showing a submit button when the query is non-empty. In cases where the SearchVie
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_metrics_unittest.cc 332 form.action = GURL("http://example.com/submit.html");
477 form.action = GURL("http://example.com/submit.html");
595 form.action = GURL("http://example.com/submit.html");
751 form.action = GURL("http://example.com/submit.html");
    [all...]
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 126 .textStartsWith("Submit"));
239 .textStartsWith("Submit"));
264 * presses submit. A dialog box should pop up with the time it took since
265 * reading the value until pressing submit.
284 getObjectByText("Submit").click();
318 new UiObject(new UiSelector().text("Submit")).click();
319 verifyDialogActionResults("Submit");
    [all...]
  /external/chromium_org/native_client_sdk/src/doc/community/security-contest/
contest-terms.rst 42 Participants may not submit an Exploit, Issue or Summary to the
72 Issue. Finally, the Participant will submit a Summary of up to his
81 Prizes will be awarded to those Participants who submit the best
178 Participant must submit in order to participate in the
290 1. Each Participant must submit:
295 in the "Issues" section below. Any team member can submit an
444 1. Every Participant must submit a Summary at the `Native Client
492 Closing Date. Participants may submit or resubmit their Summary
596 (#) the Quantity of Exploits: Participants that submit more
    [all...]
contest-faq.rst 47 Client issue tracker. You should not submit any bugs as part of your
58 exploits. Submit these bugs through our Native Client Issue Tracker as
61 contest, you will need to submit a summary with the top 10 exploits
141 5th, 2009. However, keep in mind that while you can submit bugs
199 members (if any) will need to submit to Google all necessary tax and
278 An exploit becomes an issue once you submit it through the Native
300 of issues that each participant can submit in his/her/their summary.
339 If the contest has not ended, you may submit an updated summary. You
340 may not submit an updated summary once the contest has ended.
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
app_codelab3_mvc.html 113 button, input[type=submit] {
248 form.addEventListener('submit', function(e) {
350 &lt;form ng-submit=&quot;addTodo()&quot;&gt;
353 &lt;input class=&quot;btn-primary&quot; type=&quot;submit&quot; value=&quot;add&quot;&gt;
377 &lt;input class=&quot;btn-primary&quot; type=&quot;submit&quot; value=&quot;add&quot;&gt;
  /external/chromium_org/chrome/renderer/autofill/
password_autofill_agent_browsertest.cc 54 " <INPUT type='submit' value='Login'/>"
113 " <input type='submit' value='Login'/>"
336 " <INPUT type='submit' value='Login'/>"
441 " <INPUT type='submit' value='Login'/>"
471 " <INPUT type='submit' value='Login'/>"
  /external/chromium_org/chrome/browser/resources/omnibox/
omnibox.js 27 'submit', startOmniboxQuery, false);
71 // Cancel the submit action. i.e., don't submit the form. (We handle

Completed in 1505 milliseconds

<<21222324252627282930>>