HomeSort by relevance Sort by last modified time
    Searched refs:em (Results 1 - 25 of 594) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/polymer/components/paper-dropdown-menu/
paper-dropdown-menu.css 20 padding: 0.75em 0;
25 max-height: 2em;
35 padding: 0.5em 0 0.25em;
43 margin: 0.3em 0 0.2em 0.25em;
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 58 ExemptionMechanism em = new ExemptionMechanism(spi, mProv, defaultAlg) { local
60 assertEquals("Incorrect provider", em.getProvider(), mProv);
61 assertEquals("Incorrect algorithm", em.getName(), defaultAlg);
63 em.init(null);
69 em.getOutputSize(100);
75 em = new ExemptionMechanism(null, null, null) {
77 assertNull("Incorrect mechanism", em.getName());
78 assertNull("Incorrect provider", em.getProvider());
80 em.init(null);
85 em.getOutputSize(100)
116 ExemptionMechanism em = new ExemptionMechanism( local
149 ExemptionMechanism em = new ExemptionMechanism( local
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/core-menu/
core-submenu.css 28 min-height: 2.5em;
32 margin: 0 1em 0 0.25em;
33 height: 1.5em;
34 width: 1.5em;
42 margin: 0 0 0 2.75em;
  /external/llvm/docs/_ocamldoc/
style.css 5 a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,
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 }
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/nanopb-c/docs/
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 {
93 margin-bottom: 0em;
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/core-item/
core-item.css 18 min-height: 2.5em;
30 margin: 0 1em 0 0.25em;
31 height: 1.5em;
32 width: 1.5em;
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 67 ExemptionMechanism em = new ExemptionMechanism(spi, mProv, defaultAlg) {}; local
68 assertEquals("Incorrect provider", em.getProvider(), mProv);
69 assertEquals("Incorrect algorithm", em.getName(), defaultAlg);
71 em.init(null);
76 em.getOutputSize(100);
81 em = new ExemptionMechanism(null, null, null) {};
82 assertNull("Incorrect mechanism", em.getName());
83 assertNull("Incorrect provider", em.getProvider());
85 em.init(null);
89 em.getOutputSize(100)
125 ExemptionMechanism em = new ExemptionMechanism( local
157 ExemptionMechanism em = new ExemptionMechanism( local
199 ExemptionMechanism em = new ExemptionMechanism( local
237 ExemptionMechanism em = new ExemptionMechanism( local
277 ExemptionMechanism em = new ExemptionMechanism( local
323 ExemptionMechanism em = new ExemptionMechanism( local
349 ExemptionMechanism em = new ExemptionMechanism( local
374 ExemptionMechanism em = new ExemptionMechanism( local
389 ExemptionMechanism em = new ExemptionMechanism( local
412 ExemptionMechanism em = new ExemptionMechanism( local
427 ExemptionMechanism em = new ExemptionMechanism( local
461 ExemptionMechanism em = new ExemptionMechanism( local
502 ExemptionMechanism em = new ExemptionMechanism( local
    [all...]
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
EntityManagerPerRequestProvisionTest.java 57 //obtain em
60 //obtain same em again (bound to txn)
67 injector.getInstance(EntityManager.class), JpaDao.em);
69 //try to start a new em in a new txn
77 //obtain em
80 //obtain same em again (bound to txn)
87 injector.getInstance(EntityManager.class), JpaDao.em);
89 injector.getInstance(EntityManager.class), JpaDao.em);
91 //try to start a new em in a new txn
99 static EntityManager em; field in class:EntityManagerPerRequestProvisionTest.JpaDao
    [all...]
ManualLocalTransactionsTest.java 34 * For instance, a session-per-request strategy will control the opening and closing of the EM at
60 EntityManager em = injector.getInstance(EntityManager.class); local
65 //persisted entity should remain in the same em (which should still be open)
68 assertTrue("EntityManager appears to have been closed across txns!", em.contains(entity));
69 assertTrue("EntityManager appears to have been closed across txns!", em.isOpen());
75 em = injector.getInstance(EntityManager.class);
76 assertNotNull(em.createQuery("from JpaTestEntity where text = :text")
78 assertNotNull(em.createQuery("from JpaTestEntity where text = :text")
80 em.close();
82 assertFalse(em.isOpen())
86 @Inject EntityManager em; field in class:ManualLocalTransactionsTest.TransactionalObject
    [all...]
ManagedLocalTransactionsTest.java 62 EntityManager em = injector.getInstance(EntityManager.class); local
63 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive());
66 Object result = em.createQuery("from JpaTestEntity where text = :text")
80 EntityManager em = injector.getInstance(EntityManager.class); local
81 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive());
84 assertTrue("Em was closed after txn!", em.isOpen());
86 Object result = em.createQuery("from JpaTestEntity where text = :text")
104 EntityManager em = injector.getInstance(EntityManager.class); local
106 assertFalse("Previous EM was not closed by transactional service (rollback didnt happen?)"
126 EntityManager em = injector.getInstance(EntityManager.class); local
139 private final EntityManager em; field in class:ManagedLocalTransactionsTest.TransactionalObject
    [all...]
ManualLocalTransactionsWithCustomMatcherTest.java 36 * For instance, a session-per-request strategy will control the opening and closing of the EM at
63 EntityManager em = injector.getInstance(EntityManager.class); local
71 //persisted entity should remain in the same em (which should still be open)
74 assertTrue("EntityManager appears to have been closed across txns!", em.contains(entity));
75 assertTrue("EntityManager appears to have been closed across txns!", em.isOpen());
80 em = injector.getInstance(EntityManager.class);
81 assertNotNull(em.createQuery("from JpaTestEntity where text = :text")
83 assertNotNull(em.createQuery("from JpaTestEntity where text = :text")
85 em.close();
89 @Inject EntityManager em; field in class:ManualLocalTransactionsWithCustomMatcherTest.TransactionalObject
    [all...]
ManagedLocalTransactionsAcrossRequestTest.java 65 EntityManager em = injector.getInstance(EntityManager.class); local
66 assertFalse(em.getTransaction().isActive());
69 Object result = em.createQuery("from JpaTestEntity where text = :text")
88 EntityManager em = injector.getInstance(EntityManager.class); local
89 assertFalse(em.getTransaction().isActive());
92 assertTrue("Em was closed after txn!", em.isOpen());
93 assertEquals("Em was not kept open across txns", emOrig, em);
94 assertTrue("Merge did not store state or did not return persistent copy", em.contains(entity))
113 EntityManager em = injector.getInstance(EntityManager.class); local
141 EntityManager em = injector.getInstance(EntityManager.class); local
165 EntityManager em = injector.getInstance(EntityManager.class); local
180 private final EntityManager em; field in class:ManagedLocalTransactionsAcrossRequestTest.TransactionalObject
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
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 body { 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;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
STZInfo.java 23 void setEnd(int em, int edwm, int edw, int et, int edm, boolean ea) {
24 this.em = em;
45 if (em != -1) {
47 stz.setEndRule(em, edwm, edw, et);
49 stz.setEndRule(em, edm, et);
51 stz.setEndRule(em, edm, edw, et, ea);
69 if (em != -1) {
71 stz.setEndRule(em, edwm, edw, et);
73 stz.setEndRule(em, edm, et)
83 int em = -1, edwm, edw, et, edm; field in class:STZInfo
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
STZInfo.java 22 void setEnd(int em, int edwm, int edw, int et, int edm, boolean ea) {
23 this.em = em;
44 if (em != -1) {
46 stz.setEndRule(em, edwm, edw, et);
48 stz.setEndRule(em, edm, et);
50 stz.setEndRule(em, edm, edw, et, ea);
68 if (em != -1) {
70 stz.setEndRule(em, edwm, edw, et);
72 stz.setEndRule(em, edm, et)
82 int em = -1, edwm, edw, et, edm; field in class:STZInfo
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-bkw5b.d 1 #as: --underscore --em=criself --defsym extra=1
rd-bkw5bpic.d 1 #as: --pic --underscore --em=criself --defsym extra=-818
rd-bkw5bv32.d 1 #as: --march=v32 --underscore --em=criself --defsym extra=-818
rd-pic-2.d 2 #as: --underscore --em=criself --pic
  /external/autotest/frontend/static/
jsonview.css 55 left: -1em;
75 margin: .5em;
76 padding: .5em;
85 font-size: 1.1em;
90 margin: 0 0 0 2em;
95 font-size: 1.2em;
100 padding-left: 1em;
  /external/llvm/docs/_static/
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
    [all...]
  /external/llvm/docs/_themes/llvm-theme/static/
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;
    [all...]
  /external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/
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
    [all...]
  /external/icu/icu4c/
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...]
  /docs/source.android.com/src/source/assets/
main.css 38 line-height: 1.3em;
45 font-size: 1em;
46 margin: 0 0 1em 0;
155 margin-top: 1em;
163 margin: .5em 0 0 0;
174 margin-top: .35em;
195 margin: 0 3em;
209 margin: 1em;
229 margin: 1em 0 1em 0
    [all...]

Completed in 662 milliseconds

1 2 3 4 5 6 7 8 91011>>