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

1 2

  /external/webkit/WebCore/platform/win/
SoftLinking.h 46 #define SOFT_LINK(library, functionName, resultType, callingConvention, parameterDeclarations, parameterNames) \
47 static resultType callingConvention init##functionName parameterDeclarations; \
48 static resultType (callingConvention*softLink##functionName) parameterDeclarations = init##functionName; \
50 static resultType callingConvention init##functionName parameterDeclarations \
52 softLink##functionName = reinterpret_cast<resultType (callingConvention*) parameterDeclarations>(GetProcAddress(library##Library(), #functionName)); \
57 inline resultType functionName parameterDeclarations \
62 #define SOFT_LINK_OPTIONAL(library, functionName, resultType, callingConvention, parameterDeclarations) \
63 typedef resultType (callingConvention *functionName##PtrType) parameterDeclarations; \
  /external/webkit/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; }
114 bool isContextPositionSensitive() const { return m_expr->isContextPositionSensitive() || m_expr->resultType() == Value::NumberValue; }
XPathResult.cpp 116 unsigned short XPathResult::resultType() const
123 if (resultType() != NUMBER_TYPE) {
132 if (resultType() != STRING_TYPE) {
141 if (resultType() != BOOLEAN_TYPE) {
150 if (resultType() != ANY_UNORDERED_NODE_TYPE && resultType() != FIRST_ORDERED_NODE_TYPE) {
156 if (resultType() == FIRST_ORDERED_NODE_TYPE)
164 if (resultType() != UNORDERED_NODE_ITERATOR_TYPE && resultType() != ORDERED_NODE_ITERATOR_TYPE)
173 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.h 63 unsigned short resultType() const;
XPathResult.idl 34 readonly attribute unsigned short resultType;
XSLTProcessorLibxslt.cpp 262 const xmlChar* resultType = 0;
263 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
264 if (!resultType && resultDoc->type == XML_HTML_DOCUMENT_NODE)
265 resultType = (const xmlChar*)"html";
267 if (xmlStrEqual(resultType, (const xmlChar*)"html"))
269 if (xmlStrEqual(resultType, (const xmlChar*)"text"))
XPathExpressionNode.h 80 virtual Value::Type resultType() const = 0;
  /external/webkit/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 383 Type resultType = result.getType();
386 if (resultType == localType) {
390 if (! Merger.isPossiblyAssignableFrom(localType, resultType)) {
392 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/chromium/third_party/icu/source/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); \
  /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); \
  /external/webkit/WebCore/platform/
Length.h 174 LengthType resultType = type();
176 resultType = from.type();
178 if (resultType == Percent) {
186 return Length(int(fromValue + (toValue - fromValue) * progress), resultType);
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
bssTypes.h 97 resultFrameType_e resultType; /**< The type of frame in pBuffer */
  /system/wlan/ti/sta_dk_4_0_4_32/common/inc/
bssTypes.h 83 resultFrameType_e resultType; /**< The type of frame in pBuffer */
  /system/wlan/ti/wilink_6_1/stad/Export_Inc/
bssTypes.h 97 resultFrameType_e resultType; /**< The type of frame in pBuffer */
  /cts/tools/host/src/com/android/cts/
TestCase.java 104 * @param resultType The result type to filter the tests.
107 public ArrayList<String> getExcludedList(final String resultType) {
111 if (resultType == null) {
117 //the result type given by resultType will be excluded
118 if (!test.getResult().getResultString().equals(resultType)) {
CtsTestResult.java 198 * Check if the given resultType is a valid result type defined..
200 * @param resultType The result type to be checked.
203 static public boolean isValidResultType(final String resultType) {
204 return sResultToCodeMap.containsKey(resultType);
ConsoleUi.java     [all...]
TestSuite.java 166 * @param resultType The result type to filter the tests.
169 public ArrayList<String> getExcludedList(final String resultType) {
174 ArrayList<String> list = suite.getExcludedList(resultType);
182 ArrayList<String> list = tc.getExcludedList(resultType);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 699 NSTextCheckingType resultType = [incomingResult resultType];
702 if (NSTextCheckingTypeSpelling == resultType && 0 != (checkingTypes & NSTextCheckingTypeSpelling)) {
708 } else if (NSTextCheckingTypeGrammar == resultType && 0 != (checkingTypes & NSTextCheckingTypeGrammar)) {
731 } else if (NSTextCheckingTypeLink == resultType && 0 != (checkingTypes & NSTextCheckingTypeLink)) {
738 } else if (NSTextCheckingTypeQuote == resultType && 0 != (checkingTypes & NSTextCheckingTypeQuote)) {
745 } else if (NSTextCheckingTypeDash == resultType && 0 != (checkingTypes & NSTextCheckingTypeDash)) {
752 } else if (NSTextCheckingTypeReplacement == resultType && 0 != (checkingTypes & NSTextCheckingTypeReplacement)) {
759 } else if (NSTextCheckingTypeCorrection == resultType && 0 != (checkingTypes & NSTextCheckingTypeCorrection)) {

Completed in 584 milliseconds

1 2