HomeSort by relevance Sort by last modified time
    Searched refs:BlockStart (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
MediaQueryBlockWatcher.cpp 19 if (token.blockType() == MediaQueryToken::BlockStart) {
MediaQueryToken.h 45 BlockStart,
SizesAttributeParser.cpp 81 } else if (token->blockType() == MediaQueryToken::BlockStart) {
MediaQueryTokenizer.cpp 79 MediaQueryToken MediaQueryTokenizer::blockStart(MediaQueryTokenType type)
82 return MediaQueryToken(type, MediaQueryToken::BlockStart);
85 MediaQueryToken MediaQueryTokenizer::blockStart(MediaQueryTokenType blockType, MediaQueryTokenType type, String name)
88 return MediaQueryToken(type, name, MediaQueryToken::BlockStart);
100 return blockStart(LeftParenthesisToken);
110 return blockStart(LeftBracketToken);
120 return blockStart(LeftBraceToken);
354 return blockStart(LeftParenthesisToken, FunctionToken, name);
MediaQueryParser.cpp 173 if (token.blockType() == MediaQueryToken::BlockStart
  /external/llvm/lib/CodeGen/
SplitKit.cpp 889 SlotIndex BlockStart, BlockEnd;
890 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(MBB);
893 if (Start != BlockStart) {
894 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
903 BlockStart = BlockEnd;
907 assert(Start <= BlockStart && "Expected live-in block");
908 while (BlockStart < End) {
911 if (BlockStart == ParentVNI->def) {
    [all...]
LiveIntervalAnalysis.cpp 376 SlotIndex BlockStart = getMBBStartIdx(MBB);
379 if (VNInfo *ExtVNI = NewLR.extendInBlock(BlockStart, Idx)) {
383 if (!VNI->isPHIDef() || VNI->def != BlockStart || !UsedPHIs.insert(VNI))
399 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
400 NewLR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
    [all...]

Completed in 262 milliseconds