/external/icu4c/i18n/ |
vtzone.cpp | 32 static const UChar COLON = 0x3A; /* : */ [all...] |
plurrule_impl.h | 52 #define COLON ((UChar)0x003A)
|
/external/bluetooth/glib/gio/ |
gfileinfo.c | 182 const char *colon; local 200 colon = strstr (attribute, "::"); 201 if (colon) 202 ns = g_strndup (attribute, colon - attribute); 1883 char *colon; local [all...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/ |
ZoneInfoDB.java | 366 boolean colon = false; 372 colon = true; 392 if (colon)
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/res/ |
XMLErrorResources.java | 341 // The localname is the portion after the optional colon; the message indicates 347 // The prefix is the portion before the optional colon; the message indicates 353 "Name cannot start with a colon"},
|
/bionic/libc/regex/ |
cname.h | 115 { "colon", ':' },
|
/cts/tools/dasm/src/dasm/ |
sym.java | 69 static final int COLON = 66;
|
parser.cup | 83 EQ, SEP, COLON 572 Word:label COLON 575 Int:label COLON instruction 828 Int:i COLON Word:w SEP 831 Int:i COLON Relative:off SEP
|
/dalvik/dx/src/com/android/dx/util/ |
HexParser.java | 33 * start with a hex offset followed by a colon (which is verified
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/ |
DOM2Helper.java | 79 * with a namespace prefix, this is the part after the colon; otherwise
|
/external/apache-http/src/org/apache/http/ |
Header.java | 39 * of a name followed by a colon (":") and the field value. Field names
|
/external/dbus/tools/ |
dbus-send.1 | 36 (message arguments). These are given as a type name, a colon, and
|
/external/ipsec-tools/src/racoon/ |
prsa_tok.l | 59 : { return COLON; }
|
/external/ppp/pppd/plugins/radius/etc/ |
radiusclient.conf | 34 # RADIUS listens separated by a colon from the hostname. if
|
radiusclient.conf.in | 34 # RADIUS listens separated by a colon from the hostname. if
|
/external/proguard/src/proguard/obfuscate/ |
MappingPrinter.java | 138 * colon, or just an empty String if no range is available.
|
/external/proguard/src/proguard/shrink/ |
UsagePrinter.java | 168 * colon, or just an empty String if no range is available.
|
/external/webkit/WebCore/page/ |
Location.cpp | 83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
|
/external/webkit/WebCore/xml/ |
XPathParser.cpp | 456 int colon = qName.find(':'); local 457 if (colon >= 0) { 460 namespaceURI = m_resolver->lookupNamespaceURI(qName.left(colon)); 463 localName = qName.substring(colon + 1);
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
httpread.h | 117 * The tag should end with a colon for reliable matching.
|
/system/core/sh/ |
parser.h | 53 #define VSNUL 0x10 /* colon--treat the empty string as unset */
|
/external/tcpdump/ |
print-gre.c | 203 printf(": "); /* put in a colon as protocol demarc */ 299 printf(": "); /* put in a colon as protocol demarc */
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/ |
15.11.4.4-1.js | 131 * with possible whitespace on each side of the colon sign. 133 * We allow for no colon in case err.message was not provided by the user.
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
XMLChar.java | 652 final int colon = str.indexOf(':'); local 654 if (colon == 0 || colon == str.length() - 1) { 658 if (colon > 0) { 659 final String prefix = str.substring(0,colon); 660 final String localPart = str.substring(colon+1);
|
/frameworks/base/services/java/com/android/server/ |
WallpaperManagerService.java | 777 int colon = resName.indexOf(':'); local 778 if (colon > 0) { 779 pkg = resName.substring(0, colon); 789 if (colon > 0 && slash > 0 && (slash-colon) > 1) { 790 type = resName.substring(colon+1, slash); [all...] |