Searched defs:from (Results 176 - 200 of 578) sorted by relevance

1234567891011>>

/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedCollectionGenerators.java332 * Two bounds (from and to) define how to build a subMap.
343 final Bound from; field in class:DerivedCollectionGenerators.SortedSetSubsetTestSetGenerator
350 TestSortedSetGenerator<E> delegate, Bound to, Bound from) {
352 this.from = from;
374 return from;
408 if (from != Bound.NO_BOUND) {
430 if (from == Bound.NO_BOUND && to == Bound.EXCLUSIVE) {
432 } else if (from == Bound.INCLUSIVE && to == Bound.NO_BOUND) {
434 } else if (from
349 SortedSetSubsetTestSetGenerator( TestSortedSetGenerator<E> delegate, Bound to, Bound from) argument
469 final Bound from; field in class:DerivedCollectionGenerators.SortedMapSubmapTestMapGenerator
474 SortedMapSubmapTestMapGenerator( TestSortedMapGenerator<K, V> delegate, Bound to, Bound from) argument
[all...]
/external/harfbuzz_ng/src/hb-ucdn/
H A Ducdn.c32 unsigned short from, to; member in struct:__anon5442
108 return mpa->from - mpb->from;
210 mp.from = code;
/external/icu/icu4c/source/test/intltest/
H A Ddadrcal.cpp10 * 07/09/2007 srl Copied from dadrcoll.cpp
86 // Get 'from' time
107 // Headers { "locale","from","operation","params","to" }
126 // #2 'from' info
127 param = "from";
128 UnicodeString from = testSetting=currentCase->getString(param, status); local
135 if(from.startsWith(kMILLIS)){
136 UnicodeString millis = UnicodeString(from, kMILLIS.length());
196 UnicodeString caseContentsString = locale+": from "+from
411 UnicodeString from = currentCase->getString("from", status); local
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCurrencyMetaInfo.java92 * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
95 public final long from; field in class:CurrencyMetaInfo.CurrencyFilter
111 private CurrencyFilter(String region, String currency, long from, long to, boolean tenderOnly) { argument
114 this.from = from;
178 * @param from date on or after a currency must have been in use
180 * or if equal to from, the date on which a currency must have been in use
185 public static CurrencyFilter onDateRange(Date from, Date to) { argument
186 return ALL.withDateRange(from, to);
202 * @param from Th
208 onDateRange(long from, long to) argument
264 withDateRange(Date from, Date to) argument
290 withDateRange(long from, long to) argument
428 public final long from; field in class:CurrencyMetaInfo.CurrencyInfo
454 CurrencyInfo(String region, String code, long from, long to, int priority) argument
465 CurrencyInfo(String region, String code, long from, long to, int priority, boolean tender) argument
[all...]
/external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
H A DICUCurrencyMetaInfo.java84 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) {
125 long from = Long.MIN_VALUE;
138 from = getDate(r.at("from"), Long.MIN_VALUE, false);
140 // In the data, to is always > from. This means that when we have a range
141 // from == to, the comparisons below will always do the right thing, despite
142 // the range being technically empty. It really should be [from, from+1) but
144 if (filter.from > to) {
147 if (filter.to < from) {
200 collect(String region, String currency, long from, long to, int priority, boolean tender) argument
216 collect( String region, String currency, long from, long to, int priority, boolean tender) argument
233 collect( String region, String currency, long from, long to, int priority, boolean tender) argument
269 collect(String region, String currency, long from, long to, int priority, boolean tender) argument
[all...]
/external/iproute2/ip/
H A Diprule.c36 fprintf(stderr, "SELECTOR := [ not ] [ from PREFIX ] [ to PREFIX ] [ tos TOS ] [ fwmark FWMARK[/MASK] ]\n");
88 fprintf(fp, "from %s/%u ", rt_addr_n2a(r->rtm_family,
95 fprintf(fp, "from %s ", format_host(r->rtm_family,
102 fprintf(fp, "from 0/%d ", r->rtm_src_len);
104 fprintf(fp, "from all ");
174 __u32 from = to>>16; local
176 if (from) {
178 rtnl_rtrealm_n2a(from, b1, sizeof(b1)));
266 } else if (strcmp(*argv, "from") == 0) {
/external/iptables/extensions/
H A Dlibxt_iprange.c18 /* Flags from above */
44 iprange_parse_spec(const char *from, const char *to, union nf_inet_addr *range, argument
47 const char *spec[2] = {from, to};
H A Dlibxt_owner.c226 static void owner_parse_range(const char *s, unsigned int *from, argument
232 if (!xtables_strtoui(s, &end, from, 0, UINT32_MAX - 1))
234 *to = *from;
247 unsigned int from, to; local
253 from = to = pwd->pw_uid;
255 owner_parse_range(cb->arg, &from, &to, "--uid-owner");
259 info->uid_min = from;
264 from = to = grp->gr_gid;
266 owner_parse_range(cb->arg, &from, &to, "--gid-owner");
270 info->gid_min = from;
[all...]
/external/iputils/
H A Dtftpd.c18 * may be used to endorse or promote products derived from this software
41 /*static char sccsid[] = "from: @(#)tftpd.c 5.13 (Berkeley) 2/26/91";*/
90 } from; variable in typeref:union:__anon6424
127 fromlen = sizeof (from);
129 (struct sockaddr *)&from, &fromlen);
166 * a single request from a single client.
168 j = sizeof from;
170 (struct sockaddr *)&from, &j);
189 peer = socket(from.sa.sa_family, SOCK_DGRAM, 0);
194 if (connect(peer, (struct sockaddr *)&from, sizeo
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DIO.java263 * @param from
267 public static void copy(File from,File to) throws IOException argument
269 if (from.isDirectory())
270 copyDir(from,to);
272 copyFile(from,to);
276 public static void copyDir(File from,File to) throws IOException argument
286 File[] files = from.listFiles();
300 public static void copyFile(File from,File to) throws IOException argument
302 FileInputStream in=new FileInputStream(from);
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_PhysicsSpace.cpp17 * may be used to endorse or promote products derived from this software
400 (JNIEnv * env, jobject object, jobject to, jobject from, jlong spaceId, jobject resultlist) {
415 btVector3 m_rayFromWorld; //used to calculate hitPointWorld from hitFraction
439 jmeBulletUtil::convert(env, from, &native_from);
399 Java_com_jme3_bullet_PhysicsSpace_rayTest_1native(JNIEnv * env, jobject object, jobject to, jobject from, jlong spaceId, jobject resultlist) argument
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DData.java192 * Does a deep copy of the attributes and values from one node to another.
195 * @param from Data object that should be copied over.
197 void copy(String toPath, Data from); argument
200 * Does a deep copy the attributes and values from one node to another
202 * @param from Data object whose value should be copied over.
204 void copy(Data from); argument
H A DDefaultDataContext.java356 public void copy(String toPath, Data from) { argument
360 public void copy(Data from) { argument
H A DDelegatedData.java233 public void copy(String toPath, Data from) { argument
234 from = unwrap(from);
235 getDelegate().copy(toPath, from);
239 public void copy(Data from) { argument
240 from = unwrap(from);
241 getDelegate().copy(from);
/external/libexif/libexif/canon/
H A Dexif-mnote-data-canon.c67 unsigned int from = 0, to; local
71 to = from + mnote_canon_entry_count_values (&dc->entries[*m]);
73 if (s) *s = n - from;
76 from = to;
/external/liblzf/
H A Dlzf.c177 compress_fd (int from, int to) argument
185 while ((us = rread (from, &buf1[MAX_HDR_SIZE], blocksize)) > 0)
219 uncompress_fd (int from, int to) argument
231 rc = rread (from, header + over, MAX_HDR_SIZE - over);
286 if ((rc = rread (from, p, rd)) != rd)
514 fprintf (stderr, "%s: compressed data not read from a terminal. Use -f to force decompression.\n", imagename);
/external/libvncserver/common/
H A Dd3des.c134 register unsigned long *from, *endp; local
136 from = KnL, endp = &KnL[32];
137 while( from < endp ) *into++ = *from++;
141 void rfbUseKey(register unsigned long *from) argument
146 while( to < endp ) *to++ = *from++;
/external/libvncserver/libvncserver/
H A Dscale.c70 int ScaleX(rfbScreenInfoPtr from, rfbScreenInfoPtr to, int x) argument
72 if ((from==to) || (from==NULL) || (to==NULL)) return x;
73 return ((int)(((double) x / (double)from->width) * (double)to->width ));
76 int ScaleY(rfbScreenInfoPtr from, rfbScreenInfoPtr to, int y) argument
78 if ((from==to) || (from==NULL) || (to==NULL)) return y;
79 return ((int)(((double) y / (double)from->height) * (double)to->height ));
85 void rfbScaledCorrection(rfbScreenInfoPtr from, rfbScreenInfoPtr to, int *x, int *y, int *w, int *h, const char *function) argument
88 double scaleW = ((double) to->width) / ((double) from
[all...]
/external/libvncserver/x11vnc/
H A Dpointer.c30 so, delete this exception statement from your version.
63 static void buttonparse(int from, char **s);
85 static void buttonparse(int from, char **s) { argument
87 if (!from || !s) {}
119 rfbLog("remap button %d using \"%s\"\n", from, list);
143 from, n+1, i);
145 pointer_map[from][n].keysym = NoSymbol;
146 pointer_map[from][n].keycode = NoSymbol;
147 pointer_map[from][n].button = i;
148 pointer_map[from][
315 int from; local
[all...]
/external/libxml2/
H A Derror.c641 * @domain: where the error comes from
947 * @from: a source error
955 xmlCopyError(xmlErrorPtr from, xmlErrorPtr to) { argument
958 if ((from == NULL) || (to == NULL))
961 message = (char *) xmlStrdup((xmlChar *) from->message);
962 file = (char *) xmlStrdup ((xmlChar *) from->file);
963 str1 = (char *) xmlStrdup ((xmlChar *) from->str1);
964 str2 = (char *) xmlStrdup ((xmlChar *) from->str2);
965 str3 = (char *) xmlStrdup ((xmlChar *) from->str3);
977 to->domain = from
[all...]
/external/linux-tools-perf/src/tools/perf/
H A Dperf.h189 u64 from; member in struct:branch_entry
/external/linux-tools-perf/src/tools/perf/util/
H A Dstring.c88 * originally copied from lib/argv_split.c
141 * Returns an array of pointers to strings which are split out from
319 * @from: Source character to be replaced.
324 char *strxfrchar(char *s, char from, char to) argument
328 while ((p = strchr(p, from)) != NULL)
335 * ltrim - Removes leading whitespace from @s.
353 * rtrim - Removes trailing whitespace from @s.
/external/mesa3d/src/mesa/math/
H A Dm_debug_clip.c75 const GLfloat *from = (GLfloat *)clip_vec->start; local
81 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
82 const GLfloat cx = from[0];
83 const GLfloat cy = from[1];
84 const GLfloat cz = from[2];
85 const GLfloat cw = from[3];
133 const GLfloat *from = (GLfloat *)clip_vec->start; local
138 for ( i = 0 ; i < count ; i++, STRIDE_F(from, stride) ) {
139 const GLfloat cx = from[0], cy = from[
168 const GLfloat *from = (GLfloat *)clip_vec->start; local
[all...]
H A Dm_xform_tmp.h50 * them from the vertex array interface.
79 GLfloat *from = from_vec->start; local
88 const GLfloat ox = from[0];
105 GLfloat *from = from_vec->start; local
112 to[i][0] = from[0];
125 GLfloat *from = from_vec->start; local
132 const GLfloat ox = from[0];
147 GLfloat *from = from_vec->start; local
153 const GLfloat ox = from[0];
168 GLfloat *from local
192 GLfloat *from = from_vec->start; local
215 GLfloat *from = from_vec->start; local
245 GLfloat *from = from_vec->start; local
271 GLfloat *from = from_vec->start; local
292 GLfloat *from = from_vec->start; local
314 GLfloat *from = from_vec->start; local
335 GLfloat *from = from_vec->start; local
362 GLfloat *from = from_vec->start; local
391 GLfloat *from = from_vec->start; local
416 GLfloat *from = from_vec->start; local
442 GLfloat *from = from_vec->start; local
464 GLfloat *from = from_vec->start; local
487 GLfloat *from = from_vec->start; local
509 GLfloat *from = from_vec->start; local
535 GLfloat *from = from_vec->start; local
558 GLfloat *from = from_vec->start; local
584 GLfloat *from = from_vec->start; local
610 GLfloat *from = from_vec->start; local
633 GLfloat *from = from_vec->start; local
657 GLfloat *from = from_vec->start; local
680 GLfloat *from = from_vec->start; local
705 GLfloat *from = from_vec->start; local
729 GLfloat *from = from_vec->start; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DMessageFactoryImpl.java63 * The UserAgent header to include for all requests created from this message factory.
106 * @param from -
107 * the new FromHeader object of the from value of this Message.
123 FromHeader from, ToHeader to, List via,
127 || cSeq == null || from == null || to == null || via == null
137 sipRequest.setFrom(from);
163 * @param from -
164 * the new FromHeader object of the from value of this Message.
179 CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to,
183 || cSeq == null || from
121 createRequest(javax.sip.address.URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
178 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, byte[] content, ContentTypeHeader contentType) argument
231 createRequest(URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
286 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, Object content, ContentTypeHeader contentType) argument
343 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, byte[] content, ContentTypeHeader contentType) argument
390 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards) argument
544 createRequest(javax.sip.address.URI requestURI, String method, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
598 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, Object content) argument
654 createResponse(int statusCode, CallIdHeader callId, CSeqHeader cSeq, FromHeader from, ToHeader to, List via, MaxForwardsHeader maxForwards, ContentTypeHeader contentType, byte[] content) argument
[all...]

Completed in 686 milliseconds

1234567891011>>