Searched refs:isInt (Results 1 - 25 of 98) sorted by relevance

1234

/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/parser/
H A DCSSParserValues.h142 bool isInt; member in struct:blink::CSSParserValue
262 isInt = false;
275 isInt = false;
283 isInt = false;
H A DCSSGrammar.y136 v.isInt = false;
146 v.isInt = false;
1617 | STRING maybe_space { $$.id = CSSValueInvalid; $$.isInt = false; $$.string = $1; $$.unit = CSSPrimitiveValue::CSS_STRING; }
1620 | DIMEN maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_DIMENSION; }
1621 | unary_operator DIMEN maybe_space { $$.id = CSSValueInvalid; $$.string = $2; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_DIMENSION; }
1622 | URI maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_URI; }
1623 | UNICODERANGE maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_UNICODE_RANGE; }
1624 | HEX maybe_space { $$.id = CSSValueInvalid; $$.string = $1; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; }
1625 | '#' maybe_space { $$.id = CSSValueInvalid; $$.string = CSSParserString(); $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_PARSER_HEXCOLOR; } /* Handle error case: "color: #;" */
1630 $$.id = CSSValueInvalid; $$.isInt
[all...]
H A DMediaQueryParser.cpp243 value.isInt = (token.numericValueType() == IntegerValueType);
248 value.isInt = false;
/external/llvm/lib/Target/Sparc/
H A DSparcJITInfo.cpp128 if (isInt<13>(Addr)) {
146 if (Addr < 0 && isInt<33>(Addr)) {
198 if (isInt<22>(diff)) {
241 if (isInt<22>(diff)) {
H A DSparcISelDAGToDAG.cpp89 if (isInt<13>(CN->getSExtValue())) {
127 if (isInt<13>(CN->getSExtValue()))
/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/llvm/lib/Target/Mips/
H A DMipsSERegisterInfo.cpp161 if (OffsetBitSize < 16 && isInt<16>(Offset) &&
181 } else if (!isInt<16>(Offset)) {
H A DMips16InstrInfo.cpp219 if (isInt<16>(-Remainder))
245 if (isInt<16>(Remainder))
300 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
476 return isInt<16>(Amount);
479 return isInt<16>(Amount);
480 return isInt<15>(Amount);
H A DMips16InstrInfo.h94 return ((offset & 7) == 0) && isInt<11>(offset);
H A DMipsAnalyzeImmediate.cpp96 if (!isInt<16>(ShiftedImm))
/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp152 if (isInt<16>(Imm.getSExtValue()))
155 if (isInt<32>(Imm.getSExtValue())) {
184 if ((Idx == 1) && Imm.getBitWidth() <= 64 && isInt<16>(Imm.getSExtValue()))
248 if (isInt<16>(Imm.getSExtValue()))
/external/llvm/lib/Target/SystemZ/InstPrinter/
H A DSystemZInstPrinter.cpp71 assert(isInt<8>(Value) && "Invalid s8imm argument");
85 assert(isInt<16>(Value) && "Invalid s16imm argument");
99 assert(isInt<32>(Value) && "Invalid s32imm argument");
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryExp.cpp128 if (!value->isInt || value->fValue < 0)
155 if (!value->isInt || !(value->fValue == 1 || !value->fValue))
273 if (i != 1 && value->unit == CSSPrimitiveValue::CSS_NUMBER && value->fValue > 0 && value->isInt) {
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/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp135 if (isInt<10>(BranchSize)) {
/external/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZMCCodeEmitter.cpp143 assert(isUInt<4>(Base) && isInt<20>(Disp));
165 assert(isUInt<4>(Base) && isInt<20>(Disp) && isUInt<4>(Index));
/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/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp135 (ShouldCombineAggressively || isInt<8>(MI->getOperand(1).getImm()));
162 !isInt<8>(I->getOperand(1).getImm());
581 if (!isInt<8>(HiOperand.getImm())) {
582 assert(isInt<8>(LoOperand.getImm()));
590 assert(isInt<8>(HiOperand.getImm()));
/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/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp340 if (isInt<8>(OffsetNode->getZExtValue() >> 2)) {
362 && isInt<16>(IMMOffset->getZExtValue())) {
369 && isInt<16>(IMMOffset->getZExtValue())) {
/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/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelDAGToDAG.cpp340 if (isInt<8>(OffsetNode->getZExtValue() >> 2)) {
362 && isInt<16>(IMMOffset->getZExtValue())) {
369 && isInt<16>(IMMOffset->getZExtValue())) {
/external/clang/test/PCH/
H A Dcxx-templates.h88 bool isInt(int x);
90 template<> bool isInt<8>(int x) { function

Completed in 1842 milliseconds

1234