| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * Copyright (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights
reserved. |
| 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 5 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
| 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 6 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) | 7 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo
bile.com/) |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 5941 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5952 case STRING: | 5952 case STRING: |
| 5953 case IDENT: | 5953 case IDENT: |
| 5954 case NTH: | 5954 case NTH: |
| 5955 case HEX: | 5955 case HEX: |
| 5956 case IDSEL: | 5956 case IDSEL: |
| 5957 case DIMEN: | 5957 case DIMEN: |
| 5958 case UNICODERANGE: | 5958 case UNICODERANGE: |
| 5959 case FUNCTION: | 5959 case FUNCTION: |
| 5960 case ANYFUNCTION: | 5960 case ANYFUNCTION: |
| 5961 case NOTFUNCTION: | 5961 case NOTFUNCTION: |
| 5962 case CALCFUNCTION: |
| 5963 case MINFUNCTION: |
| 5964 case MAXFUNCTION: |
| 5962 yylval->string.characters = t; | 5965 yylval->string.characters = t; |
| 5963 yylval->string.length = length; | 5966 yylval->string.length = length; |
| 5964 break; | 5967 break; |
| 5965 | 5968 |
| 5966 case IMPORT_SYM: | 5969 case IMPORT_SYM: |
| 5967 case PAGE_SYM: | 5970 case PAGE_SYM: |
| 5968 case MEDIA_SYM: | 5971 case MEDIA_SYM: |
| 5969 case FONT_FACE_SYM: | 5972 case FONT_FACE_SYM: |
| 5970 case CHARSET_SYM: | 5973 case CHARSET_SYM: |
| 5971 case NAMESPACE_SYM: | 5974 case NAMESPACE_SYM: |
| (...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6829 // The macro is used in the tokenizer grammar with lines containing | 6832 // The macro is used in the tokenizer grammar with lines containing |
| 6830 // BEGIN(mediaqueries) and BEGIN(initial). yy_start acts as index to | 6833 // BEGIN(mediaqueries) and BEGIN(initial). yy_start acts as index to |
| 6831 // tokenizer transition table, and 'mediaqueries' and 'initial' are | 6834 // tokenizer transition table, and 'mediaqueries' and 'initial' are |
| 6832 // offset multipliers that specify which transitions are active | 6835 // offset multipliers that specify which transitions are active |
| 6833 // in the tokenizer during in each condition (tokenizer state). | 6836 // in the tokenizer during in each condition (tokenizer state). |
| 6834 #define BEGIN yy_start = 1 + 2 * | 6837 #define BEGIN yy_start = 1 + 2 * |
| 6835 | 6838 |
| 6836 #include "tokenizer.cpp" | 6839 #include "tokenizer.cpp" |
| 6837 | 6840 |
| 6838 } | 6841 } |
| OLD | NEW |