Searched refs:from (Results 176 - 200 of 3600) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dlint-test-expectations15 # contributors may be used to endorse or promote products derived from
32 from webkitpy.common import version_check
33 from webkitpy.layout_tests import lint_test_expectations
H A Dread-checksum-from-png15 # contributors may be used to endorse or promote products derived from
30 from __future__ import with_statement
33 from webkitpy.common import read_checksum_from_png
H A Drun-blink-httpd15 # contributors may be used to endorse or promote products derived from
32 from webkitpy.layout_tests.servers import cli_wrapper
33 from webkitpy.layout_tests.servers import apache_http
/external/chromium_org/third_party/bintrees/bintrees/
H A Dstack.pxd8 from ctrees cimport node_t
10 cdef extern from "stack.h":
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dtype_check.h34 * The word 'cryptographic' can be left out if the rouines from the library
36 * 4. If you include any Windows specific code (or a derivative thereof) from
72 /* CHECKED_CAST casts |p| from type |from| to type |to|. */
73 #define CHECKED_CAST(to, from, p) ((to) (1 ? (p) : (from)0))
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DTextDepHandler.java31 protected void handle(String from, String to) throws IOException { argument
32 w.println(from + " -> " + to);
/external/libutf/
H A Dutfecpy.c20 utfecpy(char *to, char *e, const char *from) argument
26 end = (char*)memccpy(to, from, '\0', e - to);
/external/markdown/bin/
H A Dmarkdown8 Basic use from the command line:
33 from markdown import COMMAND_LINE_LOGGING_LEVEL
34 from markdown import commandline
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFieldCopier.java11 public <T> void copyValue(T from, T to, Field field) throws IllegalAccessException { argument
12 Object value = field.get(from);
/external/openssl/crypto/rsa/
H A Drsa_null.c26 * endorse or promote products derived from this software without
30 * 5. Products derived from this software may not be called "OpenSSL"
72 static int RSA_null_public_encrypt(int flen, const unsigned char *from,
74 static int RSA_null_private_encrypt(int flen, const unsigned char *from,
76 static int RSA_null_public_decrypt(int flen, const unsigned char *from,
78 static int RSA_null_private_decrypt(int flen, const unsigned char *from,
107 static int RSA_null_public_encrypt(int flen, const unsigned char *from, argument
114 static int RSA_null_private_encrypt(int flen, const unsigned char *from, argument
121 static int RSA_null_private_decrypt(int flen, const unsigned char *from, argument
128 static int RSA_null_public_decrypt(int flen, const unsigned char *from, argument
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDelayInformation.java58 private String from; field in class:DelayInformation
78 return from;
85 * @param from the JID of the entity that originally sent the packet.
87 public void setFrom(String from) { argument
88 this.from = from;
138 if (from != null && from.length() > 0) {
139 buf.append(" from=\"").append(from)
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dmcmain_pic.stderrB.exp2 vgdb-error value changed from 0 to 999999
H A Dnlpasssigalrm.stderrB.exp2 vgdb-error value changed from 0 to 999999
/external/stlport/src/
H A Dcodecvt.cpp31 const char* from,
34 { return (int)(min) ( __STATIC_CAST(size_t, (end - from)), mx); }
84 const intern_type* from,
90 ptrdiff_t len = (min) (from_end - from, to_limit - to);
91 copy(from, from + len, to);
92 from_next = from + len;
99 const extern_type* from,
105 ptrdiff_t len = (min) (from_end - from, to_limit - to);
106 copy(__REINTERPRET_CAST(const unsigned char*, from),
30 do_length(state_type&, const char* from, const char* end, size_t mx) const argument
83 do_out(state_type& , const intern_type* from, const intern_type* from_end, const intern_type*& from_next, extern_type* to, extern_type* to_limit, extern_type*& to_next) const argument
98 do_in(state_type& , const extern_type* from, const extern_type* from_end, const extern_type*& from_next, intern_type* to, intern_type* to_limit, intern_type*& to_next) const argument
128 do_length(state_type&, const extern_type* from, const extern_type* end, size_t mx) const argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DMatrixTransformOperation.cpp29 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) argument
31 if (from && !from->isSameType(*this))
38 if (from) {
39 const MatrixTransformOperation* m = static_cast<const MatrixTransformOperation*>(from);
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
H A Dchar16_t_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
H A Dchar16_t_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
H A Dchar32_t_in.pass.cpp15 // const externT* from, const externT* from_end, const externT*& from_next,
28 const char from[] = "some text"; local
34 assert(f.in(mbs, from, from + 9, from_next,
36 assert(from_next - from == 9);
39 assert(to[i] == from[i]);
H A Dchar32_t_out.pass.cpp15 // const internT* from, const internT* from_end, const internT*& from_next,
32 F::intern_type from[9] = {'s', 'o', 'm', 'e', ' ', 't', 'e', 'x', 't'}; local
37 F::result r = f.out(mbs, from, from + 9, from_next,
40 assert(from_next - from == 9);
43 assert(to[i] == from[i]);
/external/chromium_org/tools/json_schema_compiler/
H A Dutil.h19 // Creates a new item at |out| from |from|[|index|]. These are used by template
21 bool GetItemFromList(const base::ListValue& from, int index, int* out);
22 bool GetItemFromList(const base::ListValue& from, int index, bool* out);
23 bool GetItemFromList(const base::ListValue& from, int index, double* out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out);
25 bool GetItemFromList(const base::ListValue& from,
28 bool GetItemFromList(const base::ListValue& from,
34 bool GetItemFromList(const base::ListValue& from, argument
38 if (!from
66 PopulateArrayFromDictionary( const base::DictionaryValue& from, const std::string& name, std::vector<T>* out) argument
101 PopulateOptionalArrayFromDictionary( const base::DictionaryValue& from, const std::string& name, scoped_ptr<std::vector<T> >* out) argument
133 AddItemToList(const linked_ptr<T>& from, base::ListValue* out) argument
140 PopulateListFromArray( const std::vector<T>& from, base::ListValue* out) argument
153 PopulateListFromOptionalArray( const scoped_ptr<std::vector<T> >& from, base::ListValue* out) argument
162 CreateValueFromArray(const std::vector<T>& from) argument
169 CreateValueFromOptionalArray( const scoped_ptr<std::vector<T> >& from) argument
[all...]
/external/valgrind/main/coregrind/
H A Dvg_preloaded.c42 originates from Valgrind.
103 running under Valgrind can be distinguished from other crashes. */
110 /* Scrubbing DYLD_INSERT_LIBRARIES from envp during exec is insufficient,
113 Instead, scrub DYLD_INSERT_LIBRARIES from the parent process once
119 // GrP fixme copied from m_libcproc
122 HChar **from; local
126 for (from = to = env; from && *from; from
[all...]
/external/apache-http/src/org/apache/commons/codec/net/
H A DRFC1522Codec.java110 int from = 2;
111 int to = text.indexOf("?", from);
115 String charset = text.substring(from, to);
119 from = to + 1;
120 to = text.indexOf("?", from);
124 String encoding = text.substring(from, to);
129 from = to + 1;
130 to = text.indexOf("?", from);
131 byte[] data = text.substring(from, to).getBytes(StringEncodings.US_ASCII);
/external/chromium_org/chrome/test/telemetry/
H A Drun_cros_tests8 from telemetry_lib import telemetry
9 from telemetry.unittest import gtest_testrunner
10 from telemetry.unittest import run_tests
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_mode_helper.cc38 AccessibilityMode from,
40 unsigned int new_mode = from ^ (mode_to_remove & from);
37 RemoveAccessibilityModeFrom( AccessibilityMode from, AccessibilityMode mode_to_remove) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementFullscreen.cpp14 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::UnprefixedRequest);
19 Fullscreen::from(element.document()).requestFullscreen(element, Fullscreen::PrefixedRequest);
29 Fullscreen::from(element.document()).requestFullscreen(element, requestType);

Completed in 563 milliseconds

1234567891011>>