Home
last modified time | relevance | path

Searched refs:With (Results 1 – 25 of 1301) sorted by relevance

12345678910>>...53

/external/cldr/tools/java/org/unicode/cldr/util/
DWith.java35 public final class With<V> implements Iterable<V>, Iterator<V> { class
190 public static With<CharSequence> codePoints(CharSequence... charSequences) { in codePoints()
191 return new With<CharSequence>().andCodePoints(charSequences); in codePoints()
209 public static <V> With<V> in(Iterator<V>... iterators) { in in()
210 return new With<V>().and(iterators); in in()
227 public static <V> With<V> in(Iterable<V>... iterables) { in in()
228 return new With<V>().and(iterables); in in()
245 public static <V> With<V> in(V... items) { in in()
246 return new With<V>().and(items); in in()
258 return new With<T>().and(sources); in in()
[all …]
DStringIterables.java7 import org.unicode.cldr.util.With.SimpleIterator;
27 return With.in(new FileLines(FileReaders.openFile(class1, file, CldrUtility.UTF8))); in in()
40 return With.in(new FileLines(FileReaders.openFile(class1, file, charset))); in in()
53 return With.in(new FileLines(FileReaders.openFile(directory, file, CldrUtility.UTF8))); in in()
66 return With.in(new FileLines(reader)); in in()
79 return With.in(new FileLines(FileReaders.openFile(directory, file, charset))); in in()
DTransformer.java33 …public static <S, V> With<V> iterable(Transform<S, ? extends V> transform, Iterator<? extends S> i… in iterable()
34 return With.in(new Transformer<S, V>(transform, iterator)); in iterable()
37 …public static <S, V> With<V> iterable(Transform<S, ? extends V> transform, Iterable<? extends S> i… in iterable()
38 return With.in(new Transformer<S, V>(transform, iterable.iterator())); in iterable()
41 public static <S, V> With<V> iterable(Transform<S, ? extends V> transform, S... items) { in iterable()
42 return With.in(new Transformer<S, V>(transform, Arrays.asList(items).iterator())); in iterable()
/external/markdown/MarkdownTest/Tests_2007/
DLinks, inline style.text17 [With parens in the URL](http://en.wikipedia.org/wiki/WIMP_(computing))
19 (With outer parens and [parens in url](/foo(bar)))
22 [With parens in the URL](/foo(bar) "and a title")
24 (With outer parens and [parens in url](/foo(bar) "and a title"))
/external/deqp/doc/testspecs/GLES31/
Dfunctional.shaders.sample_variables.txt47 program. With texture targets, each sample encodes its gl_SampleID to the
48 fragment output value and then texture contents are verified. With default
67 With texture render targets, the texture contents are read and positions are
68 verified for legality, uniqueness and distribution. With framebuffer and
86 GL_SAMPLE_MASK. With single sample render targets gl_SampleMaskIn should not
104 to gl_SampleMask output variable. With single sample targets, writing to
105 gl_SampleMask should have no effect. With multisample targets the result image
106 color intensity should decrease. With multisample targets with sample count = 1,
110 SAMPLE_MASK. With multisample render targets, all fragments should be discarded.
111 With single sample render targets, writing to gl_SampleMask should have no
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter_test.cc377 .With(Args<0>(HasObjectLocation("i32"))); in TEST_P()
380 .With(Args<0>(HasObjectLocation("u32"))); in TEST_P()
383 .With(Args<0>(HasObjectLocation("sf64"))); in TEST_P()
386 .With(Args<0>(HasObjectLocation("bool"))); in TEST_P()
410 .With(Args<0>(HasObjectLocation("i32"))); in TEST_P()
413 .With(Args<0>(HasObjectLocation("u32"))); in TEST_P()
416 .With(Args<0>(HasObjectLocation("sf64"))); in TEST_P()
419 .With(Args<0>(HasObjectLocation("bool"))); in TEST_P()
494 .With(Args<0>(HasObjectLocation("author"))); in TEST_P()
590 .With(Args<0>(HasObjectLocation(""))); in TEST_P()
[all …]
/external/google-fruit/tests/
Dtested_features.md6 * **TODO** With assisted params
36 * **TODO** With all kinds of non-normalized params (esp. with INJECT)
37 * **TODO** With a constructor mistakenly taking an Assisted<X> or Annotated<A,X> parameter (instead…
49 * **TODO** With a lambda mistakenly taking an Assisted<X> or Annotated<A,X> parameter (instead of j…
51 * With a provider that returns nullptr (runtime error)
63 * With some assisted params and some injected params
64 * **TODO** With no assisted params but some injected params
65 * With some assisted params but no injected params
66 * **TODO** With no assisted params and no injected params
68 * **TODO** With a lambda mistakenly taking a Assisted<X>/Annotated<A,X> parameter (instead of just …
[all …]
/external/antlr/runtime/ObjC/Framework/
DCommonTreeAdaptor.h59 - (void)setParent:(CommonTree *)t With:(CommonTree *)parent;
61 - (void)setChildIndex:(CommonTree *)t With:(NSInteger)index;
62 …monTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(CommonTree *)t;
DBaseTree.h54 - (void) setChild:(NSInteger) i With:(id<BaseTree>)t;
57 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
130 - (void) setChild:(NSUInteger) i With:(id<BaseTree>)t;
133 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id) t;
DMissingTokenException.h43 With:(id<Token>)insertedToken;
45 - (id) init:(NSInteger)expected Stream:(id<IntStream>)anInput With:(id<Token>)insertedToken;
DTreeAdaptor.h145 - (void) setParent:(id)t With:(id)parent;
152 - (void) setChildIndex:(id)t With:(NSInteger)index;
154 …replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
DBaseTreeAdaptor.h138 - (void) setParent:(id<BaseTree>)t With:(id<BaseTree>) parent;
145 - (void) setChildIndex:(id)t With:(NSInteger)index;
147 …replaceChildren:(id)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
DTree.h71 - (void) setChild:(NSInteger)i With:(id<Tree>) t;
80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
DMissingTokenException.m44 With:(id<Token>)insertedToken
46 return [[MissingTokenException alloc] init:expected Stream:anInput With:insertedToken];
56 - (id) init:(NSInteger)expected Stream:(id<IntStream>)anInput With:(id<Token>)insertedToken
/external/harfbuzz_ng/test/fuzzing/
DREADME4 - With -fsanitize=address (or =undefined, or a combination)
5 - With -fsanitize-coverage=edge[,8bit-counters,trace-cmp]
6 - With various defines that limit worst case exponential behavior.
/external/google-breakpad/src/testing/include/gmock/
Dgmock-generated-function-mockers.h67 MockSpec<F>& With() { in With() function
87 MockSpec<F>& With(const Matcher<A1>& m1) { in With() function
108 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2) { in With() function
129 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
151 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
174 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
198 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
223 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
248 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
273 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
[all …]
/external/markdown/tests/misc/
Dlists5.txt2 > With just two lines
7 > With a list item inside the quote
/external/swiftshader/third_party/llvm-7.0/llvm/test/TableGen/
Dcode.td11 // CHECK: code Code = [{With paste 7}];
20 class B<int i> : A<"With paste " # i>;
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-generated-function-mockers.h71 MockSpec<F>& With() { in With() function
91 MockSpec<F>& With(const Matcher<A1>& m1) { in With() function
112 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2) { in With() function
133 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
155 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
178 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
201 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
226 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
251 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
276 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
[all …]
/external/deqp/doc/testspecs/GLES3/
Dfunctional.fence_sync.txt27 - With varying number of primitive draws
29 - With varying number of primitive draws
30 - With varying timeouts
/external/cldr/tools/java/org/unicode/cldr/draft/
DFileUtilities.java23 import org.unicode.cldr.util.With;
24 import org.unicode.cldr.util.With.SimpleIterator;
446 return With.in(new FileLines(openFile(class1, file, UTF8))); in in()
459 return With.in(new FileLines(openFile(class1, file, charset))); in in()
472 return With.in(new FileLines(openFile(directory, file, UTF8))); in in()
485 return With.in(new FileLines(reader)); in in()
498 return With.in(new FileLines(openFile(directory, file, charset))); in in()
571 return With.in(new FileLines(openFile(file, UTF8))); in in()
/external/fonttools/Tests/feaLib/data/
Dspec8c.fea4 # With no platform ID, script ID, or language ID specified, the implementation assumes (3,1,0x409).
8 # With only the platform ID specified, the implementation assumes script and language = Latin. For …
/external/zlib/src/contrib/masmx86/
Dreadme.txt22 * With Microsoft C and MASM:
25 * With Borland C and TASM:
/external/llvm/test/Transforms/Reassociate/
Dsubtest.ll3 ; With sub reassociation, constant folding can eliminate the 12 and -12 constants.
15 ; With sub reassociation, constant folding can eliminate the uses of %a.
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Reassociate/
Dsubtest.ll3 ; With sub reassociation, constant folding can eliminate the 12 and -12 constants.
16 ; With sub reassociation, constant folding can eliminate the uses of %a.

12345678910>>...53