/external/pdfium/core/fxcrt/ |
D | bytestring_unittest.cpp | 392 ByteString fred; in TEST() local 393 fred.Concat("FRED", 4); in TEST() 394 EXPECT_EQ("FRED", fred); in TEST() 396 fred.Concat("DY", 2); in TEST() 397 EXPECT_EQ("FREDDY", fred); in TEST() 399 fred.Delete(3, 3); in TEST() 400 EXPECT_EQ("FRE", fred); in TEST() 402 fred.Concat("D", 1); in TEST() 403 EXPECT_EQ("FRED", fred); in TEST() 405 ByteString copy = fred; in TEST() [all …]
|
D | widestring_unittest.cpp | 352 WideString fred; in TEST() local 353 fred.Concat(L"FRED", 4); in TEST() 354 EXPECT_EQ(L"FRED", fred); in TEST() 356 fred.Concat(L"DY", 2); in TEST() 357 EXPECT_EQ(L"FREDDY", fred); in TEST() 359 fred.Delete(3, 3); in TEST() 360 EXPECT_EQ(L"FRE", fred); in TEST() 362 fred.Concat(L"D", 1); in TEST() 363 EXPECT_EQ(L"FRED", fred); in TEST() 365 WideString copy = fred; in TEST() [all …]
|
/external/llvm/test/MC/AArch64/ |
D | dot-req.s | 4 fred .req x5 6 fred .req x5 7 mov fred, x11 8 .unreq fred 9 fred .req w6 10 mov w1, fred 12 bob .req fred 16 .unreq fred
|
D | dot-req-diagnostics.s | 4 fred .req x5 5 fred .req x6 25 mov bob, fred 35 mov x1, fred
|
/external/llvm/test/MC/ARM/ |
D | dot-req.s | 6 fred .req r5 label 7 fred .req r5 label 8 mov r11, fred 9 .unreq fred 10 fred .req r6 label 11 mov r1, fred
|
D | arm_fixups.s | 29 mov r2, :lower16:fred 31 @ CHECK: movw r2, :lower16:fred @ encoding: [A,0x20'A',0b0000AAAA,0xe3] 32 @ CHECK: @ fixup A - offset: 0, value: fred, kind: fixup_arm_movw_lo16 33 @ CHECK-BE: movw r2, :lower16:fred @ encoding: [0xe3,0b0000AAAA,0x20'A',A] 34 @ CHECK-BE: @ fixup A - offset: 0, value: fred, kind: fixup_arm_movw_lo16
|
/external/python/cpython2/Demo/tkinter/matt/ |
D | window-creation-w-location.py | 20 fred = Toplevel() 22 fred.label = Canvas (fred, width="2i", height="2i") 24 fred.label.create_line("0", "0", "2i", "2i") 25 fred.label.create_line("0", "2i", "2i", "0") 26 fred.label.pack()
|
D | window-creation-simple.py | 10 fred = Toplevel() 11 fred.label = Label(fred, text="Here's a new window") 12 fred.label.pack()
|
D | window-creation-more.py | 11 fred = Toplevel() 12 fred.label = Button(fred, 15 fred.label.pack()
|
D | canvas-moving-w-mouse.py | 40 fred = self.draw.create_oval(0, 0, 20, 20, 43 self.draw.tag_bind(fred, "<Any-Enter>", self.mouseEnter) 44 self.draw.tag_bind(fred, "<Any-Leave>", self.mouseLeave)
|
D | canvas-moving-or-creating.py | 18 fred = self.draw.create_oval( 22 self.draw.tag_bind(fred, "<Any-Enter>", self.mouseEnter) 23 self.draw.tag_bind(fred, "<Any-Leave>", self.mouseLeave)
|
D | printing-coords-of-items.py | 18 fred = self.draw.create_oval( 21 self.draw.tag_bind(fred, "<Enter>", self.mouseEnter) 22 self.draw.tag_bind(fred, "<Leave>", self.mouseLeave)
|
/external/snakeyaml/src/test/java/examples/collections/ |
D | TypeSafePriorityTest.java | 48 Developer fred = (Developer) developers.get(0); in testLoadList2() local 49 assertEquals("Fred", fred.getName()); in testLoadList2() 50 assertEquals("creator", fred.getRole()); in testLoadList2()
|
D | ListFileldBeanTest.java | 62 Developer fred = developers.get(0); in testLoadList() local 63 assertEquals("Fred", fred.getName()); in testLoadList() 64 assertEquals("creator", fred.getRole()); in testLoadList()
|
D | TypeSafeListTest.java | 61 Developer fred = developers.get(0); in testLoadList() local 62 assertEquals("Fred", fred.getName()); in testLoadList() 63 assertEquals("creator", fred.getRole()); in testLoadList()
|
D | TypeSafeListNoGerericsTest.java | 62 Map<String, String> fred = developers.get(0); in testLoadList() local 63 assertEquals("Fred", fred.get("name")); in testLoadList() 64 assertEquals("creator", fred.get("role")); in testLoadList()
|
D | TypeSafeListWithInterfaceTest.java | 73 Developer fred = (Developer) developers.get(0); in testLoadList() local 74 assertEquals("Fred", fred.getName()); in testLoadList() 75 assertEquals("creator", fred.getRole()); in testLoadList()
|
D | TypeSafeMapTest.java | 82 Developer2 fred = developers.get("team1"); in testLoadMap() local 83 assertEquals("Fred", fred.getName()); in testLoadMap() 84 assertEquals("creator", fred.getRole()); in testLoadMap()
|
/external/python/cpython2/Doc/library/ |
D | tkinter.rst | 284 button .fred -fg red -text "hi there" 292 perform some *action*. In C, you'd express this as someAction(fred, 293 someOptions), in C++, you would express this as fred.someAction(someOptions), 296 .fred someAction someOptions 298 Note that the object name, ``.fred``, starts with a dot. 301 class: ``.fred disable`` works if fred is a button (fred gets greyed out), but 302 does not work if fred is a label (disabling of labels is not supported in Tk). 316 button .fred =====> fred = Button() 321 button .panel.fred =====> fred = Button(panel) 329 button .fred -fg red =====> fred = Button(panel, fg = "red") [all …]
|
/external/python/cpython3/Doc/library/ |
D | tkinter.rst | 275 button .fred -fg red -text "hi there" 283 perform some *action*. In C, you'd express this as someAction(fred, 284 someOptions), in C++, you would express this as fred.someAction(someOptions), 287 .fred someAction someOptions 289 Note that the object name, ``.fred``, starts with a dot. 292 class: ``.fred disable`` works if fred is a button (fred gets greyed out), but 293 does not work if fred is a label (disabling of labels is not supported in Tk). 307 button .fred =====> fred = Button() 312 button .panel.fred =====> fred = Button(panel) 320 button .fred -fg red =====> fred = Button(panel, fg="red") [all …]
|
/external/flatbuffers/tests/ |
D | monsterdata_test.golden | 43 "fred", 45 "fred"
|
/external/zlib/src/old/ |
D | Makefile.riscos | 41 @/@.example @.fred @.fred
|
/external/swiftshader/third_party/LLVM/test/MC/ARM/ |
D | diagnostics.s | 173 ssat r8, #1, r10, lsl fred 174 ssat r8, #1, r10, lsl #fred 198 @ CHECK-ERRORS: ssat r8, #1, r10, lsl fred 201 @ CHECK-ERRORS: ssat r8, #1, r10, lsl #fred 246 sxtab r3, r8, r3, ror #(fred - wilma) 264 @ CHECK-ERRORS: sxtab r3, r8, r3, ror #(fred - wilma)
|
/external/llvm/test/CodeGen/Hexagon/ |
D | misched-top-rptracker-sync.ll | 14 @__func__.fred = external hidden unnamed_addr constant [16 x i8], align 1 21 define void @fred(%struct.A* %pA, %struct.B* %p) #0 !dbg !6 { 29 …32 0, i32 0), i8* getelementptr inbounds ([16 x i8], [16 x i8]* @__func__.fred, i32 0, i32 0)) #0,… 37 …32 0, i32 0), i8* getelementptr inbounds ([16 x i8], [16 x i8]* @__func__.fred, i32 0, i32 0)) #0,… 88 !6 = distinct !DISubprogram(name: "fred", scope: !1, file: !1, line: 138, type: !7, isLocal: false,…
|
/external/antlr/antlr-3.4/ |
D | antlr.config | 1 fred=99
|