Home
last modified time | relevance | path

Searched refs:resultType (Results 1 – 25 of 54) sorted by relevance

123

/external/webkit/Source/WebCore/xml/
DXPathResult.cpp118 unsigned short XPathResult::resultType() const in resultType() function in WebCore::XPathResult
125 if (resultType() != NUMBER_TYPE) { in numberValue()
134 if (resultType() != STRING_TYPE) { in stringValue()
143 if (resultType() != BOOLEAN_TYPE) { in booleanValue()
152 if (resultType() != ANY_UNORDERED_NODE_TYPE && resultType() != FIRST_ORDERED_NODE_TYPE) { in singleNodeValue()
158 if (resultType() == FIRST_ORDERED_NODE_TYPE) in singleNodeValue()
166 if (resultType() != UNORDERED_NODE_ITERATOR_TYPE && resultType() != ORDERED_NODE_ITERATOR_TYPE) in invalidIteratorState()
175 … if (resultType() != UNORDERED_NODE_SNAPSHOT_TYPE && resultType() != ORDERED_NODE_SNAPSHOT_TYPE) { in snapshotLength()
185 … if (resultType() != UNORDERED_NODE_ITERATOR_TYPE && resultType() != ORDERED_NODE_ITERATOR_TYPE) { in iterateNext()
207 … if (resultType() != UNORDERED_NODE_SNAPSHOT_TYPE && resultType() != ORDERED_NODE_SNAPSHOT_TYPE) { in snapshotItem()
DXPathFunctions.cpp78 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType() function in WebCore::XPath::FunLast
85 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType() function in WebCore::XPath::FunPosition
92 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType() function in WebCore::XPath::FunCount
97 virtual Value::Type resultType() const { return Value::NodeSetValue; } in resultType() function in WebCore::XPath::FunId
102 virtual Value::Type resultType() const { return Value::StringValue; } in resultType() function in WebCore::XPath::FunLocalName
109 virtual Value::Type resultType() const { return Value::StringValue; } in resultType() function in WebCore::XPath::FunNamespaceURI
116 virtual Value::Type resultType() const { return Value::StringValue; } in resultType() function in WebCore::XPath::FunName
123 virtual Value::Type resultType() const { return Value::StringValue; } in resultType() function in WebCore::XPath::FunString
130 virtual Value::Type resultType() const { return Value::StringValue; } in resultType() function in WebCore::XPath::FunConcat
135 virtual Value::Type resultType() const { return Value::BooleanValue; } in resultType() function in WebCore::XPath::FunStartsWith
[all …]
DXPathPredicate.h44 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType() function
54 virtual Value::Type resultType() const { return Value::StringValue; } in resultType() function
62 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType() function
73 virtual Value::Type resultType() const { return Value::NumberValue; } in resultType() function
84 virtual Value::Type resultType() const { return Value::BooleanValue; } in resultType() function
95 virtual Value::Type resultType() const { return Value::BooleanValue; } in resultType() function
105 virtual Value::Type resultType() const { return Value::NodeSetValue; } in resultType() function
115 …itive() const { return m_expr->isContextPositionSensitive() || m_expr->resultType() == Value::Numb… in isContextPositionSensitive()
DXPathPath.h50 virtual Value::Type resultType() const { return Value::NodeSetValue; } in resultType() function
69 virtual Value::Type resultType() const { return Value::NodeSetValue; } in resultType() function
83 virtual Value::Type resultType() const { return Value::NodeSetValue; } in resultType() function
DXSLTProcessorLibxslt.cpp287 const xmlChar* resultType = 0; in resultMIMEType() local
288 XSLT_GET_IMPORT_PTR(resultType, sheet, method); in resultMIMEType()
289 if (!resultType && resultDoc->type == XML_HTML_DOCUMENT_NODE) in resultMIMEType()
290 resultType = (const xmlChar*)"html"; in resultMIMEType()
292 if (xmlStrEqual(resultType, (const xmlChar*)"html")) in resultMIMEType()
294 if (xmlStrEqual(resultType, (const xmlChar*)"text")) in resultMIMEType()
DXPathVariableReference.h43 … virtual Value::Type resultType() const { ASSERT_NOT_REACHED(); return Value::NumberValue; } in resultType() function
/external/webkit/Source/WebCore/platform/win/
DSoftLinking.h51 #define SOFT_LINK(library, functionName, resultType, callingConvention, parameterDeclarations, para… argument
52 static resultType callingConvention init##functionName parameterDeclarations; \
53 …static resultType (callingConvention*softLink##functionName) parameterDeclarations = init##functio…
55 static resultType callingConvention init##functionName parameterDeclarations \
57 …softLink##functionName = reinterpret_cast<resultType (callingConvention*) parameterDeclarations>(S…
62 inline resultType functionName parameterDeclarations \
67 #define SOFT_LINK_OPTIONAL(library, functionName, resultType, callingConvention, parameterDeclarati… argument
68 typedef resultType (callingConvention *functionName##PtrType) parameterDeclarations; \
/external/webkit/Source/WebCore/platform/mac/
DSoftLinking.h48 #define SOFT_LINK(framework, functionName, resultType, parameterDeclarations, parameterNames) \ argument
49 static resultType init##functionName parameterDeclarations; \
50 static resultType (*softLink##functionName) parameterDeclarations = init##functionName; \
52 static resultType init##functionName parameterDeclarations \
54 …softLink##functionName = (resultType (*) parameterDeclarations) dlsym(framework##Library(), #funct…
59 inline resultType functionName parameterDeclarations \
/external/icu4c/common/
Dutrie.h183 #define _UTRIE_GET_FROM_PAIR(trie, data, c, c2, result, resultType) { \ argument
194 (result)=(resultType)((trie)->initialValue); \
207 #define _UTRIE_GET(trie, data, c32, result, resultType) \ argument
214 _UTRIE_GET_FROM_PAIR(trie, data, __lead16, c32, result, resultType); \
217 (result)=(resultType)((trie)->initialValue); \
221 #define _UTRIE_NEXT(trie, data, src, limit, c, c2, result, resultType) { \ argument
228 _UTRIE_GET_FROM_PAIR((trie), data, (c), (c2), (result), resultType); \
237 #define _UTRIE_PREVIOUS(trie, data, start, src, c, c2, result, resultType) { \ argument
247 _UTRIE_GET_FROM_PAIR((trie), data, (c), (c2), (result), resultType); \
/external/webkit/Source/WebCore/platform/
DLength.h186 LengthType resultType = type(); in blend() local
188 resultType = from.type(); in blend()
190 if (resultType == Percent) { in blend()
198 return Length(fromValue + (toValue - fromValue) * progress, resultType); in blend()
/external/webkit/Source/WebKit2/UIProcess/mac/
DTextCheckerMac.mm242 NSTextCheckingType resultType = [incomingResult resultType];
245 … if (resultType == NSTextCheckingTypeSpelling && (checkingTypes & NSTextCheckingTypeSpelling)) {
251 …} else if (resultType == NSTextCheckingTypeGrammar && (checkingTypes & NSTextCheckingTypeGrammar))…
274 … } else if (resultType == NSTextCheckingTypeLink && (checkingTypes & NSTextCheckingTypeLink)) {
281 … } else if (resultType == NSTextCheckingTypeQuote && (checkingTypes & NSTextCheckingTypeQuote)) {
288 … } else if (resultType == NSTextCheckingTypeDash && (checkingTypes & NSTextCheckingTypeDash)) {
295 …} else if (resultType == NSTextCheckingTypeReplacement && (checkingTypes & NSTextCheckingTypeRepla…
302 …} else if (resultType == NSTextCheckingTypeCorrection && (checkingTypes & NSTextCheckingTypeCorrec…
/external/clang/lib/CodeGen/
DCGCall.cpp93 CanQualType resultType = FTP->getResultType().getUnqualifiedType(); in arrangeLLVMFunctionInfo() local
94 return CGT.arrangeLLVMFunctionInfo(resultType, prefix, extInfo, required); in arrangeLLVMFunctionInfo()
196 CanQualType resultType = Context.VoidTy; in arrangeCXXConstructorDeclaration() local
198 TheCXXABI.BuildConstructorSignature(D, ctorKind, resultType, argTypes); in arrangeCXXConstructorDeclaration()
210 return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, required); in arrangeCXXConstructorDeclaration()
221 CanQualType resultType = Context.VoidTy; in arrangeCXXDestructor() local
223 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes); in arrangeCXXDestructor()
231 return arrangeLLVMFunctionInfo(resultType, argTypes, extInfo, in arrangeCXXDestructor()
337 CodeGenTypes::arrangeFreeFunctionCall(QualType resultType, in arrangeFreeFunctionCall() argument
346 return arrangeLLVMFunctionInfo(GetReturnType(resultType), argTypes, info, in arrangeFreeFunctionCall()
[all …]
DCGCall.h200 CanQualType resultType,
271 CanQualType resultType, in Profile() argument
279 resultType.Profile(ID); in Profile()
DCGObjCRuntime.cpp343 QualType resultType, in getMessageSendInfo() argument
361 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs, einfo, in getMessageSendInfo()
369 CGM.getTypes().arrangeFreeFunctionCall(resultType, callArgs, in getMessageSendInfo()
/external/webkit/LayoutTests/dom/html/level2/events/
Dselfhtml.js536 function setResult(resultType, message) { argument
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 …Test:</td><td>" + testName + "</td><td></tr><tr><td>Status:</td><td>" + resultType + "</td></tr>");
559 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/html/level1/core/
Dselfhtml.js536 function setResult(resultType, message) { argument
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 …Test:</td><td>" + testName + "</td><td></tr><tr><td>Status:</td><td>" + resultType + "</td></tr>");
559 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/html/level2/html/
Dselfhtml.js536 function setResult(resultType, message) { argument
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 …Test:</td><td>" + testName + "</td><td></tr><tr><td>Status:</td><td>" + resultType + "</td></tr>");
559 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/html/level2/core/
Dselfhtml.js536 function setResult(resultType, message) { argument
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 …Test:</td><td>" + testName + "</td><td></tr><tr><td>Status:</td><td>" + resultType + "</td></tr>");
559 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
Dselfxhtml.js542 function setResult(resultType, message) { argument
544 document.title = testName + ":" + resultType;
561 if (resultType == null) {
564 statusDiv2.appendChild(document.createTextNode(resultType));
565 if (resultType == "skip") {
582 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/xhtml/level2/events/
Dselfxhtml.js542 function setResult(resultType, message) { argument
544 document.title = testName + ":" + resultType;
561 if (resultType == null) {
564 statusDiv2.appendChild(document.createTextNode(resultType));
565 if (resultType == "skip") {
582 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/xhtml/level2/html/
Dselfxhtml.js542 function setResult(resultType, message) { argument
544 document.title = testName + ":" + resultType;
561 if (resultType == null) {
564 statusDiv2.appendChild(document.createTextNode(resultType));
565 if (resultType == "skip") {
589 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
Dselfxhtml.js542 function setResult(resultType, message) { argument
544 document.title = testName + ":" + resultType;
561 if (resultType == null) {
564 statusDiv2.appendChild(document.createTextNode(resultType));
565 if (resultType == "skip") {
582 parent.setResult(testName, resultType, message);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dselfxhtml.js542 function setResult(resultType, message) { argument
544 document.title = testName + ":" + resultType;
561 if (resultType == null) {
564 statusDiv2.appendChild(document.createTextNode(resultType));
565 if (resultType == "skip") {
582 parent.setResult(testName, resultType, message);
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
DProxyBuilder.java414 TypeId<?> resultType = TypeId.get(returnType); in generateCodeForAllMethods() local
415 MethodId<T, ?> superMethod = superclassType.getMethod(resultType, name, argTypes); in generateCodeForAllMethods()
416 MethodId<?, ?> methodId = generatedType.getMethod(resultType, name, argTypes); in generateCodeForAllMethods()
425 Local<?> resultHolder = code.newLocal(resultType); in generateCodeForAllMethods()
435 Local<?> superResult2 = code.newLocal(resultType); in generateCodeForAllMethods()
488 resultType, superMethodName(method), argTypes); in generateCodeForAllMethods()
499 Local<?> superResult = superCode.newLocal(resultType); in generateCodeForAllMethods()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineC.cpp330 QualType resultType = CastE->getType(); in VisitCast() local
332 resultType = getContext().getPointerType(resultType); in VisitCast()
357 svalBuilder.conjureSymbolVal(0, CastE, LCtx, resultType, in VisitCast()
383 QualType resultType = CastE->getType(); in VisitCast() local
385 resultType = getContext().getPointerType(resultType); in VisitCast()
387 resultType, in VisitCast()

123