Searched refs:to (Results 51 - 75 of 7771) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_auth/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_supp/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/l2_packet/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A DMakefile2 @echo Nothing to be made.
8 @echo Nothing to be made.
/external/chromium_org/printing/
H A Dpage_range.h18 // Print range is inclusive. To select one page, set from == to.
21 int to; member in struct:printing::PageRange
24 return from == rhs.from && to == rhs.to;
/external/valgrind/main/none/tests/s390x/
H A Drounding-5.stdout.exp1 setting FPC rounding mode to [-> near]
3 setting FPC rounding mode to [-> zero]
5 setting FPC rounding mode to [-> +inf]
7 setting FPC rounding mode to [-> -inf]
10 setting FPC rounding mode to [-> near]
12 setting FPC rounding mode to [-> zero]
14 setting FPC rounding mode to [-> +inf]
16 setting FPC rounding mode to [-> -inf]
19 setting FPC rounding mode to [-> near]
21 setting FPC rounding mode to [
[all...]
/external/chromium_org/sync/js/
H A DREADME.js5 This framework was once used to implement an asynchronous request/reply
7 Much of it has been removed in favor of an ad-hoc system that allows us to
8 offer better safety guarantees, and to dispatch requests to different threads.
10 All that remains are some WeakHandles that allow us to send JsEvents from the
11 sync backend to about:sync. The SyncInternalsUI implements JsEventHandler in
12 order to receive these events. The SyncManager implements JsBackend in order
13 to send them. The SyncJsController acts as an intermediary between them.
15 The old framework may still be useful to someone. Feel free to retriev
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSUnicodeRangeValue.h36 static PassRefPtrWillBeRawPtr<CSSUnicodeRangeValue> create(UChar32 from, UChar32 to) argument
38 return adoptRefWillBeNoop(new CSSUnicodeRangeValue(from, to));
42 UChar32 to() const { return m_to; } function in class:blink::CSSUnicodeRangeValue
51 CSSUnicodeRangeValue(UChar32 from, UChar32 to) argument
54 , m_to(to)
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_unshift.pass.cpp15 // externT* to, externT* to_end, externT*& to_next) const;
27 std::vector<char> to(3);
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
32 assert(to_next == to.data());
H A Dchar32_t_unshift.pass.cpp15 // externT* to, externT* to_end, externT*& to_next) const;
27 std::vector<char> to(3);
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
32 assert(to_next == to.data());
H A Dchar_unshift.pass.cpp15 // externT* to, externT* to_end, externT*& to_next) const;
27 std::vector<char> to(3);
31 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::noconv);
32 assert(to_next == to.data());
H A Dwchar_t_out.pass.cpp16 // externT* to, externT* to_end, externT*& to_next) const;
31 std::vector<char> to(from.size()+1);
36 to.data(), to.data() + to.size(), to_next);
39 assert(to_next - to.data() == from.size());
40 assert(to.data() == std::string("some text"));
45 std::vector<char> to(from.size()+1);
50 to.data(), to
[all...]
H A Dwchar_t_unshift.pass.cpp15 // externT* to, externT* to_end, externT*& to_next) const;
29 std::vector<F::extern_type> to(3);
33 assert(f.unshift(mbs, to.data(), to.data() + to.size(), to_next) == F::ok);
34 assert(to_next == to.data());
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DToParser.java6 * Pursuant to title 15 Untied States Code Section 105, works of NIST
7 * employees are not subject to copyright protection in the United States
8 * and are considered to be in the public domain. As a result, a formal
9 * license is not needed to use the software.
17 * not limited to the correctness, accuracy, reliability or usefulness of
20 * Permission to use this software is contingent upon your acceptance
45 * @param to String to set
47 public ToParser(String to) { argument
48 super(to);
[all...]
/external/openssl/crypto/rsa/
H A Drsa_none.c7 * The implementation was written so as to conform with Netscapes SSL.
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
17 * the code are not to be removed.
65 int RSA_padding_add_none(unsigned char *to, int tlen, argument
80 memcpy(to,from,(unsigned int)flen);
84 int RSA_padding_check_none(unsigned char *to, int tlen, argument
94 memset(to,0,tlen-flen);
95 memcpy(to+tlen-flen,from,flen);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DInterpolatedTransformOperation.h15 * contributors may be used to endorse or promote products derived from
42 static PassRefPtr<InterpolatedTransformOperation> create(const TransformOperations& from, const TransformOperations& to, double progress) argument
44 return adoptRef(new InterpolatedTransformOperation(from, to, progress));
62 return from.dependsOnBoxSize() || to.dependsOnBoxSize();
65 InterpolatedTransformOperation(const TransformOperations& from, const TransformOperations& to, double progress) argument
67 , to(to)
72 const TransformOperations to; member in class:blink::InterpolatedTransformOperation
/external/chromium_org/content/shell/common/
H A Dwebkit_test_helpers.cc20 WebPreferences* to) {
21 to->allow_universal_access_from_file_urls =
23 to->dom_paste_enabled = from.dom_paste_allowed;
24 to->javascript_can_access_clipboard = from.java_script_can_access_clipboard;
25 to->xss_auditor_enabled = from.xss_auditor_enabled;
26 to->editing_behavior = static_cast<EditingBehavior>(from.editing_behavior);
27 to->default_font_size = from.default_font_size;
28 to->minimum_font_size = from.minimum_font_size;
29 to->default_encoding = from.default_text_encoding_name.utf8().data();
30 to
19 ExportLayoutTestSpecificPreferences(const TestPreferences& from, WebPreferences* to) argument
[all...]
/external/libgsm/src/
H A Ddebug.c14 * calls to functions in this module are #defined to nothing
21 void gsm_debug_words P4( (name, from, to, ptr), argument
24 int to,
29 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
30 while (from <= to) {
35 if (from < to) putc('\n', stderr);
41 void gsm_debug_longwords P4( (name, from, to, ptr), argument
44 int to,
49 fprintf( stderr, "%s [%d .. %d]: ", name, from, to );
[all...]
/external/valgrind/main/gdbserver_tests/
H A DmcinfcallWSRU.stderr.exp2 Brussels ready to sleep and/or burn
3 London ready to sleep and/or burn
4 Petaouchnok ready to sleep and/or burn
5 main ready to sleep and/or burn
7 Reset valgrind output to log (orderly_finish)
H A Dnlvgdbsigqueue.stderr.exp7 Brussels ready to sleep and/or burn
8 London ready to sleep and/or burn
9 Petaouchnok ready to sleep and/or burn
10 main ready to sleep and/or burn
11 Gdb request to kill this process

Completed in 4952 milliseconds

1234567891011>>