HomeSort by relevance Sort by last modified time
    Searched refs:se (Results 101 - 125 of 554) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/elfutils/libebl/
libebl.h 291 This value is not used by CFI per se.
316 /* Get offset in string table for string associated with SE. */
317 extern size_t ebl_strtaboffset (struct Ebl_Strent *se);
319 /* Return the string associated with SE. */
320 extern const char *ebl_string (struct Ebl_Strent *se);
341 /* Get offset in wide char string table for string associated with SE. */
342 extern size_t ebl_wstrtaboffset (struct Ebl_WStrent *se);
363 /* Get offset in wide char string table for string associated with SE. */
364 extern size_t ebl_gstrtaboffset (struct Ebl_GStrent *se);
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 57 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
58 r = std::unique(Iter(ie), Iter(ie+se));
132 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
133 r = std::unique(Iter(ie), Iter(ie+se));
unique_copy_pred.pass.cpp 79 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
80 int je[se] = {-1};
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
87 assert(count_equal::count == se-1);
  /libcore/ojluni/src/main/java/java/lang/
Throwable.java 653 for (Throwable se : getSuppressed())
654 se.printEnclosedStackTrace(s, trace, SUPPRESSED_CAPTION, "\t", dejaVu);
693 for (Throwable se : getSuppressed())
694 se.printEnclosedStackTrace(s, trace, SUPPRESSED_CAPTION,
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 57 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
58 r = std::unique(Iter(ie), Iter(ie+se));
132 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
133 r = std::unique(Iter(ie), Iter(ie+se));
unique_copy_pred.pass.cpp 79 const unsigned se = sizeof(ie)/sizeof(ie[0]); local
80 int je[se] = {-1};
82 r = std::unique_copy(InIter(ie), InIter(ie+se), OutIter(je), count_equal());
87 assert(count_equal::count == se-1);
  /packages/apps/Nfc/nci/jni/extns/pn54x/inc/
phNxpExtns_Custom.h 178 ** SE. This function also does not start polling loop.
186 NFCSTATUS phNxpExtns_select_se (SE_t se);
  /external/f2fs-tools/fsck/
dump.c 27 struct seg_entry *se; local
39 se = get_seg_entry(sbi, segno);
42 snprintf(buf, BUF_SZ, "%5d %8d\n", segno, se->valid_blocks);
47 DBG(4, "SIT[0x%3x] : 0x%x\n", segno, se->valid_blocks);
48 if (se->valid_blocks == 0x0) {
51 ASSERT(se->valid_blocks <= 512);
52 valid_blocks += se->valid_blocks;
fsck.c 20 struct seg_entry *se; local
22 se = get_seg_entry(sbi, GET_SEGNO(sbi, blk));
23 if (se->type != type) {
25 if (se->type != CURSEG_COLD_DATA) {
27 GET_SEGNO(sbi, blk), se->type,
29 se->type = CURSEG_WARM_DATA;
33 GET_SEGNO(sbi, blk), se->type, type);
34 se->type = type;
1030 struct seg_entry *se; local
1032 se = get_seg_entry(sbi, curseg->segno)
1048 struct seg_entry *se; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
TransformerFactoryImpl.java 123 catch (org.xml.sax.SAXException se)
129 m_errorListener.fatalError(new TransformerException(se));
147 // se.printStackTrace();
148 throw new TransformerConfigurationException(XSLMessages.createMessage(XSLTErrorResources.ER_PROCESSFROMNODE_FAILED, null), se); local
149 //"processFromNode failed", se);
185 // se.printStackTrace();
352 catch (org.xml.sax.SAXException se)
355 "getAssociatedStylesheets failed", se);
900 catch (org.xml.sax.SAXException se) {}
928 catch (org.xml.sax.SAXException se)
947 throw new TransformerConfigurationException(se.getMessage(), se); local
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
SignatureFileVerifier.java 287 for (Map.Entry<Object,Object> se : mattr.entrySet()) {
289 String key = se.getKey().toString();
296 manifestDigests.add(se.getValue());
301 decoder.decodeBuffer((String)se.getValue());
333 for (Map.Entry<Object,Object> se : mattr.entrySet()) {
334 String key = se.getKey().toString();
346 decoder.decodeBuffer((String)se.getValue());
409 for (Map.Entry<Object,Object> se : sfAttr.entrySet()) {
410 String key = se.getKey().toString();
422 decoder.decodeBuffer((String)se.getValue())
    [all...]
  /external/c-ares/
ares_getnameinfo.c 293 struct servent se; local
312 sep = &se;
315 if (getservbyport_r(port, proto, &se, (void *)tmpbuf,
319 sep = getservbyport_r(port, proto, &se, (void *)tmpbuf,
322 if (getservbyport_r(port, proto, &se, (void *)tmpbuf) != 0)
  /prebuilts/go/darwin-x86/src/mime/
encodedword_test.go 18 fmt.Println(QEncoding.Encode("utf-8", "¡Hola, señor!"))
20 fmt.Println(BEncoding.Encode("UTF-8", "¡Hola, señor!"))
58 // ¡Hola, señor!
98 // ¡Hola, señor!
131 {"=?UTF-8?Q?=C2=A1Hola,_se=C3=B1or!?=", "¡Hola, señor!", false},
164 {"=?UTF-8?Q?=C2=A1Hola,_se=C3=B1or!?=", "¡Hola, señor!"},
269 QEncoding.Encode("UTF-8", "¡Hola, señor!")
  /prebuilts/go/linux-x86/src/mime/
encodedword_test.go 18 fmt.Println(QEncoding.Encode("utf-8", "¡Hola, señor!"))
20 fmt.Println(BEncoding.Encode("UTF-8", "¡Hola, señor!"))
58 // ¡Hola, señor!
98 // ¡Hola, señor!
131 {"=?UTF-8?Q?=C2=A1Hola,_se=C3=B1or!?=", "¡Hola, señor!", false},
164 {"=?UTF-8?Q?=C2=A1Hola,_se=C3=B1or!?=", "¡Hola, señor!"},
269 QEncoding.Encode("UTF-8", "¡Hola, señor!")
  /external/javasqlite/src/main/java/SQLite/
Database.java 38 } catch (SQLite.Exception se) {
39 throw se;
67 } catch (SQLite.Exception se) {
68 throw se;
97 } catch (SQLite.Exception se) {
98 throw se;
  /external/apache-xml/src/main/java/org/apache/xalan/serialize/
SerializerUtils.java 200 catch (org.xml.sax.SAXException se)
202 throw new TransformerException(se);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopyOf.java 203 catch(org.xml.sax.SAXException se)
205 throw new TransformerException(se);
ElemElement.java 348 catch (SAXException se)
350 throw new TransformerException(se);
ElemExtensionCall.java 265 catch(SAXException se) {
266 throw new TransformerException(se);
ElemLiteralResult.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TrAXFilter.java 125 catch (org.xml.sax.SAXException se) {}
150 catch (org.xml.sax.SAXException se){}
TransformerIdentityImpl.java 399 catch (SAXException se)
401 throw new TransformerException(se);
439 } catch (SAXException se) {
440 throw new TransformerException(se);
446 } catch (org.xml.sax.SAXException se) {
471 catch (org.xml.sax.SAXException se){}
500 catch (org.xml.sax.SAXException se)
502 throw new TransformerException(se);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java 77 catch (SecurityException se)
250 catch (SecurityException se) {
  /external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java 70 catch (SecurityException se)
243 catch (SecurityException se) {
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprIteratorSimple.java 126 catch (javax.xml.transform.TransformerException se)
130 throw new org.apache.xml.utils.WrappedRuntimeException(se);

Completed in 566 milliseconds

1 2 3 45 6 7 8 91011>>