OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isNumeric
(Results
1 - 25
of
44
) sorted by null
1
2
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
TypeResolver.java
82
if (
isNumeric
(lhs) ||
isNumeric
(rhs)) {
92
if (
isNumeric
(lhs) ||
isNumeric
(rhs)) {
102
if (
isNumeric
(lhs) ||
isNumeric
(rhs)) {
111
static boolean
isNumeric
(PExpression node) {
/libcore/luni/src/test/java/libcore/java/net/
InetAddressTest.java
107
assertTrue(InetAddress.
isNumeric
("1.2.3.4"));
108
assertTrue(InetAddress.
isNumeric
("127.0.0.1"));
111
assertTrue(InetAddress.
isNumeric
("::1"));
112
assertTrue(InetAddress.
isNumeric
("2001:4860:800d::68"));
115
assertTrue(InetAddress.
isNumeric
("::ffff:127.0.0.1"));
118
assertTrue(InetAddress.
isNumeric
("[2001:4860:800d::68]"));
119
assertTrue(InetAddress.
isNumeric
("[::ffff:127.0.0.1]"));
122
assertFalse(InetAddress.
isNumeric
("example.com"));
125
assertFalse(invalid, InetAddress.
isNumeric
(invalid));
/external/chromium_org/third_party/icu/source/i18n/
measure.cpp
28
(!number.
isNumeric
() || adoptedUnit == 0)) {
numfmt.cpp
454
if (n->
isNumeric
() && n->getDigitList() != NULL) {
499
if (n->
isNumeric
() && n->getDigitList() != NULL) {
[
all
...]
fmtable.cpp
373
Formattable::
isNumeric
() const {
/external/icu4c/i18n/
measure.cpp
28
(!number.
isNumeric
() || adoptedUnit == 0)) {
plurfmt.cpp
209
if (obj.
isNumeric
()) {
numfmt.cpp
526
if (n->
isNumeric
() && n->getDigitList() != NULL) {
571
if (n->
isNumeric
() && n->getDigitList() != NULL) {
[
all
...]
msgfmt.cpp
[
all
...]
fmtable.cpp
380
Formattable::
isNumeric
() const {
smpdtfmt.cpp
[
all
...]
/external/chromium_org/tools/perf/utils/results_viewer/src/
main.js
23
if (
isNumeric
(firstElement)) {
75
if (
isNumeric
(element)) {
169
if (
isNumeric
(firstRow[selectedColumnIndex])) {
208
line.push(
isNumeric
(elementValue) ? parseFloat(elementValue) :
287
function
isNumeric
(element) {
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java
300
if (!InetAddress.
isNumeric
(ipAddr)) {
312
if (!InetAddress.
isNumeric
(gwAddr)) {
336
if (!InetAddress.
isNumeric
(dnsAddr)) {
348
if (!InetAddress.
isNumeric
(dnsAddr)) {
/external/chromium_org/third_party/icu/source/i18n/unicode/
fmtable.h
273
UBool
isNumeric
() const;
smpdtfmt.h
[
all
...]
/external/icu4c/i18n/unicode/
fmtable.h
285
UBool
isNumeric
() const;
smpdtfmt.h
[
all
...]
/libcore/luni/src/main/java/javax/net/ssl/
DefaultHostnameVerifier.java
51
return InetAddress.
isNumeric
(host)
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_value.cpp
939
return (
isNumeric
() && asDouble() == 0.0 )
956
return
isNumeric
()
960
return
isNumeric
()
964
return
isNumeric
()
[
all
...]
/libcore/luni/src/main/java/java/net/
HttpCookie.java
101
if (a.equals(b) && (isFullyQualifiedDomainName(a, 0) || InetAddress.
isNumeric
(a))) {
InetAddress.java
466
public static boolean
isNumeric
(String address) {
[
all
...]
URI.java
527
if (InetAddress.
isNumeric
(host)) {
[
all
...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
json_manifest.cc
205
if (!opt_level.empty() && !opt_level.
isNumeric
()) {
/external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h
288
bool
isNumeric
() const;
[
all
...]
/libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java
652
if (!InetAddress.
isNumeric
(ip)) {
Completed in 2856 milliseconds
1
2