Searched defs:isInt (Results 1 - 25 of 26) sorted by relevance

12

/external/deqp/framework/opengl/
H A DgluTextureUtil.cpp51 bool isInt = false; local
62 isInt = true;
66 isInt = false;
75 case TextureFormat::R: format = isInt ? GL_RED_INTEGER : GL_RED; break;
76 case TextureFormat::RG: format = isInt ? GL_RG_INTEGER : GL_RG; break;
77 case TextureFormat::RGB: format = isInt ? GL_RGB_INTEGER : GL_RGB; break;
78 case TextureFormat::RGBA: format = isInt ? GL_RGBA_INTEGER : GL_RGBA; break;
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
H A Dtabs_api.js21 function isInt(i) { function
89 if (!isInt(args.windowId))
91 if (!isInt(args.index))
223 if (!isInt(args.left))
225 if (!isInt(args.top))
227 if (!isInt(args.width))
229 if (!isInt(args.height))
262 if (!isInt(retval.left))
264 if (!isInt(retval.top))
266 if (!isInt(retva
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSCalculationValue.h119 bool isInt() const { return m_expression->isInteger(); } function in class:blink::CSSCalcValue
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h80 bool isInt() const { return EntryKind == E_Integer; } function in struct:llvm::DebugLocEntry::Value
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSParserValues.h142 bool isInt; member in struct:blink::CSSParserValue
262 isInt = false;
275 isInt = false;
283 isInt = false;
/external/clang/test/PCH/
H A Dcxx-templates.h88 bool isInt(int x);
90 template<> bool isInt<8>(int x) { function
/external/clang/include/clang/AST/
H A DAPValue.h182 bool isInt() const { return Kind == Int; } function in class:clang::APValue
201 assert(isInt() && "Invalid accessor");
348 assert(isInt() && "Invalid accessor");
/external/llvm/include/llvm/Support/
H A DMathExtras.h270 /// isInt - Checks if an integer fits into the given bit width.
272 inline bool isInt(int64_t x) { function in namespace:llvm
277 inline bool isInt<8>(int64_t x) { function in namespace:llvm
281 inline bool isInt<16>(int64_t x) { function in namespace:llvm
285 inline bool isInt<32>(int64_t x) { function in namespace:llvm
293 return isInt<N+S>(x) && (x % (1<<S) == 0);
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_value.cpp744 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
747 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
946 return isInt()
1400 Value::isInt() const function in class:Json::Value
1493 return isInt() || isUInt();
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.h330 bool isInt = true; local
333 isInt = false;
338 if (isInt) {
/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp527 bool isInt = glu::isDataTypeIntOrIVec(attrib.type.getBasicType()); local
549 else if (isInt)
H A Des3fFragmentOutputTests.cpp564 bool isInt = glu::isDataTypeIntOrIVec(output.type); local
614 else if (isInt)
715 bool isInt = glu::isDataTypeIntOrIVec(output.type); local
719 isInt ? GL_INT :
772 const bool isInt = glu::isDataTypeIntOrIVec(output.type); local
789 if (isInt || isUint)
1000 bool isInt = glu::isDataTypeIntOrIVec(outType);
1006 else if (isInt)
H A Des3fShaderOperatorTests.cpp754 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); local
770 else if (isInt || isUint)
780 else if (isInt || isUint)
/external/jsoncpp/chromium-overrides/src/lib_json/
H A Djson_value.cpp738 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
741 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
940 return isInt()
1394 Value::isInt() const function in class:Json::Value
1487 return isInt() || isUInt();
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp734 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
737 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
936 return isInt()
1390 Value::isInt() const function in class:Json::Value
1483 return isInt() || isUInt();
/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.h330 bool isInt = true; local
333 isInt = false;
338 if (isInt) {
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp53 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
63 bool isOne() const { return isInt() && IntVal == 1; }
64 bool isTwo() const { return isInt() && IntVal == 2; }
65 bool isMinusOne() const { return isInt() && IntVal == -1; }
66 bool isMinusTwo() const { return isInt() && IntVal == -2; }
85 bool isInt() const { return !IsFp; } function in class:__anon26243::FAddendCoef
212 if (isInt()) {
223 if (!isInt())
247 if (That.isInt())
255 if (isInt()
[all...]
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp177 bool isInt() const { return !Float && ElementBitwidth == 32; } function in class:__anon19562::Type
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp476 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); local
491 else if (isInt)
501 else if (isInt)
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1466 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
1470 if( (!isInt && (a2[0].f<a1[0].f || a2[1].f>a1[1].f))
1471 || ( isInt && (a2[0].i<a1[0].i || a2[1].i>a1[1].i))
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3739 bool isInt = LHS.getValueType().isInteger(); local
3741 isInt);
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeBackgroundScript.js81 goog.math.standardDeviation=function(a){return Math.sqrt(goog.math.sampleVariance.apply(null,arguments))};goog.math.isInt=function(a){return isFinite(a)&&0==a%1};goog.math.isFiniteNumber=function(a){return isFinite(a)&&!isNaN(a)};goog.math.log10Floor=function(a){if(0<a){var b=Math.round(Math.log(a)*Math.LOG10E);return b-(parseFloat("1e"+b)>a)}return 0==a?-Infinity:NaN};goog.math.safeFloor=function(a,b){goog.asserts.assert(!goog.isDef(b)||0<b);return Math.floor(a+(b||2E-15))};
H A DchromeVoxChromeOptionsScript.js142 goog.math.standardDeviation=function(a){return Math.sqrt(goog.math.sampleVariance.apply(null,arguments))};goog.math.isInt=function(a){return isFinite(a)&&0==a%1};goog.math.isFiniteNumber=function(a){return isFinite(a)&&!isNaN(a)};goog.math.log10Floor=function(a){if(0<a){var b=Math.round(Math.log(a)*Math.LOG10E);return b-(parseFloat("1e"+b)>a)}return 0==a?-Infinity:NaN};goog.math.safeFloor=function(a,b){goog.asserts.assert(!goog.isDef(b)||0<b);return Math.floor(a+(b||2E-15))};
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c125734 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c146433 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]

Completed in 1001 milliseconds

12