HomeSort by relevance Sort by last modified time
    Searched refs:resultType (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/webkit/Source/WebCore/platform/win/
SoftLinking.h 51 #define SOFT_LINK(library, functionName, resultType, callingConvention, parameterDeclarations, parameterNames) \
52 static resultType callingConvention init##functionName parameterDeclarations; \
53 static resultType (callingConvention*softLink##functionName) parameterDeclarations = init##functionName; \
55 static resultType callingConvention init##functionName parameterDeclarations \
57 softLink##functionName = reinterpret_cast<resultType (callingConvention*) parameterDeclarations>(SOFT_LINK_GETPROCADDRESS(library##Library(), #functionName)); \
62 inline resultType functionName parameterDeclarations \
67 #define SOFT_LINK_OPTIONAL(library, functionName, resultType, callingConvention, parameterDeclarations) \
68 typedef resultType (callingConvention *functionName##PtrType) parameterDeclarations; \
  /external/webkit/Source/WebCore/xml/
XPathPredicate.h 44 virtual Value::Type resultType() const { return Value::NumberValue; }
54 virtual Value::Type resultType() const { return Value::StringValue; }
62 virtual Value::Type resultType() const { return Value::NumberValue; }
73 virtual Value::Type resultType() const { return Value::NumberValue; }
84 virtual Value::Type resultType() const { return Value::BooleanValue; }
95 virtual Value::Type resultType() const { return Value::BooleanValue; }
105 virtual Value::Type resultType() const { return Value::NodeSetValue; }
115 bool isContextPositionSensitive() const { return m_expr->isContextPositionSensitive() || m_expr->resultType() == Value::NumberValue; }
XPathResult.cpp 118 unsigned short XPathResult::resultType() const
125 if (resultType() != NUMBER_TYPE) {
134 if (resultType() != STRING_TYPE) {
143 if (resultType() != BOOLEAN_TYPE) {
152 if (resultType() != ANY_UNORDERED_NODE_TYPE && resultType() != FIRST_ORDERED_NODE_TYPE) {
158 if (resultType() == FIRST_ORDERED_NODE_TYPE)
166 if (resultType() != UNORDERED_NODE_ITERATOR_TYPE && resultType() != ORDERED_NODE_ITERATOR_TYPE)
175 if (resultType() != UNORDERED_NODE_SNAPSHOT_TYPE && resultType() != ORDERED_NODE_SNAPSHOT_TYPE)
    [all...]
XPathPath.h 50 virtual Value::Type resultType() const { return Value::NodeSetValue; }
69 virtual Value::Type resultType() const { return Value::NodeSetValue; }
83 virtual Value::Type resultType() const { return Value::NodeSetValue; }
XPathVariableReference.h 43 virtual Value::Type resultType() const { ASSERT_NOT_REACHED(); return Value::NumberValue; }
XPathFunctions.cpp 78 virtual Value::Type resultType() const { return Value::NumberValue; }
85 virtual Value::Type resultType() const { return Value::NumberValue; }
92 virtual Value::Type resultType() const { return Value::NumberValue; }
97 virtual Value::Type resultType() const { return Value::NodeSetValue; }
102 virtual Value::Type resultType() const { return Value::StringValue; }
109 virtual Value::Type resultType() const { return Value::StringValue; }
116 virtual Value::Type resultType() const { return Value::StringValue; }
123 virtual Value::Type resultType() const { return Value::StringValue; }
130 virtual Value::Type resultType() const { return Value::StringValue; }
135 virtual Value::Type resultType() const { return Value::BooleanValue;
    [all...]
XPathResult.idl 34 readonly attribute unsigned short resultType;
XPathExpressionNode.h 83 virtual Value::Type resultType() const = 0;
XPathResult.h 63 unsigned short resultType() const;
XSLTProcessorLibxslt.cpp 287 const xmlChar* resultType = 0;
288 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
289 if (!resultType && resultDoc->type == XML_HTML_DOCUMENT_NODE)
290 resultType = (const xmlChar*)"html";
292 if (xmlStrEqual(resultType, (const xmlChar*)"html"))
294 if (xmlStrEqual(resultType, (const xmlChar*)"text"))
  /external/webkit/Source/WebCore/platform/mac/
SoftLinking.h 48 #define SOFT_LINK(framework, functionName, resultType, parameterDeclarations, parameterNames) \
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(), #functionName); \
59 inline resultType functionName parameterDeclarations \
  /dalvik/dx/src/com/android/dx/cf/code/
Merger.java 59 TypeBearer resultType = mergeType(tb1, tb2);
60 if (resultType != tb1) {
70 if (resultType == null) {
73 result.set(i, resultType);
111 TypeBearer resultType = mergeType(tb1, tb2);
112 if (resultType != tb1) {
123 if (resultType == null) {
127 result.change(i, resultType);
BaseMachine.java 405 Type resultType = result.getType();
408 if (resultType == localType) {
421 if (! Merger.isPossiblyAssignableFrom(localType, resultType)) {
423 throwLocalMismatch(resultType, localType);
  /development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
VoiceRecognitionService.java 52 String resultType = prefs.getString(
55 int resultTypeInt = Integer.parseInt(resultType);
  /external/icu4c/common/
utrie.h 183 #define _UTRIE_GET_FROM_PAIR(trie, data, c, c2, result, resultType) { \
194 (result)=(resultType)((trie)->initialValue); \
207 #define _UTRIE_GET(trie, data, c32, result, resultType) \
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) { \
228 _UTRIE_GET_FROM_PAIR((trie), data, (c), (c2), (result), resultType); \
237 #define _UTRIE_PREVIOUS(trie, data, start, src, c, c2, result, resultType) { \
247 _UTRIE_GET_FROM_PAIR((trie), data, (c), (c2), (result), resultType); \
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 207 String resultType = null;
212 resultType = "message/rfc822";
220 resultType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(fileExtension);
221 if (TextUtils.isEmpty(resultType)) {
223 resultType = isTextPlain ? mimeType : "application/" + fileExtension;
227 resultType = mimeType;
232 if (TextUtils.isEmpty(resultType)) {
233 resultType = isTextPlain ? "text/plain" : "application/octet-stream";
235 return resultType.toLowerCase();
  /external/webkit/Source/WebCore/platform/
Length.h 186 LengthType resultType = type();
188 resultType = from.type();
190 if (resultType == Percent) {
198 return Length(fromValue + (toValue - fromValue) * progress, resultType);
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
bssTypes.h 97 resultFrameType_e resultType; /**< The type of frame in pBuffer */
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 242 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 & NSTextCheckingTypeReplacement)) {
302 } else if (resultType == NSTextCheckingTypeCorrection && (checkingTypes & NSTextCheckingTypeCorrection)) {
  /external/clang/lib/CodeGen/
CGCall.h 200 CanQualType resultType,
271 CanQualType resultType,
279 resultType.Profile(ID);
CGCall.cpp 92 CanQualType resultType = FTP->getResultType().getUnqualifiedType();
93 return CGT.arrangeFunctionType(resultType, argTypes,
167 CanQualType resultType = Context.VoidTy;
169 TheCXXABI.BuildConstructorSignature(D, ctorKind, resultType, argTypes);
179 return arrangeFunctionType(resultType, argTypes, FTP->getExtInfo(), required);
190 CanQualType resultType = Context.VoidTy;
192 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
197 return arrangeFunctionType(resultType, argTypes, FTP->getExtInfo(),
303 CodeGenTypes::arrangeFunctionCall(QualType resultType,
312 return arrangeFunctionType(GetReturnType(resultType), argTypes, info
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
selfhtml.js 536 function setResult(resultType, message) {
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 document.writeln("red'><tr><td>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/
selfhtml.js 536 function setResult(resultType, message) {
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 document.writeln("red'><tr><td>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/events/
selfhtml.js 536 function setResult(resultType, message) {
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 document.writeln("red'><tr><td>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/
selfhtml.js 536 function setResult(resultType, message) {
542 document.write(testName + ":" + resultType);
544 if (resultType == null) {
547 if (resultType == "skip") {
550 document.writeln("red'><tr><td>Test:</td><td>" + testName + "</td><td></tr><tr><td>Status:</td><td>" + resultType + "</td></tr>");
559 parent.setResult(testName, resultType, message);

Completed in 510 milliseconds

1 2 3