HomeSort by relevance Sort by last modified time
    Searched full:numstr (Results 1 - 25 of 34) sorted by null

1 2

  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
StringUtil.java 37 String numStr = Long.toString(num);
38 int len = totalLen - numStr.length();
43 return pads + numStr;
54 String numStr = Long.toString(num);
55 int len = totalLen - numStr.length();
60 return pads + numStr;
71 String numStr = Integer.toString(num);
72 int len = totalLen - numStr.length();
77 return pads + numStr;
88 String numStr = Integer.toString(num);
    [all...]
  /external/openssh/openbsd-compat/
strtonum.c 34 strtonum(const char *numstr, long long minval, long long maxval,
55 ll = strtoll(numstr, &ep, 10);
56 if (numstr == ep || *ep != '\0')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
ic.py 55 numstr = ord(data[0]) << 8 | ord(data[1])
58 for i in range(numstr):
88 numstr = len(data)
89 rv = chr((numstr>>8) & 0xff) + chr(numstr & 0xff)
  /external/chromium_org/third_party/icu/source/i18n/
ucol_tok.h 63 uint32_t numStr[UCOL_CE_STRENGTH_LIMIT];
dtfmtsym.cpp     [all...]
  /external/icu4c/i18n/
ucol_tok.h 63 uint32_t numStr[UCOL_CE_STRENGTH_LIMIT];
  /external/tcpdump/
print-telnet.c 97 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
100 numstr(int x) function
print-isakmp.c 92 static char *numstr(int);
143 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
1042 printf(" type=%s", numstr(ntohs(n.type)));
1046 printf(" type=%s", numstr(ntohs(n.type)));
1066 printf(" type=%s", numstr(ntohs(n.type)));
1260 numstr(int x) function
    [all...]
  /external/icu4c/test/intltest/
numrgts.cpp     [all...]
  /external/llvm/docs/tutorial/
LangImpl1.rst 225 std::string NumStr;
227 NumStr += LastChar;
231 NumVal = strtod(NumStr.c_str(), 0);
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 45 std::string NumStr;
47 NumStr += LastChar;
51 NumVal = strtod(NumStr.c_str(), 0);
  /external/chromium_org/third_party/simplejson/
_speedups.c 1505 PyObject *numstr; local
1608 PyObject *numstr; local
    [all...]
  /external/libppp/src/
defs.h 135 extern const char *NumStr(long, char *, size_t);
route.c 240 return NumStr(idx, NULL, 0);
243 return NumStr(idx, NULL, 0);
246 return NumStr(idx, NULL, 0);
274 return NumStr(idx, NULL, 0);
309 return NumStr(idx, NULL, 0);
defs.c 341 NumStr(long val, char *buf, size_t sz)
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 50 std::string NumStr;
52 NumStr += LastChar;
56 NumVal = strtod(NumStr.c_str(), 0);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 57 std::string NumStr;
59 NumStr += LastChar;
63 NumVal = strtod(NumStr.c_str(), 0);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 66 std::string NumStr;
68 NumStr += LastChar;
72 NumVal = strtod(NumStr.c_str(), 0);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 71 std::string NumStr;
73 NumStr += LastChar;
77 NumVal = strtod(NumStr.c_str(), 0);
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 75 std::string NumStr;
77 NumStr += LastChar;
81 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 93 std::string NumStr;
95 NumStr += LastChar;
99 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 76 std::string NumStr;
78 NumStr += LastChar;
82 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 78 std::string NumStr;
80 NumStr += LastChar;
84 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
toy.cpp 78 std::string NumStr;
80 NumStr += LastChar;
84 NumVal = strtod(NumStr.c_str(), 0);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java     [all...]

Completed in 767 milliseconds

1 2