/external/llvm/docs/_themes/llvm-theme/static/ |
D | llvm-theme.css | 52 padding: 0.5em 20px 20px 20px; 56 font-size: 1em; 61 height: 2em; 69 height: 2em; 81 line-height: 1.75em; 95 padding: 0.5em 15px 15px 0; 98 font-size: 1em; 103 margin: 1em 0 0.5em 0; 104 font-size: 1em; 105 padding: 0.1em 0 0.1em 0.5em; [all …]
|
/external/expat/doc/ |
D | style.css | 17 padding-left: 2em; 25 padding: 0em 2em 1em 2em; 31 padding-bottom: 0.3em; 32 padding-top: 0.5em; 42 padding-left: 1em; 43 padding-top: .5em; 44 padding-bottom: .5em; 46 margin: 1em 0; 48 margin-left: 2em; 53 padding-left: 1em; [all …]
|
/external/llvm/docs/_ocamldoc/ |
D | style.css | 5 a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp, selector 17 body { font: normal 10pt/1.375em helvetica, arial, sans-serif; text-align:left; 18 margin: 1.375em 10%; min-width: 40ex; max-width: 72ex; 22 em { font-style: italic } selector 25 font-size: 1em; } 27 .codepre { margin-bottom:1.375em /* after code example we introduce space. */ } 30 { font-size : 0.813em; line-height:0; margin-left:0.4ex;} 44 h1 + pre { margin-bottom:1.375em} /* Toplevel module description */ 48 /* .navbar { margin-bottom: -1.375em } */ 49 h1 { font-weight: bold; font-size: 1.5em; /* margin-top:1.833em; */ [all …]
|
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
D | ExemptionMechanismTest.java | 58 ExemptionMechanism em = new ExemptionMechanism(spi, mProv, defaultAlg) { in testExemptionMechanism() local 60 assertEquals("Incorrect provider", em.getProvider(), mProv); in testExemptionMechanism() 61 assertEquals("Incorrect algorithm", em.getName(), defaultAlg); in testExemptionMechanism() 63 em.init(null); in testExemptionMechanism() 69 em.getOutputSize(100); in testExemptionMechanism() 75 em = new ExemptionMechanism(null, null, null) { in testExemptionMechanism() 77 assertNull("Incorrect mechanism", em.getName()); in testExemptionMechanism() 78 assertNull("Incorrect provider", em.getProvider()); in testExemptionMechanism() 80 em.init(null); in testExemptionMechanism() 85 em.getOutputSize(100); in testExemptionMechanism() [all …]
|
/external/nanopb-c/docs/ |
D | lsr.css | 12 margin: 2em; 13 padding: 0em 2em; 22 margin: 2em 0em; 50 margin: 0.5em 0 1em 0; 51 line-height: 1.5em; 78 em { selector 93 margin-bottom: 0em; 104 margin: 0em; 105 padding-top: 0.5em; 110 margin-bottom: 0.5em; [all …]
|
/external/icu/icu4c/ |
D | icu4c.css | 10 font-size: 1em; 15 margin: 1em; 42 padding: 1em; 54 margin-bottom: .5em; 55 margin-top: .5em; 56 padding-bottom: .5em; 57 padding-top: .5em; 61 font-size: 2em; 66 margin-bottom: 0.5em; 70 font-size: 2em; [all …]
|
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/ |
D | ManagedLocalTransactionsAcrossRequestTest.java | 65 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransaction() local 66 assertFalse(em.getTransaction().isActive()); in testSimpleTransaction() 69 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransaction() 88 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransactionWithMerge() local 89 assertFalse(em.getTransaction().isActive()); in testSimpleTransactionWithMerge() 92 assertTrue("Em was closed after txn!", em.isOpen()); in testSimpleTransactionWithMerge() 93 assertEquals("Em was not kept open across txns", emOrig, em); in testSimpleTransactionWithMerge() 94 assertTrue("Merge did not store state or did not return persistent copy", em.contains(entity)); in testSimpleTransactionWithMerge() 96 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransactionWithMerge() 113 EntityManager em = injector.getInstance(EntityManager.class); in disabled_testSimpleTransactionWithMergeAndDF() local [all …]
|
D | ManagedLocalTransactionsTest.java | 62 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransaction() local 63 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive()); in testSimpleTransaction() 66 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransaction() 80 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransactionWithMerge() local 81 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive()); in testSimpleTransactionWithMerge() 84 assertTrue("Em was closed after txn!", em.isOpen()); in testSimpleTransactionWithMerge() 86 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransactionWithMerge() 104 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransactionRollbackOnChecked() local 107 em.getTransaction().isActive()); in testSimpleTransactionRollbackOnChecked() 111 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransactionRollbackOnChecked() [all …]
|
D | JoiningLocalTransactionsTest.java | 65 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransaction() local 67 em.getTransaction().isActive()); in testSimpleTransaction() 70 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransaction() 89 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransactionRollbackOnChecked() local 92 em.getTransaction().isActive()); in testSimpleTransactionRollbackOnChecked() 96 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransactionRollbackOnChecked() 112 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleTransactionRollbackOnUnchecked() local 114 em.getTransaction().isActive()); in testSimpleTransactionRollbackOnUnchecked() 117 Object result = em.createQuery("from JpaTestEntity where text = :text") in testSimpleTransactionRollbackOnUnchecked() 125 private final EntityManager em; field in JoiningLocalTransactionsTest.TransactionalObject [all …]
|
D | EntityManagerPerRequestProvisionTest.java | 67 injector.getInstance(EntityManager.class), JpaDao.em); in testEntityManagerLifecyclePerTxn() 87 injector.getInstance(EntityManager.class), JpaDao.em); in testEntityManagerLifecyclePerTxn2() 89 injector.getInstance(EntityManager.class), JpaDao.em); in testEntityManagerLifecyclePerTxn2() 99 static EntityManager em; field in EntityManagerPerRequestProvisionTest.JpaDao 102 public JpaDao(EntityManager em) { in JpaDao() argument 103 JpaDao.em = em; in JpaDao() 108 assertTrue("em is not open!", em.isOpen()); in persist() 109 assertTrue("no active txn!", em.getTransaction().isActive()); in persist() 110 em.persist(t); in persist() 112 assertTrue("Persisting object failed", em.contains(t)); in persist() [all …]
|
D | ManualLocalTransactionsTest.java | 60 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleCrossTxnWork() local 68 assertTrue("EntityManager appears to have been closed across txns!", em.contains(entity)); in testSimpleCrossTxnWork() 69 assertTrue("EntityManager appears to have been closed across txns!", em.isOpen()); in testSimpleCrossTxnWork() 75 em = injector.getInstance(EntityManager.class); in testSimpleCrossTxnWork() 76 assertNotNull(em.createQuery("from JpaTestEntity where text = :text") in testSimpleCrossTxnWork() 78 assertNotNull(em.createQuery("from JpaTestEntity where text = :text") in testSimpleCrossTxnWork() 80 em.close(); in testSimpleCrossTxnWork() 82 assertFalse(em.isOpen()); in testSimpleCrossTxnWork() 86 @Inject EntityManager em; field in ManualLocalTransactionsTest.TransactionalObject 92 em.persist(entity); in runOperationInTxn() [all …]
|
D | ManualLocalTransactionsWithCustomMatcherTest.java | 63 EntityManager em = injector.getInstance(EntityManager.class); in testSimpleCrossTxnWork() local 74 assertTrue("EntityManager appears to have been closed across txns!", em.contains(entity)); in testSimpleCrossTxnWork() 75 assertTrue("EntityManager appears to have been closed across txns!", em.isOpen()); in testSimpleCrossTxnWork() 80 em = injector.getInstance(EntityManager.class); in testSimpleCrossTxnWork() 81 assertNotNull(em.createQuery("from JpaTestEntity where text = :text") in testSimpleCrossTxnWork() 83 assertNotNull(em.createQuery("from JpaTestEntity where text = :text") in testSimpleCrossTxnWork() 85 em.close(); in testSimpleCrossTxnWork() 89 @Inject EntityManager em; field in ManualLocalTransactionsWithCustomMatcherTest.TransactionalObject 95 em.persist(entity); in runOperationInTxn() 104 em.persist(entity); in runOperationInTxn2()
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-docs.css | 16 font-size: 1em; 66 margin: .35em 0 0 0; 80 margin:.5em 0 0 0; 175 padding:5px 0 1.5em; 221 margin-left:1em; 246 font-size:1.7em; 250 font-size:.9em; 251 line-height:1em; 288 margin: .5em 1em 1em 1em; 290 font-size:.9em; [all …]
|
D | doclava-developer-core.css | 61 margin:0 0 1em; 67 line-height:1em; 79 margin:0 0 1em 1em; 85 margin:1em 0; 90 line-height:1.3em; 94 margin:0 0 .8em; 95 padding:0 0 0 2em; 99 padding:0 0 .5em; 103 margin:0 0 1em 0; 113 margin:0 0 1em; [all …]
|
/external/eigen/doc/ |
D | eigendoxy.css | 20 max-width:60em; 25 max-width:55em; 54 font-size: 1em; 62 padding: 0.5em 0.5em 0.5em 0.5em; 64 padding-right: 1em; 82 font-size: 1.2em; 105 padding: 0.5em 0.5em 0.5em 0.5em; 112 padding: 0.2em 0em 0.5em 0em; 116 margin: 0em 0em 0.3em 0em; 120 padding: 0.3em 0.5em 0.3em 0.5em; [all …]
|
/external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/ |
D | style.css | 21 font-size: 1em; 30 font-size: .75em; /* 12/16 */ 31 line-height: 1.33333333em; /* 16/12 */ 46 font-size: 1.2em; 66 padding: 1em; 71 margin: 1em 3em; 75 margin: 1em 1em; 87 margin: 1em 0 0 3em; 92 padding: 1em 3em; 96 font-size: 1.25em; [all …]
|
/external/libvorbis/doc/ |
D | Vorbis_I_spec.css | 26 p.noindent { text-indent: 0em } 27 td p.noindent { text-indent: 0em; margin-top:0em; } 28 p.nopar { text-indent: 0em; } 29 p.indent{ text-indent: 1.5em } 32 center { margin-top:1em; margin-bottom:1em; } 33 td center { margin-top:0em; margin-bottom:0em; } 36 li p.indent { text-indent: 0em } 37 li p:first-child{ margin-top:0em; } 38 li p:last-child, li div:last-child { margin-bottom:0.5em; } 39 li p~ul:last-child, li p~ol:last-child{ margin-bottom:0.5em; } [all …]
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
D | Tooltip.css | 3 body, h1, h2, h3, h4, h5, h6, p, table, td, caption, th, ul, ol, dl, li, dd, dt { font-size: 1em; } 7 … { overflow: auto; margin-top: 0px; margin-bottom: 0px; margin-left: 0.3em; margin-right: 0.3em; } 9 h1 { margin-top: 0.3em; margin-bottom: 0.04em; } 10 h2 { margin-top: 2em; margin-bottom: 0.25em; } 11 h3 { margin-top: 1.7em; margin-bottom: 0.25em; } 12 h4 { margin-top: 2em; margin-bottom: 0.3em; } 14 p { margin-top: 0em; margin-bottom: 0em; } 15 pre { margin-left: 0.6em; } 16 ul { margin-top: 0px; margin-bottom: 1em; } 19 ol { margin-top: 0px; margin-bottom: 1em; } [all …]
|
/external/chromium-trace/catapult/third_party/webapp2/docs/_themes/webapp2/static/ |
D | webapp2.css | 32 padding:1em 0 0 0; 57 margin:1em 0 0 0; 58 padding:.99em; 66 padding: .8em 0 0 0; 73 margin: 2em 0 5px -10px; 79 em { selector 91 margin: 0 0 1em 0; 109 height: 2.0em; 110 line-height: 1em; 113 margin-top: 1em; [all …]
|
/external/llvm/docs/_static/ |
D | llvm.css | 15 border-collapse: collapse; margin-top: 1em; margin-left: 1em; 16 margin-right: 1em; margin-bottom: 1em; } 46 margin: 1.5em 0.5em 0.5em 0.5em } 48 h4, .doc_subsubsection { margin: 2.0em 0.5em 0.5em 0.5em; 68 margin: 0 1em 0 1em; 69 padding: 0 1em 0 1em; 74 padding: 1em 2em 1em 1em; 77 margin: 0 1em 0 1em; 91 pre.doc_code, .literal-block { padding: 1em 2em 1em 1em } 94 display: table; padding: 0 1em 0 .1em }
|
/external/shflags/doc/ |
D | rst2html.css | 22 padding: 0 0.5em 0 0 ! important } 39 margin: 2em 5em ; } 42 margin-bottom: 0.5em } 50 margin: 2em 5em } 58 margin: 2em ; 60 padding: 1em } 78 margin-bottom: 0.5em } 81 margin-top: 0.5em } 85 margin: 2em 5em ; 94 margin-left: 2em ; [all …]
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/bench/ |
D | wikipedia.min.css | 1 …em}body{background-color:#f3f3f3;background-image:url(images/page-base.png)}div#content{margin-lef…
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/static/ |
D | base.css | 27 margin-bottom: 0.4em; 28 font-size: 2em; 31 margin-top: 1em; 32 margin-bottom: 0.4em; 33 font-size: 1.2em; 37 margin-bottom: 0.7em; 38 font-size: 1.0em; 48 margin: 0.3em; 52 margin-bottom: 0.5em; 55 margin-left: 0.5em; [all …]
|
/external/boringssl/src/util/ |
D | doc.css | 4 max-width: 55em; 10 margin-bottom: 2em; 18 margin-bottom: 4em; 26 margin-top: 1em; 27 margin-bottom: 0.3em; 32 margin-top: 2.5em; 41 margin-top: 5em; 46 font-size: 1.5em; 65 padding-top: 1em; 66 padding-bottom: 0.5em;
|
/external/testng/doc/samplereport/css/ |
D | maven-classic.css | 79 margin-top: 1em; 122 margin-top: 1em; 177 background-position: .5em .5em; 253 #apphead h2 em { 355 background-position: 5px 1.33em; 540 #apphead h2 em { 545 font-size: 1.25em; 550 margin-top: .3em; 551 margin-bottom: .5em; 555 margin-top: .67em; [all …]
|