HomeSort by relevance Sort by last modified time
    Searched defs:to (Results 201 - 225 of 1676) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/guice/extensions/grapher/src/com/google/inject/grapher/
AbstractInjectorGrapher.java 10 * Unless required by applicable law or agreed to in writing, software
44 * Parameters used to override default settings of the grapher.
118 /** Adds a new interface node to the graph. */
121 /** Adds a new implementation node to the graph. */
124 /** Adds a new instance node to the graph. */
127 /** Adds a new dependency edge to the graph. */
130 /** Adds a new binding edge to the graph. */
142 // Only render nodes that aren't aliased to some other node.
174 * Transitively resolves aliases. Given aliases (X to Y) and (Y to Z), it will return mapping
183 NodeId to = alias.getToId(); local
    [all...]
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 10 * Unless required by applicable law or agreed to in writing, software
58 * .to(RemoteCustomerProvider.class)
198 public ScopedBindingBuilder to(P target) { method in class:ThrowingProviderBinder.SecondaryBinder
201 return to(targetKey);
204 public ScopedBindingBuilder to(Class<? extends P> targetType) { method in class:ThrowingProviderBinder.SecondaryBinder
205 return to(Key.get(targetType));
222 // If we found an injection point, then bind the cxtor to a unique key
251 // one dependency failed due to scoping errors), then
253 // to rethrow it as-is.
280 public ScopedBindingBuilder to(Key<? extends P> targetKey) method in class:ThrowingProviderBinder.SecondaryBinder
    [all...]
  /external/harfbuzz_ng/src/hb-ucdn/
ucdn.c 4 * Permission to use, copy, modify, and/or distribute this software for any
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
32 unsigned short from, to; member in struct:__anon12548
217 return res->to;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ICUCurrencyMetaInfo.java 74 // to sort the results to ensure the ordering matches the spec.
86 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) {
128 long to = Long.MAX_VALUE; local
141 to = getDate(r.at("to"), Long.MAX_VALUE, true);
142 // In the data, to is always > from. This means that when we have a range
143 // from == to, the comparisons below will always do the right thing, despite
145 // this way we don't need to fiddle with it.
146 if (filter.from > to) {
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CurrencyMetaInfo.java 19 * Provides information about currencies that is not specific to a locale.
21 * A note about currency dates. The CLDR data provides data to the day,
45 * noSubstitute is true and there is no data to support this API.
74 * A filter used to select which currency info is returned.
78 * The region to filter on. If null, accepts any region.
83 * The currency to filter on. If null, accepts any currency.
88 * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
93 * The to date to filter on (as milliseconds). Accepts any currency on or before this date.
95 public final long to; field in class:CurrencyMetaInfo.CurrencyFilter
400 public final long to; field in class:CurrencyMetaInfo.CurrencyInfo
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DataDrivenCalendarTest.java 45 // Iterate through and get each of the test case to process
119 // build to calendar
141 String to = currentCase.getString("to"); local
142 toSet.parseFrom(to, fromSet);
147 +to);
151 +to);
177 // build to calendar
178 // Headers { "locale","from","operation","params","to" }
210 // #4 'to' inf
212 String to = testSetting=currentCase.getString(param); local
    [all...]
  /external/icu/icu4c/source/common/
uloc_keytype.cpp 273 // equivalent to bcp type value of a different
305 const UChar* to = ures_getString(typeAliasDataEntry.getAlias(), &toLen, &sts); local
310 if (uprv_compareInvAscii(NULL, legacyTypeId, -1, to, toLen) == 0) {
355 const UChar* to = ures_getString(bcpTypeAliasDataEntry.getAlias(), &toLen, &sts); local
360 if (uprv_compareInvAscii(NULL, bcpTypeId, -1, to, toLen) == 0) {
  /external/icu/icu4c/source/test/intltest/
tfsmalls.cpp 42 int32_t to = 5; local
43 ParsePosition pp2( to );
247 UnicodeString* ucs_ptr = new UnicodeString("pointed-to-unicode-string");
382 default: name = ""; break; //needed to end loop
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CurrencyMetaInfo.java 18 * Provides information about currencies that is not specific to a locale.
20 * A note about currency dates. The CLDR data provides data to the day,
45 * noSubstitute is true and there is no data to support this API.
75 * A filter used to select which currency info is returned.
80 * The region to filter on. If null, accepts any region.
86 * The currency to filter on. If null, accepts any currency.
92 * The from date to filter on (as milliseconds). Accepts any currency on or after this date.
98 * The to date to filter on (as milliseconds). Accepts any currency on or before this date.
101 public final long to; field in class:CurrencyMetaInfo.CurrencyFilter
437 public final long to; field in class:CurrencyMetaInfo.CurrencyInfo
    [all...]
  /external/icu/icu4j/main/classes/currdata/src/com/ibm/icu/impl/
ICUCurrencyMetaInfo.java 72 // to sort the results to ensure the ordering matches the spec.
84 if (filter.from != Long.MIN_VALUE || filter.to != Long.MAX_VALUE) {
126 long to = Long.MAX_VALUE; local
139 to = getDate(r.at("to"), Long.MAX_VALUE, true);
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
143 // this way we don't need to fiddle with it.
144 if (filter.from > to) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DataDrivenCalendarTest.java 41 // Iterate through and get each of the test case to process
115 // build to calendar
137 String to = currentCase.getString("to"); local
138 toSet.parseFrom(to, fromSet);
143 +to);
147 +to);
173 // build to calendar
174 // Headers { "locale","from","operation","params","to" }
206 // #4 'to' inf
208 String to = testSetting=currentCase.getString(param); local
    [all...]
  /external/icu/tools/
ZoneCompactor.java 17 // Note that the links must be declared prior to the zone names.
18 // A zone name is a filename relative to the source directory such as
21 // Use the 'zic' command-line tool to convert from flat files
22 // (such as 'africa' or 'northamerica') to a directory
71 String to = st.nextToken(); local
73 links.put(from, to);
93 String to = links.get(from); local
95 offsets.put(from, offsets.get(to));
96 lengths.put(from, lengths.get(to));
113 // Write dummy values for the three offsets, and remember where we need to seek back to late
    [all...]
  /external/iproute2/ip/
iprule.c 38 fprintf(stderr, "SELECTOR := [ not ] [ from PREFIX ] [ to PREFIX ] [ tos TOS ] [ fwmark FWMARK[/MASK] ]\n");
106 fprintf(fp, "to %s/%u ", rt_addr_n2a(r->rtm_family,
113 fprintf(fp, "to %s ", format_host(r->rtm_family,
119 fprintf(fp, "to 0/%d ", r->rtm_dst_len);
185 __u32 to = rta_getattr_u32(tb[FRA_FLOW]); local
186 __u32 from = to>>16;
187 to &= 0xFFFF;
193 rtnl_rtrealm_n2a(to, b1, sizeof(b1)));
198 fprintf(fp, "map-to %s ",
230 fprintf(stderr, "Not sending a binary stream to stdout\n")
    [all...]
  /external/iptables/extensions/
libxt_owner.c 227 unsigned int *to, const char *opt)
234 *to = *from;
236 if (!xtables_strtoui(end + 1, &end, to, 0, UINT32_MAX - 1))
247 unsigned int from, to; local
253 from = to = pwd->pw_uid;
255 owner_parse_range(cb->arg, &from, &to, "--uid-owner");
260 info->uid_max = to;
264 from = to = grp->gr_gid;
266 owner_parse_range(cb->arg, &from, &to, "--gid-owner");
271 info->gid_max = to;
    [all...]
  /external/libvncserver/common/
d3des.c 20 * Thanks to: Dan Hoey for his excellent Initial and Inverse permutation
143 register unsigned long *to, *endp; local
145 to = KnL, endp = &KnL[32];
146 while( to < endp ) *to++ = *from++;
  /external/libxml2/
error.c 65 * @msg: the message to display/transmit
87 * to the builtin error function.
103 * Function to reset the handler and the error context for out of
107 * be passed as first argument to @handler
108 * One can simply force messages to be emitted to another FILE * than
109 * stderr by setting @ctx to this file handle and @handler to NULL.
126 * Function to reset the handler and the error context for out of
130 * be passed as first argument to @handle
466 xmlErrorPtr to = &xmlLastError; local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
QuicktimeTextTrackImpl.java 10 * Unless required by applicable law or agreed to in writing, software
84 lastEnd = sub.to;
103 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
104 lastEnd = sub.to;
132 long to; field in class:QuicktimeTextTrackImpl.Line
136 public Line(long from, long to, String text) {
138 this.to = to;
151 return to;
TextTrackImpl.java 10 * Unless required by applicable law or agreed to in writing, software
87 lastEnd = sub.to;
106 stts.add(new TimeToSampleBox.Entry(1, sub.to - sub.from));
107 lastEnd = sub.to;
135 long to; field in class:TextTrackImpl.Line
139 public Line(long from, long to, String text) {
141 this.to = to;
154 return to;
  /external/opencv3/3rdparty/libpng/
pngset.c 13 * The functions here are used during reads to store data from the file
14 * into the info struct, and during writes to store application data
16 * info struct and allows us to change the structure in the future.
147 /* Changed in libpng-1.5.4 to limit the values to ensure overflow can't
149 * possible for 1/gamma to overflow the limit of 21474 and this means the
151 * safety the limits here are a little narrower. The values are 0.00016 to
197 /* Changed from info->num_palette to PNG_MAX_PALETTE_LENGTH in
260 - 7*8 /* rounding of width to multiple of 8 pixels */
455 /* Convert 'width' and 'height' to ASCII. *
984 png_sPLT_tp to = np + info_ptr->splt_palettes_num + i; local
1056 png_unknown_chunkp to = np + info_ptr->unknown_chunks_num + i; local
    [all...]
  /external/opencv3/modules/cudaimgproc/src/
mssegmentation.cpp 5 // By downloading, copying, installing or using the software you agree to this license.
6 // If you do not agree to this license, do not download, install,
27 // * The name of the copyright holders may not be used to endorse or promote products
31 // any express or implied warranties, including, but not limited to, the implied
35 // (including, but not limited to, procurement of substitute goods or services;
78 GraphEdge(int to_, int next_, const T& val_) : to(to_), next(next_), val(val_) {}
79 int to; member in struct:__anon21474::GraphEdge
93 void addEdge(int from, int to, const T& val=T());
124 : from(from_), to(to_), val(val_) {}
130 int to; member in struct:__anon21474::SegmLink
    [all...]
  /external/opencv3/modules/stitching/src/
matchers.cpp 5 // By downloading, copying, installing or using the software you agree to this license.
6 // If you do not agree to this license, do not download, install,
27 // * The name of the copyright holders may not be used to endorse or promote products
31 // any express or implied warranties, including, but not limited to, the implied
35 // (including, but not limited to, procurement of substitute goods or services;
77 int to = near_pairs[i].second; local
78 int pair_idx = from*num_images + to;
80 matcher(features[from], features[to], pairwise_matches[pair_idx]);
82 pairwise_matches[pair_idx].dst_img_idx = to;
84 size_t dual_pair_idx = to*num_images + from
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSimpleCursorAdapter.java 10 * Unless required by applicable law or agreed to in writing, software
35 * An easy adapter to map columns from a cursor to TextViews or ImageViews
37 * views you want to display the columns, and the XML file that defines
44 * returned value is false and the view to bind is a TextView,
46 * is false and the view to bind is an ImageView,
54 * to get control over the filtering process. You can refer to
63 * A list of columns containing the data to bind to the UI
132 final int[] to = mTo; local
    [all...]
  /external/skia/src/animator/
SkAnimateActive.cpp 305 SkOperand* to = &from[animate->components()]; local
312 SkScalar delta = to[cIndex].fScalar - from[cIndex].fScalar;
314 delta = to[cIndex].fScalar - existingValues[cIndex].fScalar;
325 fInterpolators[index]->setKeyFrame(1, fState[index].fDuration, to, animate->blend[0]);
472 // there should only be one animate object, not two, to go up and down
473 // when the apply with reverse came into play, it needs to pick up the value
476 // it needs to be synchronized with
479 // when one replaces the other, it may make sense to pick up the old value as a starting
  /external/toybox/scripts/
config2help.c 85 // Moves *help to new start of text (in case dash lines were at beginning).
86 // Sets *from to where dash lines removed from (in case they weren't).
116 // because zap_blank_lines skipped blank lines, and we had to have at least
117 // one non-blank line (a dash line) to get this far.
123 // Count number of dashlines, copy out to array, zap trailing whitespace
242 // Collate help according to usage, depends, and .config
261 // text out of throw into catch, copying from this to that
275 // Grab option description lines to collate from catch and throw
340 char *from = this+2, *to = that+2; local
341 int ff = strcspn(from, " ]"), tt = strcspn(to, " ]");
    [all...]
  /external/v8/src/compiler/
control-equivalence.h 18 // classes can in turn be used to:
22 // Note that this implementation actually uses cycle equivalence to establish
25 // to undirected cycle equivalence for strongly connected control flow graphs.
29 // also contains proofs for the aforementioned equivalence. References to line
42 // 1) A breadth-first backwards traversal to determine the set of nodes that
63 Node* to; // Node that this bracket points to. member in struct:v8::internal::compiler::final::Bracket
74 Node* node; // Node that this stack entry belongs to.
81 size_t class_number; // Equivalence class number assigned to node.
82 size_t dfs_number; // Pre-order DFS number assigned to node
    [all...]

Completed in 764 milliseconds

1 2 3 4 5 6 7 891011>>