HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 101 - 125 of 4045) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guice/core/src/com/google/inject/spi/
TypeConverterBinding.java 37 private final Object source; field in class:TypeConverterBinding
42 public TypeConverterBinding(Object source, Matcher<? super TypeLiteral<?>> typeMatcher,
44 this.source = checkNotNull(source, "source");
50 return source;
71 + " (bound at " + Errors.convert(source) + ")";
TypeListenerBinding.java 35 private final Object source; field in class:TypeListenerBinding
39 TypeListenerBinding(Object source, TypeListener listener,
41 this.source = source;
57 return source;
  /external/guice/extensions/grapher/src/com/google/inject/grapher/
Node.java 29 * When set to true, the source object is ignored in {@link #equals} and {@link #hashCode}.
35 private final Object source; field in class:Node
37 protected Node(NodeId id, Object source) {
39 this.source = source;
47 return source;
56 && (ignoreSourceInComparisons || Objects.equal(source, other.source));
60 return ignoreSourceInComparisons ? id.hashCode() : Objects.hashCode(id, source);
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/object/
IsEventFrom.java 15 private final Object source; field in class:IsEventFrom
17 public IsEventFrom(Class<?> eventClass, Object source) {
19 this.source = source;
30 mismatchDescription.appendText("source was ").appendValue(item.getSource());
38 return ev.getSource() == source;
46 .appendValue(source);
51 * derived from <var>eventClass</var> announced by <var>source</var>.
57 * @param source
58 * the source of the even
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
RegexUtilitiesTest.java 1 /* GENERATED SOURCE. DO NOT MODIFY. */
54 final String source = tests[i][0]; local
55 String expected = tests[i].length == 1 ? source : tests[i][1];
56 String actual = UnicodeRegex.fix(source);
57 assertEquals(source, expected, actual);
  /external/icu/icu4c/source/common/
ucnv_cb.cpp 38 const char* source,
49 source, length,
57 const UChar** source,
86 source,
103 In fact, here's where we want to return the partially consumed in-source!
106 /* && (*source < sourceLimit && args->target >= args->targetLimit)
141 source,
203 const UChar *source = (const UChar *)converter->subChars; local
204 ucnv_cbFromUWriteUChars(args, &source, source - length, offsetIndex, err)
    [all...]
  /external/icu/icu4c/source/common/unicode/
caniter.h 78 * @param source string to get results for
82 CanonicalIterator(const UnicodeString &source, UErrorCode &status);
91 * Gets the NFD form of the current source we are iterating over.
92 * @return gets the source: NOTE: it is the NFD form of source
113 * Set a new source for this iterator. Allows object reuse.
114 * @param newSource the source string to iterate against. This allows the same iterator to be used
115 * while changing the source string, saving object creation.
125 * @param source the string to find permutations for
131 static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status)
167 UnicodeString source; member in class:U_FINAL
    [all...]
  /external/icu/icu4c/source/i18n/
tridpars.h 33 * A basic ID, which contains source, target, and variant, but no
58 * 'source' and 'target' will always be non-null. The 'variant'
61 * 'sawSource' is true if there was an explicit source in the
62 * parsed id. If there was no explicit source, then an implied
63 * source of ANY is returned and 'sawSource' is set to false.
70 UnicodeString source; // not null member in class:TransliteratorIDParser::Specs
219 * S-T/V, or S/V-T. If the source is missing, return a source of
222 * @param source the given source
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccurrtst.c 102 UChar source[2], target[2]; local
124 u_strcpy(source, currency[i]);
140 compareResult = ucol_strcoll(c, source, u_strlen(source), target, u_strlen(target));
144 sortklen=ucol_getSortKey(c, source, u_strlen(source), NULL, 0);
146 ucol_getSortKey(c, source, u_strlen(source), sortKey1, sortklen+1);
157 reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, compareResult, expectedResult );
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RegexUtilitiesTest.java 51 final String source = tests[i][0]; local
52 String expected = tests[i].length == 1 ? source : tests[i][1];
53 String actual = UnicodeRegex.fix(source);
54 assertEquals(source, expected, actual);
  /external/iptables/include/linux/netfilter_ipv4/
ipt_addrtype.h 14 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
21 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info
  /external/kernel-headers/original/uapi/linux/
udp.h 24 __be16 source; member in struct:udphdr
  /external/libchrome/base/posix/
file_descriptor_shuffle.h 2 // Use of this source code is governed by a BSD-style license that can be
59 : source(in_source),
64 int source; member in struct:base::InjectionArc
66 bool close; // if true, delete the source element after performing the
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/
weak_ptr.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
58 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function
108 std::weak_ptr<A> pA = source(ps);
weak_ptr_Y.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
56 std::weak_ptr<T> source (std::shared_ptr<T> p) { return std::weak_ptr<T>(p); } function
102 std::weak_ptr<A> pA = source(ps);
  /external/libcxx/test/std/utilities/utility/forward/
forward_03.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
21 A source() {return A();} function
46 // static_assert(sizeof(test(std::forward<A>(source()))) == 2, "");
49 static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, "");
51 static_assert(sizeof(test(std::forward<const A>(source()))) == 2, "");
  /external/libgsm/tst/
cod2lin.c 32 gsm_signal source[160]; local
37 (void)memset(source, 0x00, sizeof(source));
48 cc = fread((char *)source, sizeof(*source), 76, f);
62 gsm_implode(r, source, buf);
63 gsm_decode(r, buf, source);
65 if (write(1, source, sizeof(source)) != sizeof(source)) {
    [all...]
cod2txt.c 30 gsm_signal source[160]; local
36 (void)memset(source, 0, sizeof(source));
45 cc = fread((char *)source, sizeof(*source), 76, f);
59 gsm_implode(r, source, buf);
gsm2cod.c 30 gsm_signal source[76]; local
36 (void)memset(source, 0, sizeof(source));
59 gsm_explode(r, buf, source);
60 if (write(1, (char *)source, sizeof(source))!= sizeof(source)) {
lin2cod.c 31 short source[160]; local
45 if ((cc = fread((char *)source, 1, sizeof(source), f)) == 0) {
53 if (cc != sizeof(source)) {
62 gsm_encode(r, source, buf);
63 gsm_explode(r, buf, source); /* 76 shorts */
64 if (write(1, source, sizeof(*source) * 76)
65 != sizeof(*source) * 76) {
lin2txt.c 28 short source[160]; local
40 if ((cc = fread((char *)source, 1, sizeof(source), f)) == 0) {
52 printf("%d", (int)source[ j * 40 + k ]);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
program.cpp 29 program::program(clover::context &ctx, const std::string &source) :
30 has_source(true), context(ctx), _source(source), _kernel_ref_counter(0) {
92 program::source() const { function in class:program
  /external/mesa3d/src/mesa/state_tracker/
st_debug.c 121 enum mesa_debug_source source; local
127 source = MESA_DEBUG_SOURCE_API;
132 source = MESA_DEBUG_SOURCE_API;
137 source = MESA_DEBUG_SOURCE_SHADER_COMPILER;
142 source = MESA_DEBUG_SOURCE_API;
147 source = MESA_DEBUG_SOURCE_API;
152 source = MESA_DEBUG_SOURCE_API;
157 source = MESA_DEBUG_SOURCE_API;
164 _mesa_gl_vdebug(st->ctx, id, source, type, severity, fmt, args);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/io/
FileSystem.java 23 import okio.Source;
31 * <p>All operations on a file system are racy. For example, guarding a call to {@link #source}
43 @Override public Source source(File file) throws FileNotFoundException {
44 return Okio.source(file);
106 Source source(File file) throws FileNotFoundException; method in interface:FileSystem
  /external/python/cpython3/Tools/scripts/
abitype.py 170 source = sys.stdin.read() variable
172 while pos != len(source):
173 m = tokenizer.match(source, pos)
180 nl = source.find('\n', pos)
182 line = source[pos:]
184 line = source[pos:nl+1]

Completed in 256 milliseconds

1 2 3 45 6 7 8 91011>>