OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). | 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). |
4 * Copyright (C) 2009 Joseph Pecoraro | 4 * Copyright (C) 2009 Joseph Pecoraro |
5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
6 * | 6 * |
7 * Redistribution and use in source and binary forms, with or without | 7 * Redistribution and use in source and binary forms, with or without |
8 * modification, are permitted provided that the following conditions | 8 * modification, are permitted provided that the following conditions |
9 * are met: | 9 * are met: |
10 * | 10 * |
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 * @param {string} query | 700 * @param {string} query |
701 * @param {boolean} caseSensitive | 701 * @param {boolean} caseSensitive |
702 * @param {boolean} isRegex | 702 * @param {boolean} isRegex |
703 */ | 703 */ |
704 WebInspector.SearchableView.SearchConfig = function(query, caseSensitive, isRege
x) | 704 WebInspector.SearchableView.SearchConfig = function(query, caseSensitive, isRege
x) |
705 { | 705 { |
706 this.query = query; | 706 this.query = query; |
707 this.caseSensitive = caseSensitive; | 707 this.caseSensitive = caseSensitive; |
708 this.isRegex = isRegex; | 708 this.isRegex = isRegex; |
709 } | 709 } |
OLD | NEW |