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

/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.h109 bool isInt() const { return m_expression->isInteger(); } function in class:WebCore::CSSCalcValue
/external/clang/test/PCH/
H A Dcxx-templates.h88 bool isInt(int x);
90 template<> bool isInt<8>(int x) { function
/external/llvm/include/llvm/Support/
H A DMathExtras.h260 /// isInt - Checks if an integer fits into the given bit width.
262 inline bool isInt(int64_t x) { function in namespace:llvm
267 inline bool isInt<8>(int64_t x) { function in namespace:llvm
271 inline bool isInt<16>(int64_t x) { function in namespace:llvm
275 inline bool isInt<32>(int64_t x) { function in namespace:llvm
283 return isInt<N+S>(x) && (x % (1<<S) == 0);
/external/clang/include/clang/AST/
H A DAPValue.h183 bool isInt() const { return Kind == Int; } function in class:clang::APValue
202 assert(isInt() && "Invalid accessor");
349 assert(isInt() && "Invalid accessor");
/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/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h132 bool isInt() const { return EntryKind == E_Integer; } function in class:llvm::DotDebugLocEntry
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp51 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
61 bool isOne() const { return isInt() && IntVal == 1; }
62 bool isTwo() const { return isInt() && IntVal == 2; }
63 bool isMinusOne() const { return isInt() && IntVal == -1; }
64 bool isMinusTwo() const { return isInt() && IntVal == -2; }
83 bool isInt() const { return !IsFp; } function in class:__anon22534::FAddendCoef
210 if (isInt()) {
221 if (!isInt())
245 if (That.isInt())
253 if (isInt()
[all...]
/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.cpp3453 bool isInt = LHS.getValueType().isInteger(); local
3455 isInt);
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c125925 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c131580 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c131628 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]

Completed in 943 milliseconds