Skip to content

Instantly share code, notes, and snippets.

@mandel-macaque
Created September 20, 2017 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mandel-macaque/45d4bee7a403415328701febcd886952 to your computer and use it in GitHub Desktop.
Save mandel-macaque/45d4bee7a403415328701febcd886952 to your computer and use it in GitHub Desktop.
MandelsWorkMachine:docfixer mandel$ grep "\.Value =" . -Rn
./AppleDocMerger.cs:218: if (typeRemarks.Value == "To be added.")
./AppleDocMerger.cs:219: typeRemarks.Value = "";
./AppleDocMerger.cs:222: if (overview != null && options.QuickSummaries && typeSummary.Value == "To be added."){
./AppleDocMerger.cs:232: typeSummary.Value = value;
./AppleDocMerger.cs:234: typeSummary.Value = value.Substring (0, dot+1);
./AppleDocMerger.cs:297: if (summaryNode.Value == "To be added."){
./AppleDocMerger.cs:302: summaryNode.Value = "";
./AppleDocMerger.cs:313: if (valueNode.Value == "To be added.")
./AppleDocMerger.cs:314: valueNode.Value = "";
./AppleDocMerger.cs:324: eParamNodes.Current.Value = "";
./AppleDocMerger.cs:332: if (return_type != null && return_type.Value != "System.Void" && member.XPathSelectElement ("MemberType").Value == "Method") {
./AppleDocMerger.cs:342: retNode.Value = "";
./AppleDocMerger.cs:352: if (remarksNode.Value == "To be added.")
./AppleDocMerger.cs:353: remarksNode.Value = "";
./AppleDocMerger.cs:433: href.Value = r.Replace (options.DocBase, "http://developer.apple.com/iphone/library/documentation");
./AppleDocMerger.cs:482: if (e.Value == "YES")
./AppleDocMerger.cs:484: if (e.Value == "NO")
./AppleDocMerger.cs:486: if (e.Value == "nil")
./AppleDocMerger.cs:585: var overview = appledocs.Descendants("h2").Where(e => e.Value == "Overview").FirstOrDefault();
./AppleDocMerger.cs:604: if (e.Value == "Class Methods" ||
./AppleDocMerger.cs:605: e.Value == "Instance Methods" ||
./AppleDocMerger.cs:606: e.Value == "Properties")
./AppleDocMerger.cs:639: let h5 = x.Descendants ("h5").FirstOrDefault (e => e.Value == section)
./AppleDocMerger.cs:665: let h5 = x.Descendants ("h5").FirstOrDefault (e => e.Value == "Discussion")
./AppleDocMerger.cs:766: var mDoc = appledocs.Descendants ("h3").Where (e => e.Value == selector).FirstOrDefault ();
./AppleDocMerger.cs:772: mDoc = appledocs.Descendants ("h3").Where (e => e.Value == newSelector).FirstOrDefault ();
./document-generated-code.cs:289: if (value != null && value.Value == "To be added.")
./document-generated-code.cs:295: // value.Value = "Value will be null when the constant is not available";
./document-generated-code.cs:298: if (summary.Value == "To be added."){
./document-generated-code.cs:300: summary.Value = "Represents the value associated with the constant " + export;
./document-generated-code.cs:446: handler.Value = "Method to invoke when the notification is posted.";
./document-generated-code.cs:447: summary.Value = "Registers a method to be notified when the " + notification.Item2 + " notification is posted.";
./document-generated-code.cs:490: summary.Value = "Event raised by the object.";
./document-generated-code.cs:491: remarks.Value = "If developers do not assign a value to this event, this will reset the value for the " + evtName + " property to an internal handler that maps delegates to events.";
./document-generated-code.cs:493: summary.Value = "Delegate invoked by the object to get a value.";
./document-generated-code.cs:494: remarks.Value = "Developers assign a function, delegate or anonymous method to this property to return a value to the object. If developers assign a value to this property, it this will reset the value for the " + evtName + " property to an internal handler that maps delegates to events.";
./document-generated-code.cs:515: element.Value = "";
./document-generated-code.cs:554: if (tnode.Value == "To be added."){
./document-generated-code.cs:555: tnode.Value = "";
./document-generated-code.cs:561: tnode.Value = "";
./document-generated-code.cs:604: if (summary.Value == "To be added."){
./document-generated-code.cs:611: tsummary.Value = summary.Value;
./document-generated-code.cs:625: if (retType.Value == "System.Threading.Tasks.Task"){
./document-generated-code.cs:626: returns.Value = "A task that represents the asynchronous " + name + " operation";
./document-generated-code.cs:627: } else if (returns.Value == "To be added." || HasImproveAnnotation (returns)) {
./document-generated-code.cs:681: ctor.XPathSelectElement ("Docs/summary").Value = "Constructs an instance of " + tresult_type;
./document-generated-code.cs:682: ctor.XPathSelectElement ("Docs/remarks").Value = "";
./document-generated-code.cs:684: par.Value = "Result value from the async operation";
./document-generated-code.cs:716: par.Value = original.Value;
./document-generated-code.cs:887: summary.Value = $"Extension methods for the {t.FullName} enumeration.";
./document-generated-code.cs:893: getDomain.XPathSelectElement ("Docs/param").Value = "The enumeration value";
./document-generated-code.cs:894: getDomain.XPathSelectElement ("Docs/summary").Value = $"Returns the error domain associated with the {t.FullName} value";
./document-generated-code.cs:1091: thisDoc.Value = "The instance on which this extension method operates on.";
./document-generated-code.cs:1105: par.Value = sourcePar.Value;
./SQLite.cs:1459: if (leftr.CommandText == "?" && leftr.Value == null)
./SQLite.cs:1461: else if (rightr.CommandText == "?" && rightr.Value == null)
./SQLite.cs:1513: if (r.Value == null) {
MandelsWorkMachine:docfixer mandel$
MandelsWorkMachine:docfixer mandel$ grep "\.Value =" . -Rn
./AppleDocMerger.cs:218: if (typeRemarks.Value == "To be added.")
./AppleDocMerger.cs:219: typeRemarks.Value = "";
./AppleDocMerger.cs:222: if (overview != null && options.QuickSummaries && typeSummary.Value == "To be added."){
./AppleDocMerger.cs:232: typeSummary.Value = value;
./AppleDocMerger.cs:234: typeSummary.Value = value.Substring (0, dot+1);
./AppleDocMerger.cs:297: if (summaryNode.Value == "To be added."){
./AppleDocMerger.cs:302: summaryNode.Value = "";
./AppleDocMerger.cs:313: if (valueNode.Value == "To be added.")
./AppleDocMerger.cs:314: valueNode.Value = "";
./AppleDocMerger.cs:324: eParamNodes.Current.Value = "";
./AppleDocMerger.cs:332: if (return_type != null && return_type.Value != "System.Void" && member.XPathSelectElement ("MemberType").Value == "Method") {
./AppleDocMerger.cs:342: retNode.Value = "";
./AppleDocMerger.cs:352: if (remarksNode.Value == "To be added.")
./AppleDocMerger.cs:353: remarksNode.Value = "";
./AppleDocMerger.cs:433: href.Value = r.Replace (options.DocBase, "http://developer.apple.com/iphone/library/documentation");
./AppleDocMerger.cs:482: if (e.Value == "YES")
./AppleDocMerger.cs:484: if (e.Value == "NO")
./AppleDocMerger.cs:486: if (e.Value == "nil")
./AppleDocMerger.cs:585: var overview = appledocs.Descendants("h2").Where(e => e.Value == "Overview").FirstOrDefault();
./AppleDocMerger.cs:604: if (e.Value == "Class Methods" ||
./AppleDocMerger.cs:605: e.Value == "Instance Methods" ||
./AppleDocMerger.cs:606: e.Value == "Properties")
./AppleDocMerger.cs:639: let h5 = x.Descendants ("h5").FirstOrDefault (e => e.Value == section)
./AppleDocMerger.cs:665: let h5 = x.Descendants ("h5").FirstOrDefault (e => e.Value == "Discussion")
./AppleDocMerger.cs:766: var mDoc = appledocs.Descendants ("h3").Where (e => e.Value == selector).FirstOrDefault ();
./AppleDocMerger.cs:772: mDoc = appledocs.Descendants ("h3").Where (e => e.Value == newSelector).FirstOrDefault ();
./document-generated-code.cs:289: if (value != null && value.Value == "To be added.")
./document-generated-code.cs:295: // value.Value = "Value will be null when the constant is not available";
./document-generated-code.cs:298: if (summary.Value == "To be added."){
./document-generated-code.cs:300: summary.Value = "Represents the value associated with the constant " + export;
./document-generated-code.cs:446: handler.Value = "Method to invoke when the notification is posted.";
./document-generated-code.cs:447: summary.Value = "Registers a method to be notified when the " + notification.Item2 + " notification is posted.";
./document-generated-code.cs:490: summary.Value = "Event raised by the object.";
./document-generated-code.cs:491: remarks.Value = "If developers do not assign a value to this event, this will reset the value for the " + evtName + " property to an internal handler that maps delegates to events.";
./document-generated-code.cs:493: summary.Value = "Delegate invoked by the object to get a value.";
./document-generated-code.cs:494: remarks.Value = "Developers assign a function, delegate or anonymous method to this property to return a value to the object. If developers assign a value to this property, it this will reset the value for the " + evtName + " property to an internal handler that maps delegates to events.";
./document-generated-code.cs:515: element.Value = "";
./document-generated-code.cs:554: if (tnode.Value == "To be added."){
./document-generated-code.cs:555: tnode.Value = "";
./document-generated-code.cs:561: tnode.Value = "";
./document-generated-code.cs:604: if (summary.Value == "To be added."){
./document-generated-code.cs:611: tsummary.Value = summary.Value;
./document-generated-code.cs:625: if (retType.Value == "System.Threading.Tasks.Task"){
./document-generated-code.cs:626: returns.Value = "A task that represents the asynchronous " + name + " operation";
./document-generated-code.cs:627: } else if (returns.Value == "To be added." || HasImproveAnnotation (returns)) {
./document-generated-code.cs:681: ctor.XPathSelectElement ("Docs/summary").Value = "Constructs an instance of " + tresult_type;
./document-generated-code.cs:682: ctor.XPathSelectElement ("Docs/remarks").Value = "";
./document-generated-code.cs:684: par.Value = "Result value from the async operation";
./document-generated-code.cs:716: par.Value = original.Value;
./document-generated-code.cs:887: summary.Value = $"Extension methods for the {t.FullName} enumeration.";
./document-generated-code.cs:893: getDomain.XPathSelectElement ("Docs/param").Value = "The enumeration value";
./document-generated-code.cs:894: getDomain.XPathSelectElement ("Docs/summary").Value = $"Returns the error domain associated with the {t.FullName} value";
./document-generated-code.cs:1091: thisDoc.Value = "The instance on which this extension method operates on.";
./document-generated-code.cs:1105: par.Value = sourcePar.Value;
./SQLite.cs:1459: if (leftr.CommandText == "?" && leftr.Value == null)
./SQLite.cs:1461: else if (rightr.CommandText == "?" && rightr.Value == null)
./SQLite.cs:1513: if (r.Value == null) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment