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

1 2 3 4 5 6 7

  /external/elfutils/tests/
test-nlist.c 33 struct nlist nl[6] = local
45 if (nlist (".libs/test-nlist", nl) != 0
46 && nlist ("./test-nlist", nl) != 0)
52 for (cnt = 0; nl[cnt].n_name != NULL; ++cnt)
56 printf ("nl[%d].n_name = \"%s\"\n"
57 "nl[%d].n_value = %ld\n"
58 "nl[%d].n_scnum = %d\n"
59 "nl[%d].n_type = %u\n"
60 "nl[%d].n_sclass = %d\n"
61 "nl[%d].n_numaux = %d\n\n"
    [all...]
  /system/core/sh/
mkinit.sh 36 nl='
50 decnl="$nl"
67 decles="$decles$nl"
70 decles="${decles}${line}${nl}"
75 decnl="$nl"
85 decles="${decles}${decnl}extern${def};${comment}${nl}"
96 defines="${defines}#undef $2${nl}${line}${nl}"
102 ev="${nl} /* from $src: */${nl} {${nl}
    [all...]
mktokens 70 nl=`wc -l /tmp/ka$$`
  /libcore/luni/src/test/java/libcore/java/util/prefs/
OldNodeChangeEventTest.java 34 MockNodeChangeListener nl = new MockNodeChangeListener() { local
60 pref.addNodeChangeListener(nl);
62 nl.waitForEvent();
63 assertEquals(1, nl.getAdded());
64 assertTrue(nl.getAddResult());
65 nl.reset();
67 nl.waitForEvent();
68 assertEquals(1, nl.getRemoved());
69 assertTrue(nl.getRemoveResult());
70 nl.reset()
82 MockNodeChangeListener nl = new MockNodeChangeListener() { local
    [all...]
OldPreferencesTest.java 633 MockNodeChangeListener nl = null; local
636 nl = new MockNodeChangeListener();
637 pref.addNodeChangeListener(nl);
639 nl.waitForEvent();
640 assertEquals(1, nl.getAdded());
641 nl.reset();
643 nl.waitForEvent();
644 assertEquals(0, nl.getAdded());
645 nl.reset();
647 pref.removeNodeChangeListener(nl);
    [all...]
  /external/elfutils/libelf/
nlist.c 48 nlist (const char *filename, struct nlist *nl)
161 while (nl->n_name != NULL && nl->n_name[0] != '\0')
167 search.str = nl->n_name;
168 found = nlist_fshash_find (table, nl->n_name, 0, &search);
173 nl->n_value = found->sym.st_value;
174 nl->n_scnum = found->sym.st_shndx;
175 nl->n_type = GELF_ST_TYPE (found->sym.st_info);
177 nl->n_sclass = 0;
178 nl->n_numaux = 0
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCount.java 47 // DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
53 // while (DTM.NULL != nl.nextNode())
57 // nl.detach();
58 DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode()); local
59 int i = nl.getLength();
60 nl.detach();
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
FunctionPattern.java 106 DTMIterator nl = m_functionExpr.asIterator(xctxt, context); local
109 if (null != nl)
113 while (DTM.NULL != (n = nl.nextNode()))
125 // nl.detach();
127 nl.detach();
150 DTMIterator nl = m_functionExpr.asIterator(xctxt, context); local
153 if (null != nl)
157 while (DTM.NULL != (n = nl.nextNode()))
169 nl.detach();
193 DTMIterator nl = m_functionExpr.asIterator(xctxt, context) local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyManager.java 62 XNodeSet nl = null; local
84 nl = kt.getNodeSetDTMByKey(name, ref);
86 if (nl != null)
96 if ((null == nl) &&!foundDoc /* && m_needToBuildKeysTable */)
108 nl = kt.getNodeSetDTMByKey(name, ref);
113 return nl;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 56 String nl = System.getProperty("line.separator"); local
76 buf.append(nl);
88 buf.append(nl);
124 buf.append(nl);
130 buf.append(nl);
144 buf.append(nl);
154 buf.append(nl);
173 buf.append(nl);
183 buf.append(nl);
197 buf.append(indent + "ObjectIdentifier(" + ((DERObjectIdentifier)obj).getId() + ")" + nl);
387 String nl = System.getProperty("line.separator"); local
    [all...]
  /external/blktrace/btt/
plat.c 25 long nl; member in struct:plat_info
38 pp->nl = 0;
62 pp->first_ts + (delta / 2), pp->tl / pp->nl);
77 pp->nl = 1;
83 pp->first_ts + (delta / 2), pp->tl / pp->nl);
86 pp->nl = 1;
90 pp->nl += 1;
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 125 formatted_raw_ostream& nl(formatted_raw_ostream &Out, int delta = 0);
163 formatted_raw_ostream &CppWriter::nl(formatted_raw_ostream &Out, int delta) { function in class:CppWriter
438 nl(Out);
440 Out << '{'; in(); nl(Out);
441 Out << "SmallVector<AttributeWithIndex, 4> Attrs;"; nl(Out);
442 Out << "AttributeWithIndex PAWI;"; nl(Out);
484 nl(Out);
486 nl(Out);
489 nl(Out);
490 out(); nl(Out)
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
XMLFormatter.java 54 String nl = System.lineSeparator(); local
57 sb.append("<record>").append(nl);
80 sb.append("</record>").append(nl);
115 String nl = System.lineSeparator(); local
116 sb.append(indent).append("<exception>").append(nl);
121 sb.append(indent).append(indent).append("<frame>").append(nl);
125 sb.append(indent).append(indent).append("</frame>").append(nl);
127 sb.append(indent).append("</exception>").append(nl);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 77 template <> notlit ft(notlit nl) { return nl; }
79 template <> constexpr char ft(char nl); // desired-error {{constexpr declaration of 'ft<char>' follows non-constexpr declaration}}
80 template <> constexpr int gt(int nl) { return nl; } // unexpected-error {{follows non-constexpr declaration}} unexpected-note {{here}}
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
X509CRLObject.java 352 String nl = System.getProperty("line.separator"); local
355 nl);
357 .append(nl);
359 .append(nl);
361 .append(nl);
363 .append(nl);
368 new String(Hex.encode(sig, 0, 20))).append(nl);
374 new String(Hex.encode(sig, i, 20))).append(nl);
379 new String(Hex.encode(sig, i, sig.length - i))).append(nl);
391 buf.append(" Extensions: ").append(nl);
    [all...]
JCERSAPrivateCrtKey.java 229 String nl = System.getProperty("line.separator"); local
231 buf.append("RSA Private CRT Key").append(nl);
232 buf.append(" modulus: ").append(this.getModulus().toString(16)).append(nl);
233 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
234 buf.append(" private exponent: ").append(this.getPrivateExponent().toString(16)).append(nl);
235 buf.append(" primeP: ").append(this.getPrimeP().toString(16)).append(nl);
236 buf.append(" primeQ: ").append(this.getPrimeQ().toString(16)).append(nl);
237 buf.append(" primeExponentP: ").append(this.getPrimeExponentP().toString(16)).append(nl);
238 buf.append(" primeExponentQ: ").append(this.getPrimeExponentQ().toString(16)).append(nl);
239 buf.append(" crtCoefficient: ").append(this.getCrtCoefficient().toString(16)).append(nl);
    [all...]
X509CRLEntryObject.java 233 String nl = System.getProperty("line.separator"); local
235 buf.append(" userCertificate: ").append(this.getSerialNumber()).append(nl);
236 buf.append(" revocationDate: ").append(this.getRevocationDate()).append(nl);
237 buf.append(" certificateIssuer: ").append(this.getCertificateIssuer()).append(nl);
246 buf.append(" crlEntryExtensions:").append(nl);
261 buf.append(new CRLReason(DEREnumerated.getInstance(dIn.readObject()))).append(nl);
265 buf.append("Certificate issuer: ").append(new GeneralNames((ASN1Sequence)dIn.readObject())).append(nl);
270 buf.append(" value = ").append(ASN1Dump.dumpAsString(dIn.readObject())).append(nl);
276 buf.append(" value = ").append("*****").append(nl);
281 buf.append(nl);
    [all...]
JCERSAPublicKey.java 126 String nl = System.getProperty("line.separator"); local
128 buf.append("RSA Public Key").append(nl);
129 buf.append(" modulus: ").append(this.getModulus().toString(16)).append(nl);
130 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
X509CertificateObject.java 622 String nl = System.getProperty("line.separator"); local
624 buf.append(" [0] Version: ").append(this.getVersion()).append(nl);
625 buf.append(" SerialNumber: ").append(this.getSerialNumber()).append(nl);
626 buf.append(" IssuerDN: ").append(this.getIssuerDN()).append(nl);
627 buf.append(" Start Date: ").append(this.getNotBefore()).append(nl);
628 buf.append(" Final Date: ").append(this.getNotAfter()).append(nl);
629 buf.append(" SubjectDN: ").append(this.getSubjectDN()).append(nl);
630 buf.append(" Public Key: ").append(this.getPublicKey()).append(nl);
631 buf.append(" Signature Algorithm: ").append(this.getSigAlgName()).append(nl);
635 buf.append(" Signature: ").append(new String(Hex.encode(sig, 0, 20))).append(nl);
    [all...]
  /external/chromium/sdch/open-vcdiff/
mkinstalldirs 14 nl='
16 IFS=" "" $nl"
  /external/libpng/
mkinstalldirs 14 nl='
16 IFS=" "" $nl"
  /external/javassist/src/main/javassist/bytecode/stackmap/
TypedBlock.java 98 public void setStackMap(int st, TypeData[] stack, int nl, TypeData[] locals)
103 numLocals = nl;
112 int nl = localsTypes.length; local
113 while (nl > 0 && localsTypes[nl - 1] == TypeTag.TOP) {
114 if (nl > 1) {
115 TypeData td = localsTypes[nl - 2];
120 --nl;
123 numLocals = nl;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncKey.java 118 XNodeSet nl = local
122 nl.setRoot(xctxt.getCurrentNode(), xctxt);
126 upi.addIterator(nl);
132 //mnodeset.addNodesInDocOrder(nl, xctxt); needed??
  /external/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/
PemWriter.java 30 String nl = System.getProperty("line.separator"); local
31 if (nl != null)
33 nlLength = nl.length();
  /bionic/libc/stdio/
fvwrite.c 54 char *nl; local
171 nl = memchr((void *)p, '\n', len);
172 nldist = nl ? nl + 1 - p : (int)len + 1;

Completed in 1632 milliseconds

1 2 3 4 5 6 7