/external/chromium_org/net/base/ |
dns_util.h | 19 // dotted: a string in dotted form: "www.google.com" 21 NET_EXPORT_PRIVATE bool DNSDomainFromDot(const base::StringPiece& dotted, 24 // DNSDomainToString converts a domain in DNS format to a dotted string.
|
dns_util.cc | 12 bool DNSDomainFromDot(const base::StringPiece& dotted, std::string* out) { 13 const char* buf = dotted.data(); 14 unsigned n = dotted.size();
|
/external/chromium/net/base/ |
dns_util.cc | 12 bool DNSDomainFromDot(const std::string& dotted, std::string* out) { 13 const char* buf = dotted.data(); 14 unsigned n = dotted.size();
|
dns_util.h | 18 // dotted: a string in dotted form: "www.google.com" 20 bool DNSDomainFromDot(const std::string& dotted, std::string* out); 22 // DNSDomainToString coverts a domain in DNS format to a dotted string.
|
/external/chromium-trace/trace-viewer/src/ui/ |
list_view.css | 24 outline: 1px dotted rgba(0,0,0,0.1);
|
/external/chromium_org/v8/test/intl/ |
testcfg.py | 42 for dotted in [x for x in dirs if x.startswith('.')]: 43 dirs.remove(dotted)
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Output.java | 268 * Converts a type descriptor to human-readable "dotted" form. For 321 String dotted = descriptorToDot(typeName); local 323 int start = dotted.lastIndexOf("."); 325 return dotted; 327 return dotted.substring(start+1); 333 * dotted form. 336 String dotted = descriptorToDot(typeName); local 338 int end = dotted.lastIndexOf("."); 343 return dotted.substring(0, end);
|
/external/chromium_org/v8/tools/profviz/ |
profviz.css | 47 border: 1px dotted #aaa; 108 border-bottom: 1px dotted #000; 136 border-bottom: 1px dotted #000;
|
/external/chromium_org/v8/test/mjsunit/ |
testcfg.py | 47 for dotted in [x for x in dirs if x.startswith('.')]: 48 dirs.remove(dotted)
|
/external/v8/test/es5conform/ |
testcfg.py | 83 for dotted in [x for x in dirs if x.startswith('.')]: 84 dirs.remove(dotted)
|
/external/chromium-trace/trace-viewer/src/cc/ |
picture_ops_list_view.css | 45 outline: 1px dotted rgba(0, 0, 0, 0.1);
|
/external/chromium_org/v8/test/message/ |
testcfg.py | 48 for dotted in [x for x in dirs if x.startswith('.')]: 49 dirs.remove(dotted)
|
/external/chromium_org/v8/test/mozilla/ |
testcfg.py | 75 for dotted in [x for x in dirs if x.startswith(".")]: 76 dirs.remove(dotted)
|
/external/chromium_org/v8/test/test262/ |
testcfg.py | 60 for dotted in [x for x in dirs if x.startswith(".")]: 61 dirs.remove(dotted)
|
/external/v8/test/mozilla/ |
testcfg.py | 100 for dotted in [x for x in dirs if x.startswith('.')]: 101 dirs.remove(dotted)
|
/external/v8/test/test262/ |
testcfg.py | 87 for dotted in [x for x in dirs if x.startswith('.')]: 88 dirs.remove(dotted)
|
/external/iproute2/include/ |
iptables.h | 147 extern struct in_addr *dotted_to_addr(const char *dotted);
|
/external/chromium_org/remoting/webapp/ |
host.js | 47 * either dotted-decimal notation notation, or directly represented by the
|
host_plugin_proto.js | 66 * the version, as a dotted string.
|
/external/chromium_org/v8/test/webkit/ |
testcfg.py | 49 for dotted in [x for x in dirs if x.startswith('.')]: 50 dirs.remove(dotted)
|
/external/iptables/iptables/ |
xtables.c | 1147 static struct in_addr *__numeric_to_ipaddr(const char *dotted, bool is_mask) 1155 /* copy dotted string, because we need to modify it */ 1156 strncpy(buf, dotted, sizeof(buf) - 1); 1193 struct in_addr *xtables_numeric_to_ipaddr(const char *dotted) 1195 return __numeric_to_ipaddr(dotted, false); 1198 struct in_addr *xtables_numeric_to_ipmask(const char *dotted) 1200 return __numeric_to_ipaddr(dotted, true); [all...] |
/external/iproute2/tc/ |
m_ipt.c | 314 struct in_addr *dotted_to_addr(const char *dotted) 323 /* copy dotted string, because we need to modify it */ 324 strncpy(buf, dotted, sizeof (buf) - 1);
|
/dalvik/dexdump/ |
DexDump.cpp | 121 * Converts a type descriptor to human-readable "dotted" form. For 177 * "dotted" form. 558 char* dotted = descriptorToDot(interfaceName); local 559 printf("<implements name=\"%s\">\n</implements>\n", dotted); 560 free(dotted); [all...] |
/external/chromium_org/net/dns/ |
dns_transaction_unittest.cc | 28 std::string DomainFromDot(const base::StringPiece& dotted) { 30 EXPECT_TRUE(DNSDomainFromDot(dotted, &out)); [all...] |
/external/chromium_org/third_party/jinja2/ |
filters.py | 698 It's now possible to use dotted notation to group by the child
|