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

1 2 3 4

  /external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/
tabs_api.js 21 function isInt(i) {
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(retval.width)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParserValues.h 142 bool isInt;
262 isInt = false;
275 isInt = false;
283 isInt = false;
CSSGrammar.y 136 v.isInt = false;
146 v.isInt = false;
    [all...]
MediaQueryParser.cpp 243 value.isInt = (token.numericValueType() == IntegerValueType);
248 value.isInt = false;
  /external/llvm/lib/Target/Sparc/
SparcJITInfo.cpp 128 if (isInt<13>(Addr)) {
146 if (Addr < 0 && isInt<33>(Addr)) {
198 if (isInt<22>(diff)) {
241 if (isInt<22>(diff)) {
SparcISelDAGToDAG.cpp 89 if (isInt<13>(CN->getSExtValue())) {
127 if (isInt<13>(CN->getSExtValue()))
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 53 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; }
212 if (isInt()) {
223 if (!isInt())
247 if (That.isInt())
255 if (isInt() == That.isInt())
    [all...]
  /external/llvm/lib/Target/Mips/
MipsSERegisterInfo.cpp 161 if (OffsetBitSize < 16 && isInt<16>(Offset) &&
181 } else if (!isInt<16>(Offset)) {
Mips16InstrInfo.cpp 219 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);
Mips16InstrInfo.h 94 return ((offset & 7) == 0) && isInt<11>(offset);
MipsAnalyzeImmediate.cpp 96 if (!isInt<16>(ShiftedImm))
  /external/llvm/lib/Target/PowerPC/
PPCTargetTransformInfo.cpp 152 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/
SystemZInstPrinter.cpp 71 assert(isInt<8>(Value) && "Invalid s8imm argument");
85 assert(isInt<16>(Value) && "Invalid s16imm argument");
99 assert(isInt<32>(Value) && "Invalid s32imm argument");
  /external/llvm/include/llvm/Support/
MathExtras.h 270 /// isInt - Checks if an integer fits into the given bit width.
272 inline bool isInt(int64_t x) {
277 inline bool isInt<8>(int64_t x) {
281 inline bool isInt<16>(int64_t x) {
285 inline bool isInt<32>(int64_t x) {
293 return isInt<N+S>(x) && (x % (1<<S) == 0);
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryExp.cpp 128 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) {
CSSCalculationValue.h 119 bool isInt() const { return m_expression->isInteger(); }
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 80 bool isInt() const { return EntryKind == E_Integer; }
  /external/clang/test/PCH/
cxx-templates.h 88 bool isInt(int x);
90 template<> bool isInt<8>(int x) {
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 143 assert(isUInt<4>(Base) && isInt<20>(Disp));
165 assert(isUInt<4>(Base) && isInt<20>(Disp) && isUInt<4>(Index));
  /external/llvm/lib/Target/Hexagon/
HexagonCopyToCombine.cpp 135 (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/
gluTextureUtil.cpp 51 bool isInt = false;
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;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 340 if (isInt<8>(OffsetNode->getZExtValue() >> 2)) {
362 && isInt<16>(IMMOffset->getZExtValue())) {
369 && isInt<16>(IMMOffset->getZExtValue())) {
  /external/clang/include/clang/AST/
APValue.h 182 bool isInt() const { return Kind == Int; }
201 assert(isInt() && "Invalid accessor");
348 assert(isInt() && "Invalid accessor");
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 340 if (isInt<8>(OffsetNode->getZExtValue() >> 2)) {
362 && isInt<16>(IMMOffset->getZExtValue())) {
369 && isInt<16>(IMMOffset->getZExtValue())) {
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 135 if (isInt<10>(BranchSize)) {

Completed in 508 milliseconds

1 2 3 4