Home
last modified time | relevance | path

Searched +defs:to +defs:from (Results 1 – 25 of 447) sorted by relevance

12345678910>>...18

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_bvgraph.h44 bool addEdge(uptr from, uptr to) { in addEdge()
50 uptr addEdges(const BV &from, uptr to, uptr added_edges[], in addEdges()
69 bool hasEdge(uptr from, uptr to) { return v[from].getBit(to); } in hasEdge()
72 bool removeEdge(uptr from, uptr to) { in removeEdge()
77 bool removeEdgesTo(const BV &to) { in removeEdgesTo()
79 for (uptr from = 0; from < size(); from++) { in removeEdgesTo() local
87 bool removeEdgesFrom(const BV &from) { in removeEdgesFrom()
100 void removeEdgesFrom(uptr from) { in removeEdgesFrom()
104 bool hasEdge(uptr from, uptr to) const { in hasEdge()
111 bool isReachable(uptr from, const BV &targets) { in isReachable()
[all …]
/external/jsilver/src/com/google/streamhtmlparser/impl/
DParserStateTable.java101 InternalState getNextState(InternalState from, int currentChar) { in getNextState()
121 void setExpression(String expr, InternalState from, InternalState to) { in setExpression()
144 private void fill(InternalState from, InternalState to) { in fill()
151 private void setDefaultDestination(InternalState from, InternalState to) { in setDefaultDestination()
162 private void setDestination(InternalState from, char chr, InternalState to) { in setDestination()
174 private void setRange(InternalState from, char start, char end, in setRange()
175 InternalState to) { in setRange()
DStateTableTransition.java38 private final InternalState from; field in StateTableTransition
39 private final InternalState to; field in StateTableTransition
54 StateTableTransition(String expression, InternalState from, in StateTableTransition()
55 InternalState to) { in StateTableTransition()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_bvgraph_test.cc46 bool addEdge(uptr from, uptr to) { in addEdge()
49 bool removeEdge(uptr from, uptr to) { in removeEdge()
55 uptr from = *it >> 16; in checkSameAs() local
56 uptr to = *it & ((1 << 16) - 1); in checkSameAs() local
62 uptr idx(uptr from, uptr to) { in idx()
85 uptr from = my_rand() % g.size(); in BasicTest() local
86 uptr to = my_rand() % g.size(); in BasicTest() local
130 uptr from = my_rand() % g.size(); in RemoveEdges() local
131 uptr to = my_rand() % g.size(); in RemoveEdges() local
142 for (set<uptr>::iterator from = s.begin(); from != s.end(); ++from) { in RemoveEdges() local
[all …]
/external/compiler-rt/test/asan/TestCases/
Dstrncat_strict.c14 void test1(char *to, int to_size, char *from) { in test1()
19 void test2(char *to, int to_size, char *from) { in test2()
27 char *to = (char*)malloc(to_size); in main() local
29 char *from = (char*)malloc(from_size); in main() local
Dstrcat_strict.c14 void test1(char *to, int to_size, char *from) { in test1()
19 void test2(char *to, int to_size, char *from) { in test2()
27 char *to = (char*)malloc(to_size); in main() local
29 char *from = (char*)malloc(from_size); in main() local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCurrencyMetaInfo.java95 public final long from; field in CurrencyMetaInfo.CurrencyFilter
101 public final long to; field in CurrencyMetaInfo.CurrencyFilter
111 … private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { in CurrencyFilter()
185 public static CurrencyFilter onDateRange(Date from, Date to) { in onDateRange()
208 public static CurrencyFilter onDateRange(long from, long to) { in onDateRange()
264 public CurrencyFilter withDateRange(Date from, Date to) { in withDateRange()
290 public CurrencyFilter withDateRange(long from, long to) { in withDateRange()
428 public final long from; field in CurrencyMetaInfo.CurrencyInfo
437 public final long to; field in CurrencyMetaInfo.CurrencyInfo
454 public CurrencyInfo(String region, String code, long from, long to, int priority) { in CurrencyInfo()
[all …]
/external/mesa3d/src/mesa/math/
Dm_xform_tmp.h79 GLfloat *from = from_vec->start; in TAG() local
80 GLfloat (*to)[4] = (GLfloat (*)[4])to_vec->start; in TAG() local
105 GLfloat *from = from_vec->start; in TAG() local
107 GLfloat (*to)[4] = (GLfloat (*)[4])to_vec->start; in TAG() local
125 GLfloat *from = from_vec->start; in TAG() local
126 GLfloat (*to)[4] = (GLfloat (*)[4])to_vec->start; in TAG() local
147 GLfloat *from = from_vec->start; in TAG() local
148 GLfloat (*to)[4] = (GLfloat (*)[4])to_vec->start; in TAG() local
168 GLfloat *from = from_vec->start; in TAG() local
169 GLfloat (*to)[4] = (GLfloat (*)[4])to_vec->start; in TAG() local
[all …]
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
Dwchar_t_out.pass.cpp30 const std::basic_string<F::intern_type> from(L"some text"); in main() local
31 std::vector<char> to(from.size()+1); in main() local
43 std::basic_string<F::intern_type> from(L"some text"); in main() local
45 std::vector<char> to(from.size()+1); in main() local
57 std::basic_string<F::intern_type> from(L"some text"); in main() local
58 std::vector<char> to(from.size()-1); in main() local
/external/guava/guava/src/com/google/common/io/
DFiles.java383 public static void copy(InputSupplier<? extends InputStream> from, File to) in copy()
395 public static void write(byte[] from, File to) throws IOException { in write()
411 public static void copy(File from, OutputSupplier<? extends OutputStream> to) in copy()
423 public static void copy(File from, OutputStream to) throws IOException { in copy()
440 public static void copy(File from, File to) throws IOException { in copy()
462 InputSupplier<R> from, File to, Charset charset) throws IOException { in copy()
476 public static void write(CharSequence from, File to, Charset charset) in write()
491 public static void append(CharSequence from, File to, Charset charset) in append()
507 private static void write(CharSequence from, File to, Charset charset, in write()
527 public static <W extends Appendable & Closeable> void copy(File from, in copy()
[all …]
/external/skia/src/c/
Dsk_c_from_to.h8 static bool find_sk(CType from, SKType* to) { in find_sk()
20 static bool find_c(SKType from, CType* to) { in find_c()
/external/mockito/src/org/mockito/internal/util/reflection/
DLenientCopyTool.java15 public <T> void copyToMock(T from, T mock) { in copyToMock()
19 public <T> void copyToRealObject(T from, T to) { in copyToRealObject()
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) { in copy()
30 private <T> void copyValues(T from, T mock, Class classFrom) { in copyValues()
/external/nist-sip/java/gov/nist/core/
DServerLogger.java34 void logMessage(SIPMessage message, String from, String to, boolean sender, long time); in logMessage()
36 void logMessage(SIPMessage message, String from, String to, String status, in logMessage()
39 void logMessage(SIPMessage message, String from, String to, String status, in logMessage()
/external/nist-sip/java/javax/sip/message/
DMessageFactory.java17 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createRequest()
22 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createRequest()
27 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createRequest()
33 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
38 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
43 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DTokenRewriteStream.cs152 public ReplaceOp(TokenRewriteStream stream, int from, int to, object text) in ReplaceOp()
168 public DeleteOp(TokenRewriteStream stream, int from, int to) : in DeleteOp()
279 public virtual void Replace(int from, int to, object text) { in Replace()
287 public virtual void Replace(IToken from, IToken to, object text) { in Replace()
291 public virtual void Replace(string programName, int from, int to, object text) { in Replace()
301 public virtual void Replace(string programName, IToken from, IToken to, object text) { in Replace()
312 public virtual void Delete(int from, int to) { in Delete()
320 public virtual void Delete(IToken from, IToken to) { in Delete()
324 public virtual void Delete(string programName, int from, int to) { in Delete()
328 public virtual void Delete(string programName, IToken from, IToken to) { in Delete()
/external/nist-sip/java/gov/nist/javax/sip/message/
DMessageFactoryImpl.java123 FromHeader from, ToHeader to, List via, in createRequest()
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest()
232 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, in createRequest()
287 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
344 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
391 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
546 FromHeader from, ToHeader to, List via, in createRequest()
599 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
655 CSeqHeader cSeq, FromHeader from, ToHeader to, List via, in createResponse()
/external/boringssl/src/crypto/rsa/
Dpadding.c71 int RSA_padding_add_PKCS1_type_1(uint8_t *to, unsigned tlen, in RSA_padding_add_PKCS1_type_1()
72 const uint8_t *from, unsigned flen) { in RSA_padding_add_PKCS1_type_1()
102 int RSA_padding_check_PKCS1_type_1(uint8_t *to, unsigned tlen, in RSA_padding_check_PKCS1_type_1()
103 const uint8_t *from, unsigned flen) { in RSA_padding_check_PKCS1_type_1()
160 int RSA_padding_add_PKCS1_type_2(uint8_t *to, unsigned tlen, in RSA_padding_add_PKCS1_type_2()
161 const uint8_t *from, unsigned flen) { in RSA_padding_add_PKCS1_type_2()
226 int RSA_message_index_PKCS1_type_2(const uint8_t *from, size_t from_len, in RSA_message_index_PKCS1_type_2()
269 int RSA_padding_check_PKCS1_type_2(uint8_t *to, unsigned tlen, in RSA_padding_check_PKCS1_type_2()
270 const uint8_t *from, unsigned flen) { in RSA_padding_check_PKCS1_type_2()
301 int RSA_padding_add_none(uint8_t *to, unsigned tlen, const uint8_t *from, unsigned flen) { in RSA_padding_add_none()
[all …]
/external/apache-http/src/org/apache/http/message/
DBasicTokenIterator.java173 protected int findNext(int from) in findNext()
235 protected int findTokenStart(int from) { in findTokenStart()
244 final int to = this.currentHeader.length(); in findTokenStart() local
291 protected int findTokenSeparator(int from) { in findTokenSeparator()
298 final int to = this.currentHeader.length(); in findTokenSeparator() local
331 protected int findTokenEnd(int from) { in findTokenEnd()
337 final int to = this.currentHeader.length(); in findTokenEnd() local
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DTimeZoneTransition.java16 private final TimeZoneRule from; field in TimeZoneTransition
17 private final TimeZoneRule to; field in TimeZoneTransition
30 public TimeZoneTransition(long time, TimeZoneRule from, TimeZoneRule to) { in TimeZoneTransition()
/external/icu/icu4c/source/i18n/
Dztrans.cpp27 ztrans_open(UDate time, const void* from, const void* to){ in ztrans_open()
67 ztrans_setFrom(ZTrans* trans, const void* from) { in ztrans_setFrom()
72 ztrans_adoptFrom(ZTrans* trans, void* from) { in ztrans_adoptFrom()
82 ztrans_setTo(ZTrans* trans, const void* to) { in ztrans_setTo()
87 ztrans_adoptTo(ZTrans* trans, void* to) { in ztrans_adoptTo()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DTokenRewriteStream.cs172 public ReplaceOp( TokenRewriteStream stream, int from, int to, object text ) in ReplaceOp()
317 public virtual void Replace( int from, int to, object text ) in Replace()
327 public virtual void Replace( IToken from, IToken to, object text ) in Replace()
332 public virtual void Replace( string programName, int from, int to, object text ) in Replace()
344 public virtual void Replace( string programName, IToken from, IToken to, object text ) in Replace()
357 public virtual void Delete( int from, int to ) in Delete()
367 public virtual void Delete( IToken from, IToken to ) in Delete()
372 public virtual void Delete( string programName, int from, int to ) in Delete()
377 public virtual void Delete( string programName, IToken from, IToken to ) in Delete()
/external/jarjar/src/main/com/tonicsystems/jarjar/
DAbstractDepHandler.java32 public void handle(PathClass from, PathClass to) throws IOException { in handle()
45 abstract protected void handle(String from, String to) throws IOException; in handle()
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DTokenRewriteStream.java138 public ReplaceOp(int from, int to, Object text) { in ReplaceOp()
251 public void replace(int from, int to, Object text) { in replace()
259 public void replace(Token from, Token to, Object text) { in replace()
263 public void replace(String programName, int from, int to, Object text) { in replace()
273 public void replace(String programName, Token from, Token to, Object text) { in replace()
284 public void delete(int from, int to) { in delete()
292 public void delete(Token from, Token to) { in delete()
296 public void delete(String programName, int from, int to) { in delete()
300 public void delete(String programName, Token from, Token to) { in delete()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMethodImplementationBuilder.java106 public void addCatch(@Nullable TypeReference type, @Nonnull Label from, in addCatch()
107 @Nonnull Label to, @Nonnull Label handler) { in addCatch()
111 public void addCatch(@Nullable String type, @Nonnull Label from, @Nonnull Label to, in addCatch()
116 public void addCatch(@Nonnull Label from, @Nonnull Label to, @Nonnull Label handler) { in addCatch()
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
DICUCurrencyMetaInfo.java125 long from = Long.MIN_VALUE; in collectRegion() local
126 long to = Long.MAX_VALUE; in collectRegion() local
200 …public void collect(String region, String currency, long from, long to, int priority, boolean tend… in collect()
217 String region, String currency, long from, long to, int priority, boolean tender) { in collect()
234 String region, String currency, long from, long to, int priority, boolean tender) { in collect()
269 … void collect(String region, String currency, long from, long to, int priority, boolean tender); in collect()

12345678910>>...18