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

1 2 3 4 5 6 7 8 91011>>

  /external/libnl/doc/stylesheets/
xhtml11.css 9 margin: 1em 5% 1em 5%;
20 em {
37 margin-top: 1.2em;
38 margin-bottom: 0.5em;
46 padding-top: 0.5em;
65 margin-top: 0.5em;
66 margin-bottom: 0.5em;
82 font-size: 1.1em;
94 padding-top: 0.5em;
    [all...]
asciidoc-manpage.css 3 padding-top: 0.5em;
4 padding-bottom: 0.5em;
12 margin-left: 3em;
xhtml11-quirks.css 6 padding: 0.5em;
12 margin-top: 0.0em;
13 margin-bottom: 0.5em;
19 padding: 0.5em;
23 padding-top: 0.5em;
31 padding-top: 0.75em;
37 padding-left: 0.5em;
40 div.imageblock.latex div.image-title { margin-top: 0.5em; }
volnitsky.css 40 em {
52 margin-bottom: 0.5em;
54 letter-spacing:+0.15em;
58 h2 { padding-top: 0.5em; }
71 margin-top: 0.5em;
72 margin-bottom: 0.5em;
87 font-size: 1.1em;
93 padding-top: 0.5em;
94 margin-top: 4.0em;
99 padding-bottom: 0.5em;
    [all...]
flask.css 29 margin: 1em 5% 1em 5%;
40 em {
52 margin-top: 1.2em;
53 margin-bottom: 0.5em;
61 padding-top: 0.5em;
70 font-size: 1.0em;
82 margin-top: 0.5em;
83 margin-bottom: 0.5em;
100 font-size: 1.1em;
    [all...]
  /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...]
  /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...]
JoiningLocalTransactionsTest.java 65 EntityManager em = injector.getInstance(EntityManager.class); local
67 em.getTransaction().isActive());
70 Object result = em.createQuery("from JpaTestEntity where text = :text")
89 EntityManager em = injector.getInstance(EntityManager.class); local
91 assertFalse("EM was not closed by transactional service (rollback didnt happen?)",
92 em.getTransaction().isActive());
96 Object result = em.createQuery("from JpaTestEntity where text = :text")
112 EntityManager em = injector.getInstance(EntityManager.class); local
114 em.getTransaction().isActive());
117 Object result = em.createQuery("from JpaTestEntity where text = :text"
125 private final EntityManager em; field in class:JoiningLocalTransactionsTest.TransactionalObject
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
STZInfo.java 25 void setEnd(int em, int edwm, int edw, int et, int edm, boolean ea) {
26 this.em = em;
47 if (em != -1) {
49 stz.setEndRule(em, edwm, edw, et);
51 stz.setEndRule(em, edm, et);
53 stz.setEndRule(em, edm, edw, et, ea);
71 if (em != -1) {
73 stz.setEndRule(em, edwm, edw, et);
75 stz.setEndRule(em, edm, et)
85 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 24 void setEnd(int em, int edwm, int edw, int et, int edm, boolean ea) {
25 this.em = em;
46 if (em != -1) {
48 stz.setEndRule(em, edwm, edw, et);
50 stz.setEndRule(em, edm, et);
52 stz.setEndRule(em, edm, edw, et, ea);
70 if (em != -1) {
72 stz.setEndRule(em, edwm, edw, et);
74 stz.setEndRule(em, edm, et)
84 int em = -1, edwm, edw, et, edm; field in class:STZInfo
    [all...]
  /toolchain/binutils/binutils-2.27/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/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/swiftshader/third_party/LLVM/docs/
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/google-styleguide/include/
styleguide.css 19 margin-top: 2em;
20 margin-bottom: 1em;
30 margin-top:1.5em;
31 margin-bottom:.75em;
45 margin: 0 0 1.5em;
84 margin-top: 3.5em;
102 padding-top: 1em;
103 padding-bottom: 1em;
111 padding-top: 1em;
112 padding-bottom: 1em;
    [all...]
  /external/icu/icu4c/
icu4c.css 12 font-size: 1em;
17 margin: 1em;
44 padding: 1em;
56 margin-bottom: .5em;
57 margin-top: .5em;
58 padding-bottom: .5em;
59 padding-top: .5em;
63 font-size: 2em;
68 margin-bottom: 0.5em;
72 font-size: 2em;
    [all...]

Completed in 355 milliseconds

1 2 3 4 5 6 7 8 91011>>