Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
109 views

testing c++ iterator

I'm writing a c++ RandomAccessIterator for a custom array type. Since it doesn't work with std::sort and a simple int array, I'd like to make sure that I have implemented it correctly. Do you know ...
3
votes
1answer
61 views

XPATH Conformance

I have an XPath engine implementation that needs to be tested. Is there a set of standard conformance tests that we can apply to validate that conforms to the XPath specification (in relation to ...
2
votes
4answers
313 views

How do I provide a default implementation for an Objective-C protocol?

I'd like to specify an Objective-C protocol with an optional routine. When the routine is not implemented by a class conforming to the protocol I'd like to use a default implementation in its place. ...
2
votes
2answers
96 views

Why is there no * in front of delegate declaration?

I just noticed there is no * in front of the declaration for a delegate ... I did something like this : @protocol NavBarHiddenDelegate; @interface AsyncImageView : UIView { NSURLConnection* ...
1
vote
4answers
191 views

How to check C source code against the current standard?

I'm continuing to learn C and would like to adhere to whatever is the current standard, but finding a good reference to that seems to be problem. From what I've found online (mostly through Google ...
1
vote
0answers
47 views

Is a c# WebService with nullabele int BasicProfile 1.1 conform

I want to implement a WebService that should be BasicProfile 1.1 conform. The WebMethod should be something like this: byte[] Test(int? count) Is this call BasicProfile 1.1 conform? How can I check ...
0
votes
0answers
18 views

OMX Compliancy requirements

I have a minor query regarding the OMX compliance. The Khronos OMX 1.1.2 specifies OMX_IndexConfigCommonScale as a standard (not sure if it says mandatory) index to be supported. But this is not ...
0
votes
1answer
119 views

html5 conformance checker replaces my doctype

When I validate my web page, sometimes the conformance checker will validate the following random code instead of my web page. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" ...
0
votes
1answer
17 views

Conforming results to a scale

I'm monitoring the change in certain values day over day. The changes vary, and can be of any value size, typically 1-100 difference, but maybe there is an outlier at 500 or even 900. I want to be ...
0
votes
2answers
162 views

In Objective-C, am I allowed to override a method in a subclass that the parent used to conform to a protocol?

Example is provided below. If I set id<RandomProtocol> delegate = [[B alloc] init]; Will doingSomething of class A or class B be called? A.h @protocol RandomProtocol ...