Displaying 2 results from an estimated 2 matches for "getstarttim".
Did you mean:
  getstarttime
  
2009 Mar 12
1
[LLVMdev] function getting typed as variable argument functions
I have some code I am compiling with LLVM, and some functions in the 
code are begin declared as variable argument functions with no named 
arguments when the functions have known types.  For example, the 
following C code
uint64_t getStartTime();
is getting compiled to
declare i64 @getStartTime(...)
in bitcode.  Why would this happen?
Regards,
Ryan
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...kgroundColor",selectedColor);
+    }
+
+    public function getNodeName():String {
+      return dataPoint.getNodeName();
+    }
+
     public function getResolution():Number {
       return dataPoint.getResolution();
     }
@@ -97,5 +130,24 @@ package org.ovirt.elements {
     public function getStartTime():Number {
       return dataPoint.getTimestamp().getTime();
     }
+
+    public function setColor(color:String):void {
+      this.color = color;
+      this.setStyle("backgroundColor",color);
+    }
+
+    public function setLitColor(litColor:String):void {
+      this.litColor = litC...