Home
last modified time | relevance | path

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

12345678910>>...65

/external/rust/crates/bindgen/src/codegen/
Dbitfield_unit_tests.rs80 With $storage:expr , then get($start:expr, $len:expr) is $expected:expr;
104 With [0b11100010], then get(0, 1) is 0;
105 With [0b11100010], then get(1, 1) is 1;
106 With [0b11100010], then get(2, 1) is 0;
107 With [0b11100010], then get(3, 1) is 0;
108 With [0b11100010], then get(4, 1) is 0;
109 With [0b11100010], then get(5, 1) is 1;
110 With [0b11100010], then get(6, 1) is 1;
111 With [0b11100010], then get(7, 1) is 1;
113 With [0b11100010], then get(0, 2) is 0b10;
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DWith.java35 public final class With<V> implements Iterable<V>, Iterator<V> { class
211 public static With<CharSequence> codePoints(CharSequence... charSequences) { in codePoints()
212 return new With<CharSequence>().andCodePoints(charSequences); in codePoints()
230 public static <V> With<V> in(Iterator<V>... iterators) { in in()
231 return new With<V>().and(iterators); in in()
248 public static <V> With<V> in(Iterable<V>... iterables) { in in()
249 return new With<V>().and(iterables); in in()
266 public static <V> With<V> in(V... items) { in in()
267 return new With<V>().and(items); in in()
279 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/rust/crates/futures-util/src/sink/
Dwith.rs14 pub struct With<Si, Item, U, Fut, F> {
24 impl<Si, Item, U, Fut, F> fmt::Debug for With<Si, Item, U, Fut, F> implementation
37 impl<Si, Item, U, Fut, F> With<Si, Item, U, Fut, F> implementation
56 impl<Si, Item, U, Fut, F> Clone for With<Si, Item, U, Fut, F> implementation
73 impl<S, Item, U, Fut, F> Stream for With<S, Item, U, Fut, F> implementation
83 impl<Si, Item, U, Fut, F, E> With<Si, Item, U, Fut, F> impl
108 impl<Si, Item, U, Fut, F, E> Sink<U> for With<Si, Item, U, Fut, F> implementation
/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/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;
DMissingTokenException.h43 With:(id<Token>)insertedToken;
45 - (id) init:(NSInteger)expected Stream:(id<IntStream>)anInput With:(id<Token>)insertedToken;
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;
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;
/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/markdown/tests/misc/
Dlists5.txt2 > With just two lines
7 > With a list item inside the quote
/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter_test.cc550 .With(Args<0>(HasObjectLocation("i32"))); in TEST_P()
553 .With(Args<0>(HasObjectLocation("u32"))); in TEST_P()
556 .With(Args<0>(HasObjectLocation("sf64"))); in TEST_P()
559 .With(Args<0>(HasObjectLocation("bool"))); in TEST_P()
583 .With(Args<0>(HasObjectLocation("i32"))); in TEST_P()
586 .With(Args<0>(HasObjectLocation("u32"))); in TEST_P()
589 .With(Args<0>(HasObjectLocation("sf64"))); in TEST_P()
592 .With(Args<0>(HasObjectLocation("bool"))); in TEST_P()
667 .With(Args<0>(HasObjectLocation("author"))); in TEST_P()
763 .With(Args<0>(HasObjectLocation(""))); in TEST_P()
[all …]
/external/tensorflow/tensorflow/python/distribute/
DREADME.md19 [Distributed Training With Keras Tutorial](https://www.tensorflow.org/tutorials/distribute/keras)
21 [Distributed Training With Custom Training Loops Tutorial](https://www.tensorflow.org/tutorials/dis…
23 [Multiworker Training With Keras Tutorial](https://www.tensorflow.org/tutorials/distribute/multi_wo…
25 [Multiworker Training With Estimator Tutorial](https://www.tensorflow.org/tutorials/distribute/mult…
/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/llvm-project/llvm/test/MC/RISCV/
Drv64zbbp-valid.s1 # With B extension:
8 # With Bitmanip base extension:
15 # With Bitmanip permutation extension:
/external/webrtc/modules/rtp_rtcp/source/
Dflexfec_receiver_unittest.cc243 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
265 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
275 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
314 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
367 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
407 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
536 .With(Args<0, 1>(ElementsAreArray((*media_packet1)->data.cdata(), in TEST_F()
540 .With(Args<0, 1>(ElementsAreArray((*media_packet4)->data.cdata(), in TEST_F()
638 .With(Args<0, 1>(ElementsAreArray((*media_it)->data.cdata(), in TEST_F()
/external/cldr/tools/java/org/unicode/cldr/draft/
DFileUtilities.java26 import org.unicode.cldr.util.With;
27 import org.unicode.cldr.util.With.SimpleIterator;
453 return With.in(new FileLines(openFile(class1, file, UTF8))); in in()
466 return With.in(new FileLines(openFile(class1, file, charset))); in in()
479 return With.in(new FileLines(openFile(directory, file, UTF8))); in in()
492 return With.in(new FileLines(reader)); in in()
505 return With.in(new FileLines(openFile(directory, file, charset))); in in()
578 return With.in(new FileLines(openFile(file, UTF8))); in in()
/external/llvm-project/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-generated-function-mockers.h73 MockSpec<F>& With() { in With() function
93 MockSpec<F>& With(const Matcher<A1>& m1) { in With() function
114 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2) { in With() function
135 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
157 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
180 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
203 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
228 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
253 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
278 MockSpec<F>& With(const Matcher<A1>& m1, const Matcher<A2>& m2, in With() function
[all …]
/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/llvm-project/llvm/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h116 static void replaceAllUsesWithDefault(Instruction *I, Value *With) { in replaceAllUsesWithDefault() argument
117 I->replaceAllUsesWith(With); in replaceAllUsesWithDefault()
124 void replaceAllUsesWith(Instruction *I, Value *With);
130 void substituteInParent(Instruction *I, Value *With) { in substituteInParent() argument
131 replaceAllUsesWith(I, With); in substituteInParent()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h116 static void replaceAllUsesWithDefault(Instruction *I, Value *With) { in replaceAllUsesWithDefault() argument
117 I->replaceAllUsesWith(With); in replaceAllUsesWithDefault()
124 void replaceAllUsesWith(Instruction *I, Value *With);
130 void substituteInParent(Instruction *I, Value *With) { in substituteInParent() argument
131 replaceAllUsesWith(I, With); in substituteInParent()

12345678910>>...65