Home
last modified time | relevance | path

Searched refs:nb (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/hprof/
DHprofOutput.c112 int nb; in hprofFlushRecord() local
118 nb = fwrite(headBuf, 1, sizeof(headBuf), fp); in hprofFlushRecord()
119 if (nb != sizeof(headBuf)) { in hprofFlushRecord()
122 nb = fwrite(rec->body, 1, rec->length, fp); in hprofFlushRecord()
123 if (nb != (int)rec->length) { in hprofFlushRecord()
/dalvik/dx/src/com/android/dx/ssa/
DDomFront.java170 SsaBasicBlock nb = nodes.get(b); in calcDomFronts() local
172 BitSet pred = nb.getPredecessors(); in calcDomFronts()
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
DByteTest.java530 Byte nb = new Byte("-128");
532 && (nb.byteValue() == (byte) -128));
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
DDecimalFormatTest.java514 Number nb = df.parse("" + Long.MIN_VALUE, pos); in test_parseLjava_lang_String_Ljava_text_ParsePosition() local
515 assertTrue(nb instanceof Long); in test_parseLjava_lang_String_Ljava_text_ParsePosition()
522 nb = df.parse("" + Long.MAX_VALUE, pos); in test_parseLjava_lang_String_Ljava_text_ParsePosition()
523 assertTrue(nb instanceof Long); in test_parseLjava_lang_String_Ljava_text_ParsePosition()
531 nb = df.parse("invalid", pos); in test_parseLjava_lang_String_Ljava_text_ParsePosition()
532 assertNull(nb); in test_parseLjava_lang_String_Ljava_text_ParsePosition()