| /external/one-true-awk/testdir/ |
| D | lilly.out | 2 ### BEGIN{foo=6;print foo/2}: 5 ### BEGIN{foo=10;foo/=2;print foo}: 9 foo=bar 10 foo==bar 11 foo+=bar 12 foo-=bar 13 foo*=bar 14 foo/=bar 15 foo^=bar 16 foo%=bar [all …]
|
| /external/apache-velocity-engine/velocity-engine-core/src/test/resources/bc_mode/compare/ |
| D | test_bc_mode.bc_mode_disabled | 7 foo=$foo => disp miss [foo=$foo] => foo=$foo 8 foo=$foo => setn miss [foo=$foo] => foo=$foo 9 foo=$foo => setv miss [foo=inn] => foo=inn 11 foo=$foo => disp null [foo=$foo] => foo=$foo 12 foo=$foo => setn null [foo=$foo] => foo=$foo 13 foo=$foo => setv null [foo=inn] => foo=inn 15 foo=$foo => disp ncol [foo=$foo] => foo=$foo 16 foo=$foo => setn ncol [foo=$foo] => foo=$foo 17 foo=$foo => setv ncol [foo=inn] => foo=inn 19 foo=$foo => disp coll [foo=$foo] => foo=$foo [all …]
|
| D | test_bc_mode.bc_mode_enabled | 7 foo=$foo => disp miss [foo=$foo] => foo=$foo 8 foo=$foo => setn miss [foo=$foo] => foo=$foo 9 foo=$foo => setv miss [foo=inn] => foo=inn 11 foo=$foo => disp null [foo=$null] => foo=$foo 12 foo=$foo => setn null [foo=$foo] => foo=$foo 13 foo=$foo => setv null [foo=inn] => foo=inn 15 foo=$foo => disp ncol [foo=$bar] => foo=$foo 16 foo=$foo => setn ncol [foo=$foo] => foo=$foo 17 foo=$foo => setv ncol [foo=inn] => foo=inn 19 foo=$foo => disp coll [foo=$foo] => foo=$foo [all …]
|
| /external/python/cpython2/Lib/test/ |
| D | test_shlex.py | 16 foo bar|foo|bar| 17 foo bar|foo|bar| 18 foo bar |foo|bar| 19 foo bar bla fasel|foo|bar|bla|fasel| 24 foo \x bar|foo|\|x|bar| 25 foo \ x bar|foo|\|x|bar| 26 foo \ bar|foo|\|bar| 27 foo "bar" bla|foo|"bar"|bla| 28 "foo" "bar" "bla"|"foo"|"bar"|"bla"| 29 "foo" bar "bla"|"foo"|bar|"bla"| [all …]
|
| /external/python/cpython3/Lib/test/ |
| D | test_shlex.py | 12 foo bar|foo|bar| 13 foo bar|foo|bar| 14 foo bar |foo|bar| 15 foo bar bla fasel|foo|bar|bla|fasel| 20 foo \x bar|foo|\|x|bar| 21 foo \ x bar|foo|\|x|bar| 22 foo \ bar|foo|\|bar| 23 foo "bar" bla|foo|"bar"|bla| 24 "foo" "bar" "bla"|"foo"|"bar"|"bla"| 25 "foo" bar "bla"|"foo"|bar|"bla"| [all …]
|
| D | test_module.py | 24 foo = ModuleType.__new__(ModuleType) 25 self.assertTrue(isinstance(foo.__dict__, dict)) 26 self.assertEqual(dir(foo), []) 28 s = foo.__name__ 32 self.assertEqual(foo.__doc__, ModuleType.__doc__) 37 foo = ModuleType.__new__(ModuleType) 40 getattr, foo, "not_here") 45 foo = ModuleType("foo") 47 AttributeError, "module 'foo' has no attribute 'not_here'", 48 getattr, foo, "not_here") [all …]
|
| D | test_copy.py | 33 def __init__(self, foo): argument 34 self.foo = foo 36 return C(self.foo) 40 self.assertEqual(y.foo, x.foo) 44 def __new__(cls, foo): argument 46 obj.foo = foo 49 return (C, (obj.foo,)) 56 self.assertEqual(y.foo, x.foo) 129 x = {"foo": 1, "bar": 2} 166 def __init__(self, foo): argument [all …]
|
| /external/cronet/base/android/junit/src/org/chromium/base/ |
| D | UnownedUserDataKeyTest.java | 92 private static class Foo extends TestUnownedUserData { class in UnownedUserDataKeyTest 93 public static final UnownedUserDataKey<Foo> KEY = new UnownedUserDataKey<>(Foo.class); 100 private final Foo mFoo = new Foo(); 129 assertEquals(Foo.KEY, Foo.KEY); in testKeyEquality() 130 assertNotEquals(Foo.KEY, new UnownedUserDataKey<>(Foo.class)); in testKeyEquality() 131 assertNotEquals(Foo.KEY, Bar.KEY); in testKeyEquality() 132 assertNotEquals(Foo.KEY, null); in testKeyEquality() 133 assertNotEquals(Foo.KEY, new Object()); in testKeyEquality() 139 assertFalse(Foo.KEY.isAttachedToHost(mHost1)); in testSingleItemSingleHost_retrievalReturnsNullBeforeAttachment() 140 assertFalse(Foo.KEY.isAttachedToAnyHost(mFoo)); in testSingleItemSingleHost_retrievalReturnsNullBeforeAttachment() [all …]
|
| /external/rust/crates/tracing/tests/ |
| D | macros.rs | 26 span!(target: "foo_events", Level::DEBUG, "foo", bar.baz = ?2, quux = %3, quuux = 4); in span() 27 span!(target: "foo_events", Level::DEBUG, "foo", bar.baz = 2, quux = 3); in span() 28 span!(target: "foo_events", Level::DEBUG, "foo", bar.baz = 2, quux = 4,); in span() 29 span!(target: "foo_events", Level::DEBUG, "foo"); in span() 31 span!(Level::DEBUG, "foo", bar.baz = 2, quux = 3); in span() 32 span!(Level::DEBUG, "foo", bar.baz = 2, quux = 4,); in span() 33 span!(Level::DEBUG, "foo", bar.baz = 2, quux = 3); in span() 34 span!(Level::DEBUG, "foo", bar.baz = 2, quux = 4,); in span() 35 span!(Level::DEBUG, "foo", bar.baz = ?2); in span() 36 span!(Level::DEBUG, "foo", bar.baz = %2); in span() [all …]
|
| /external/ksp/test-utils/testData/api/ |
| D | varianceTypeCheck.kt | 23 // Any ?= Foo<*> : true 24 // Any ?= Foo<A> : true 25 // Any ?= Foo<C> : true 26 // Any ?= Foo<in B> : true 27 // Any ?= Foo<out B> : true 30 // Any? ?= Foo<*> : true 31 // Any? ?= Foo<A> : true 32 // Any? ?= Foo<C> : true 33 // Any? ?= Foo<in B> : true 34 // Any? ?= Foo<out B> : true [all …]
|
| /external/gson/gson/src/test/java/com/google/gson/functional/ |
| D | TypeAdapterPrecedenceTest.java | 40 .registerTypeAdapter(Foo.class, newSerializer("serializer 1")) in testNonstreamingFollowedByNonstreaming() 41 .registerTypeAdapter(Foo.class, newSerializer("serializer 2")) in testNonstreamingFollowedByNonstreaming() 42 .registerTypeAdapter(Foo.class, newDeserializer("deserializer 1")) in testNonstreamingFollowedByNonstreaming() 43 .registerTypeAdapter(Foo.class, newDeserializer("deserializer 2")) in testNonstreamingFollowedByNonstreaming() 45 assertEquals("\"foo via serializer 2\"", gson.toJson(new Foo("foo"))); in testNonstreamingFollowedByNonstreaming() 46 assertEquals("foo via deserializer 2", gson.fromJson("foo", Foo.class).name); in testNonstreamingFollowedByNonstreaming() 52 .registerTypeAdapter(Foo.class, newTypeAdapter("type adapter 1")) in testStreamingFollowedByStreaming() 53 .registerTypeAdapter(Foo.class, newTypeAdapter("type adapter 2")) in testStreamingFollowedByStreaming() 55 assertEquals("\"foo via type adapter 2\"", gson.toJson(new Foo("foo"))); in testStreamingFollowedByStreaming() 56 assertEquals("foo via type adapter 2", gson.fromJson("foo", Foo.class).name); in testStreamingFollowedByStreaming() [all …]
|
| /external/cronet/third_party/libc++/src/test/std/input.output/filesystems/class.path/path.member/path.decompose/ |
| D | path.decompose.pass.cpp | 84 , {"foo", {"foo"}, "", "", "", "foo", "", "foo"} 86 , {"/foo", {"/", "foo"}, "/", "", "/", "foo", "/", "foo"} 87 , {"foo/", {"foo", ""}, "", "", "", "foo/", "foo", ""} 88 , {"/foo/", {"/", "foo", ""}, "/", "", "/", "foo/", "/foo", ""} 89 , {"foo/bar", {"foo","bar"}, "", "", "", "foo/bar", "foo", "bar"} 90 , {"/foo//bar", {"/","foo","bar"}, "/", "", "/", "foo/bar", "/foo", "bar"} 94 , {"//net/foo", {"//net", "/", "foo"}, "//net/", "//net", "/", "foo", "//net/", "foo"} 98 , {"//net/foo", {"/", "net", "foo"}, "/", "", "/", "net/foo", "/net", "foo"} 100 , {"///foo///", {"/", "foo", ""}, "/", "", "/", "foo///", "///foo", ""} 101 , {"///foo///bar", {"/", "foo", "bar"}, "/", "", "/", "foo///bar", "///foo", "bar"} [all …]
|
| /external/python/cpython3/Lib/test/test_importlib/ |
| D | test_namespace_pkgs.py | 75 import foo.one 76 self.assertEqual(foo.one.attr, 'portion1 foo one') 80 import foo.two 83 import foo.one 86 self.assertEqual(foo.__spec__.loader.module_repr(foo), 87 "<module 'foo' (namespace)>") 94 # Make sure only 'foo.one' can be imported 95 import foo.one 96 self.assertEqual(foo.one.attr, 'portion1 foo one') 99 import foo.two [all …]
|
| /external/bazel-skylib/tests/ |
| D | paths_tests.bzl | 27 asserts.equals(env, "bar", paths.basename("foo///bar")) 30 asserts.equals(env, "foo", paths.basename("foo")) 31 asserts.equals(env, "foo", paths.basename("/foo")) 32 asserts.equals(env, "foo", paths.basename("bar/foo")) 33 asserts.equals(env, "foo", paths.basename("/bar/foo")) 37 asserts.equals(env, "", paths.basename("foo/")) 38 asserts.equals(env, "", paths.basename("/foo/")) 51 asserts.equals(env, "foo", paths.dirname("foo///bar")) 54 asserts.equals(env, "", paths.dirname("foo")) 55 asserts.equals(env, "/", paths.dirname("/foo")) [all …]
|
| /external/python/cpython3/Lib/unittest/test/testmock/ |
| D | testpatch.py | 46 class Foo(object): class 50 foo = 'bar' variable in Foo 61 foo_name = '%s.Foo' % __name__ 64 def function(a, b=Foo): pass 408 class Foo(object): class 413 @patch.object(Foo, 'woot', staticmethod(lambda: sentinel.Patched)) 415 self.assertEqual(Foo.woot(), sentinel.Patched) 418 self.assertEqual(Foo.woot(), sentinel.Static) 422 foo = sentinel.Foo 423 @patch.object(sentinel, 'Foo', 'Foo') [all …]
|
| /external/llvm/test/MC/SystemZ/ |
| D | tokens.s | 5 #CHECK: foo 100, 200 7 #CHECK: foo 100(, 200 9 #CHECK: foo 100(200), 300 11 #CHECK: foo 100(200,), 300 13 #CHECK: foo 100(200,%r0), 300 15 #CHECK: foo 100(200,%r1), 300 17 #CHECK: foo 100(%a0), 200 19 #CHECK: foo 100(%r0), 200 21 #CHECK: foo 100(%v1,%r0), 200 23 #CHECK: foo 100(%v0,%r1), 200 [all …]
|
| /external/dagger2/javatests/dagger/internal/codegen/ |
| D | IgnoreProvisionKeyWildcardsTest.java | 69 " Foo<? extends Bar> fooExtends();", in testProvidesUniqueBindingsWithDifferentTypeVariances() 70 " Foo<Bar> foo();", in testProvidesUniqueBindingsWithDifferentTypeVariances() 74 " @Provides static Foo<? extends Bar> fooExtends() { return null; }", in testProvidesUniqueBindingsWithDifferentTypeVariances() 75 " @Provides static Foo<Bar> foo() { return null; }", in testProvidesUniqueBindingsWithDifferentTypeVariances() 81 " fun fooExtends(): Foo<out Bar>", in testProvidesUniqueBindingsWithDifferentTypeVariances() 82 " fun foo(): Foo<Bar>", in testProvidesUniqueBindingsWithDifferentTypeVariances() 86 " @Provides fun fooExtends(): Foo<out Bar> = TODO()", in testProvidesUniqueBindingsWithDifferentTypeVariances() 87 " @Provides fun foo(): Foo<Bar> = TODO()", in testProvidesUniqueBindingsWithDifferentTypeVariances() 94 "Foo<? extends Bar> is bound multiple times:", in testProvidesUniqueBindingsWithDifferentTypeVariances() 95 " @Provides Foo<Bar> MyModule.foo()", in testProvidesUniqueBindingsWithDifferentTypeVariances() [all …]
|
| /external/jimfs/jimfs/src/test/java/com/google/common/jimfs/ |
| D | JimfsPathTest.java | 45 assertPathEquals("/foo", "/foo"); in testPathParsing() 46 assertPathEquals("/foo", "/", "foo"); in testPathParsing() 47 assertPathEquals("/foo/bar", "/foo/bar"); in testPathParsing() 48 assertPathEquals("/foo/bar", "/", "foo", "bar"); in testPathParsing() 49 assertPathEquals("/foo/bar", "/foo", "bar"); in testPathParsing() 50 assertPathEquals("/foo/bar", "/", "foo/bar"); in testPathParsing() 51 assertPathEquals("foo/bar/baz", "foo/bar/baz"); in testPathParsing() 52 assertPathEquals("foo/bar/baz", "foo", "bar", "baz"); in testPathParsing() 53 assertPathEquals("foo/bar/baz", "foo/bar", "baz"); in testPathParsing() 54 assertPathEquals("foo/bar/baz", "foo", "bar/baz"); in testPathParsing() [all …]
|
| /external/libcxx/test/std/input.output/filesystems/class.path/path.member/path.decompose/ |
| D | path.decompose.pass.cpp | 82 , {"foo", {"foo"}, "", "", "", "foo", "", "foo"} 84 , {"/foo", {"/", "foo"}, "/", "", "/", "foo", "/", "foo"} 85 , {"foo/", {"foo", ""}, "", "", "", "foo/", "foo", ""} 86 , {"/foo/", {"/", "foo", ""}, "/", "", "/", "foo/", "/foo", ""} 87 , {"foo/bar", {"foo","bar"}, "", "", "", "foo/bar", "foo", "bar"} 88 , {"/foo//bar", {"/","foo","bar"}, "/", "", "/", "foo/bar", "/foo", "bar"} 90 , {"//net/foo", {"/", "net", "foo"}, "/", "", "/", "net/foo", "/net", "foo"} 91 , {"///foo///", {"/", "foo", ""}, "/", "", "/", "foo///", "///foo", ""} 92 , {"///foo///bar", {"/", "foo", "bar"}, "/", "", "/", "foo///bar", "///foo", "bar"} 97 , {"foo/.", {"foo", "."}, "", "", "", "foo/.", "foo", "."} [all …]
|
| /external/cronet/base/files/ |
| D | file_path_unittest.cc | 489 { FPL("//foo/bar/baz/"), FPL("|//|foo|bar|baz")}, in TEST_F() 492 {FPL("///foo//bar/baz"), FPL("|/|foo|bar|baz")}, in TEST_F() 494 { FPL("/foo//bar//baz/"), FPL("|/|foo|bar|baz")}, in TEST_F() 495 { FPL("/foo/bar/baz/"), FPL("|/|foo|bar|baz")}, in TEST_F() 496 { FPL("/foo/bar/baz//"), FPL("|/|foo|bar|baz")}, in TEST_F() 497 { FPL("/foo/bar/baz///"), FPL("|/|foo|bar|baz")}, in TEST_F() 498 { FPL("/foo/bar/baz"), FPL("|/|foo|bar|baz")}, in TEST_F() 499 { FPL("/foo/bar.bot/baz.txt"), FPL("|/|foo|bar.bot|baz.txt")}, in TEST_F() 500 { FPL("//foo//bar/baz"), FPL("|//|foo|bar|baz")}, in TEST_F() 502 { FPL("foo"), FPL("|foo")}, in TEST_F() [all …]
|
| /external/dagger2/javatests/dagger/internal/codegen/bindinggraphvalidation/ |
| D | PackageNameCompressorTest.java | 32 String input = "Something is wrong with foo.bar.baz.Foo class!"; in testSimple() 33 String expectedOutput = "Something is wrong with Foo class!" in testSimple() 35 + "Foo: foo.bar.baz.Foo\n" in testSimple() 42 String input = "Something is wrong with foo.bar.baz.Foo and foo.bar.qux.Foo class!"; in testSameSimpleNames() 43 String expectedOutput = "Something is wrong with baz.Foo and qux.Foo class!" in testSameSimpleNames() 45 + "baz.Foo: foo.bar.baz.Foo\n" in testSameSimpleNames() 46 + "qux.Foo: foo.bar.qux.Foo\n" in testSameSimpleNames() 53 String input = "Something is wrong with foo.bar.baz.Foo.provideFoo()!"; in testMethodNames() 54 String expectedOutput = "Something is wrong with Foo.provideFoo()!" in testMethodNames() 56 + "Foo: foo.bar.baz.Foo\n" in testMethodNames() [all …]
|
| /external/libchrome/base/files/ |
| D | file_path_unittest.cc | 467 { FPL("//foo/bar/baz/"), FPL("|//|foo|bar|baz")}, in TEST_F() 469 { FPL("/foo//bar//baz/"), FPL("|/|foo|bar|baz")}, in TEST_F() 470 { FPL("/foo/bar/baz/"), FPL("|/|foo|bar|baz")}, in TEST_F() 471 { FPL("/foo/bar/baz//"), FPL("|/|foo|bar|baz")}, in TEST_F() 472 { FPL("/foo/bar/baz///"), FPL("|/|foo|bar|baz")}, in TEST_F() 473 { FPL("/foo/bar/baz"), FPL("|/|foo|bar|baz")}, in TEST_F() 474 { FPL("/foo/bar.bot/baz.txt"), FPL("|/|foo|bar.bot|baz.txt")}, in TEST_F() 475 { FPL("//foo//bar/baz"), FPL("|//|foo|bar|baz")}, in TEST_F() 477 { FPL("foo"), FPL("|foo")}, in TEST_F() 480 { FPL("e:/foo"), FPL("|e:|/|foo")}, in TEST_F() [all …]
|
| /external/llvm/test/MC/Mips/ |
| D | relocation.s | 28 .short foo // RELOC: R_MIPS_16 foo 32 baz: .long foo // RELOC: R_MIPS_32 foo 36 // ?????: R_MIPS_REL32 foo 38 jal foo // RELOC: R_MIPS_26 foo 39 // ENCBE: jal foo # encoding: [0b000011AA,A,A,A] 40 // ENCLE: jal foo # encoding: [A,A,A,0b000011AA] 41 … // FIXUP: # fixup A - offset: 0, value: foo, kind: fixup_Mips_26 50 addiu $2, $3, %hi(foo) // RELOC: R_MIPS_HI16 foo 51 … // ENCBE: addiu $2, $3, %hi(foo) # encoding: [0x24,0x62,A,A] 52 … // ENCLE: addiu $2, $3, %hi(foo) # encoding: [A,A,0x62,0x24] [all …]
|
| /external/jazzer-api/src/test/java/com/code_intelligence/jazzer/mutation/combinator/ |
| D | MutatorCombinatorsTest.java | 57 InPlaceMutator<Foo> mutator = in testMutateProperty() 58 mutateProperty(Foo::getValue, mockMutator(21, value -> 2 * value), Foo::setValue); in testMutateProperty() 60 assertThat(mutator.toString()).isEqualTo("Foo.Integer"); in testMutateProperty() 62 Foo foo = new Foo(0, singletonList(13)); in testMutateProperty() local 65 mutator.initInPlace(foo, prng); in testMutateProperty() 67 assertThat(foo.getValue()).isEqualTo(21); in testMutateProperty() 68 assertThat(foo.getList()).containsExactly(13); in testMutateProperty() 71 mutator.mutateInPlace(foo, prng); in testMutateProperty() 74 assertThat(foo.getValue()).isEqualTo(42); in testMutateProperty() 75 assertThat(foo.getList()).containsExactly(13); in testMutateProperty() [all …]
|
| /external/libxml2/test/relaxng/OASIS/ |
| D | spectest.xml | 22 <element name="foo"> 26 <element name="foo"> 36 <element xmlns="http://relaxng.org/ns/structure/1.0" name="foo"> 47 <element xmlns="http://relaxng.org/ns/structure/1.0" name="foo"> 48 <name>foo</name> 56 <element xmlns="http://relaxng.org/ns/structure/1.0" name="foo"> 69 <name>foo</name> 85 <name>foo</name> 98 <element xmlns="http://relaxng.org/ns/structure/1.0" name="foo"> 101 <value>foo</value> [all …]
|