Searched refs:isInteger (Results 101 - 125 of 208) sorted by relevance

123456789

/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfSourceInformationDictionary_autogen.cpp70 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfAppearanceCharacteristicsDictionary_autogen.cpp14 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
134 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfOutlineItemDictionary_autogen.cpp86 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
180 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfType1FontDictionary_autogen.cpp62 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
74 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfType3FontDictionary_autogen.cpp118 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
130 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfCMapDictionary_autogen.cpp70 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfFieldDictionary_autogen.cpp86 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfAnnotationDictionary_autogen.cpp110 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
242 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfPageObjectDictionary_autogen.cpp166 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
286 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
/external/guava/guava-tests/test/com/google/common/base/
H A DPredicatesTest.java556 Predicate<Object> isInteger = Predicates.instanceOf(Integer.class);
558 assertTrue(isInteger.apply(1));
559 assertFalse(isInteger.apply(2.0f));
560 assertFalse(isInteger.apply(""));
561 assertFalse(isInteger.apply(null));
602 Predicate<Class<?>> isInteger = Predicates.assignableFrom(Integer.class);
604 assertTrue(isInteger.apply(Integer.class));
605 assertFalse(isInteger.apply(Float.class));
608 isInteger.apply(null);
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAppearanceCharacteristicsDictionary_autogen.cpp14 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
134 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfOutlineItemDictionary_autogen.cpp86 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
180 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfType1FontDictionary_autogen.cpp62 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
74 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfType3FontDictionary_autogen.cpp118 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
130 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfCMapDictionary_autogen.cpp70 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfFieldDictionary_autogen.cpp86 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfAnnotationDictionary_autogen.cpp110 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
242 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfPageObjectDictionary_autogen.cpp166 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
286 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfCIDFontDictionary_autogen.cpp74 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfStreamCommonDictionary_autogen.cpp14 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
H A DSkPdfStructureElementDictionary_autogen.cpp130 if ((ret != NULL && ret->isInteger()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->intValue();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h207 isInteger, enumerator in enum:llvm::DIEValue::Type
252 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
287 static bool classof(const DIEValue *I) { return I->getType() == isInteger; }
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp371 return !MVT(T2).isInteger() || MVT(T2).isVector();
374 return !MVT(T1).isInteger() || MVT(T1).isVector();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp265 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) { argument
267 if (isInteger)
303 bool isInteger) {
304 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
316 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
327 bool isInteger) {
328 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
336 if (isInteger) {
851 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
856 assert(N->getOperand(0).getValueType().isInteger()
302 getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2, bool isInteger) argument
326 getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2, bool isInteger) argument
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeTokenizer.cpp108 array->objAtAIndex(array->size() - 1)->isInteger() &&
109 array->objAtAIndex(array->size() - 2)->isInteger()) {
721 if (value->isInteger() && generation.isInteger() &&

Completed in 505 milliseconds

123456789