Searched defs:aDOMNode (Results 1 - 3 of 3) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DSizeTest01.cpp43 Test01_raw( nsIDOMNode* aDOMNode, nsString* aResult ) argument
52 nsIDOMNode* node = aDOMNode;
62 Test01_raw_optimized( nsIDOMNode* aDOMNode, nsString* aResult ) argument
79 // if ( !aDOMNode )
82 nsIDOMNode* node = aDOMNode;
89 Test01_nsCOMPtr( nsIDOMNode* aDOMNode, nsString* aResult ) argument
92 nsCOMPtr<nsIDOMNode> node = aDOMNode;
99 Test01_nsCOMPtr_optimized( nsIDOMNode* aDOMNode, nsString* aResult ) argument
102 // if ( !aDOMNode )
105 nsCOMPtr<nsIDOMNode> node = aDOMNode;
[all...]
H A DSizeTest02.cpp42 Test02_Raw00( nsISupports* aDOMNode, nsString* aResult ) argument
48 // if ( !aDOMNode )
52 nsresult status = aDOMNode->QueryInterface(NS_GET_IID(nsIDOMNode), (void**)&node);
64 Test02_Raw01( nsISupports* aDOMNode, nsString* aResult ) argument
67 // if ( !aDOMNode )
71 nsresult status = aDOMNode->QueryInterface(NS_GET_IID(nsIDOMNode), (void**)&node);
82 Test02_nsCOMPtr( nsISupports* aDOMNode, nsString* aResult ) argument
86 nsCOMPtr<nsIDOMNode> node = do_QueryInterface(aDOMNode, &status);
H A DSizeTest03.cpp29 Test03_raw( nsIDOMNode* aDOMNode, nsString* aResult ) argument
35 // if ( !aDOMNode || !aResult )
39 nsresult status = aDOMNode->GetParentNode(&parent);
53 Test03_raw_optimized( nsIDOMNode* aDOMNode, nsString* aResult ) argument
56 // if ( !aDOMNode || !aResult )
60 nsresult status = aDOMNode->GetParentNode(&parent);
73 Test03_nsCOMPtr( nsIDOMNode* aDOMNode, nsString* aResult ) argument
76 // if ( !aDOMNode || !aResult )
80 nsresult status = aDOMNode->GetParentNode( getter_AddRefs(parent) );
88 Test03_nsCOMPtr_optimized( nsIDOMNode* aDOMNode, nsStrin argument
[all...]

Completed in 262 milliseconds