Displaying 3 results from an estimated 3 matches for "string_type".
2011 Jul 20
0
[PATCH] fix ipv4 static/dhcp/disabled networking changes
...if os.path.exists("/config/files"):
if os.path.getsize('/config/files') == 0:
print "There are currently no persisted files."
- return True
+ return True
if os.path.ismount("/config"):
if isinstance(files,STRING_TYPE):
files_list = []
--
1.7.5.4
2014 Dec 16
0
[ANNOUNCE] nftables 0.4 release
...9;redirect :PORT'
tests: regression: fix wrong number of test files
tests: regression: simplify run_test_file() in case `-e' is used
tests: regression: log.t: this works for bridge and arp since 3.17
build: restore --disable-debug
datatype: missing byteorder in string_type
Bump version to v0.4
Patrick McHardy (16):
netlink: check and handle errors from netlink_delinearize_set()
evaluate: fix concat expressions as map arguments
payload: take endianess into account when updating the payload context
datatype: take endianess into account in...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...& s) const override
+ {
+ s += "(";
+ for (size_t i = 0; i < nparams; ++i)
+ {
+ if (i) s += ", ";
+ params[i]->print(s);
+ }
+ s += ")";
+ if (ret) ret->print_right(s);
+ }
+};
+
+class string_type final : public type {
+ string_ref as_str;
+
+public:
+ string_type(string_ref as_str) : as_str(as_str) {}
+ void print_left(stream& s) const override { s += as_str; }
+};
+
+class name_type final : public type
+{
+ const string_ref name;
+public:
+ name_type(string_ref name) : n...