From 9931441b9a0dba5e852b235f2052f5c46e4d1f6c Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 13:32:34 -0800 Subject: [PATCH 01/23] Clear list when showing loading or error message --- spec/app/select-list-spec.coffee | 9 +++++++++ src/app/select-list.coffee | 8 ++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/spec/app/select-list-spec.coffee b/spec/app/select-list-spec.coffee index 5bcec040f..d219c6aaf 100644 --- a/spec/app/select-list-spec.coffee +++ b/spec/app/select-list-spec.coffee @@ -137,3 +137,12 @@ describe "SelectList", -> expect(selectList.cancelled).toHaveBeenCalled() expect(selectList.detach).toHaveBeenCalled() + describe "when an error occurs on previously populated list", -> + it "clears the list", -> + selectList.setError("yolo") + expect(selectList.list).toBeEmpty() + + describe "when loading is triggered on previously populated list", -> + it "clears the list", -> + selectList.setLoading("loading yolo") + expect(selectList.list).toBeEmpty() diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index b8e92cca2..9906a8f6a 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -43,18 +43,18 @@ class SelectList extends View setError: (message) -> if not message or message.length == "" - @error.text("") - @error.hide() + @error.text("").hide() @removeClass("error") else - @error.text(message) - @error.show() + @list.empty() + @error.text(message).show() @addClass("error") setLoading: (message) -> if not message or message.length == "" @loading.text("").hide() else + @list.empty() @setError() @loading.text(message).show() From af49ab9c6c71ecccfc7f84dcd8386d0f4b666aed Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 13:41:15 -0800 Subject: [PATCH 02/23] Add callback param to getAllPathsAsync signature --- native/v8_extensions/native.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/v8_extensions/native.js b/native/v8_extensions/native.js index ea54e8841..6e17b135e 100644 --- a/native/v8_extensions/native.js +++ b/native/v8_extensions/native.js @@ -16,7 +16,7 @@ var $native = {}; native function traverseTree(path, onFile, onDirectory); $native.traverseTree = traverseTree; - native function getAllPathsAsync(path); + native function getAllPathsAsync(path, callback); $native.getAllPathsAsync = getAllPathsAsync; native function isFile(path); From 77e4e41c7b6b3d85f0364d17ab40732729495665 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 13:58:15 -0800 Subject: [PATCH 03/23] Check all path segments for ignored names --- spec/app/project-spec.coffee | 38 ++++++++++++++++++++++++++++++++++++ src/app/project.coffee | 10 ++-------- 2 files changed, 40 insertions(+), 8 deletions(-) diff --git a/spec/app/project-spec.coffee b/spec/app/project-spec.coffee index 579fc282a..0819649aa 100644 --- a/spec/app/project-spec.coffee +++ b/spec/app/project-spec.coffee @@ -129,6 +129,44 @@ describe "Project", -> expect(paths).not.toContain('a') expect(paths).toContain('b') + describe "ignored file name", -> + ignoredFile = null + + beforeEach -> + ignoredFile = fs.join(require.resolve('fixtures/dir'), 'ignored.txt') + fs.write(ignoredFile, "") + + afterEach -> + fs.remove(ignoredFile) + + it "ignores ignored.txt file", -> + paths = null + project.ignoredNames.push 'ignored.txt' + waitsForPromise -> + project.getFilePaths().done (foundPaths) -> paths = foundPaths + + runs -> + expect(paths).not.toContain('ignored.txt') + + describe "ignored folder name", -> + ignoredFile = null + + beforeEach -> + ignoredFile = fs.join(require.resolve('fixtures/dir'), 'ignored/ignored.txt') + fs.write(ignoredFile, "") + + afterEach -> + fs.remove(ignoredFile) + + it "ignores ignored folder", -> + paths = null + project.ignoredNames.push 'ignored' + waitsForPromise -> + project.getFilePaths().done (foundPaths) -> paths = foundPaths + + runs -> + expect(paths).not.toContain('ignored/ignored.txt') + it "ignores files in gitignore for projects in a git tree", -> project.setHideIgnoredFiles(true) project.setPath(require.resolve('fixtures/git/working-dir')) diff --git a/src/app/project.coffee b/src/app/project.coffee index 8cc207a8c..634b0ecf3 100644 --- a/src/app/project.coffee +++ b/src/app/project.coffee @@ -59,14 +59,8 @@ class Project deferred.promise() isPathIgnored: (path) -> - lastSlash = path.lastIndexOf('/') - if lastSlash isnt -1 - name = path.substring(lastSlash + 1) - else - name = path - - for ignored in @ignoredNames - return true if name is ignored + for segment in path.split("/") + return true if _.contains(@ignoredNames, segment) @ignoreRepositoryPath(path) From 0b239c8f37975fc4d02971453f27fd38325e01ee Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 14:52:31 -0800 Subject: [PATCH 04/23] Debounce filter input on select lists --- spec/app/select-list-spec.coffee | 8 ++++++++ src/app/select-list.coffee | 4 +++- src/extensions/outline-view/spec/outline-view-spec.coffee | 4 ++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/spec/app/select-list-spec.coffee b/spec/app/select-list-spec.coffee index d219c6aaf..f017c5051 100644 --- a/spec/app/select-list-spec.coffee +++ b/spec/app/select-list-spec.coffee @@ -35,6 +35,8 @@ describe "SelectList", -> it "filters the elements in the list based on the scoreElement function and selects the first item", -> miniEditor.insertText('la') + window.advanceClock(selectList.inputThrottle) + expect(list.find('li').length).toBe 2 expect(list.find('li:contains(Alpha)')).toExist() expect(list.find('li:contains(Delta)')).toExist() @@ -44,11 +46,15 @@ describe "SelectList", -> it "displays an error if there are no matches, removes error when there are matches", -> miniEditor.insertText('nothing will match this') + window.advanceClock(selectList.inputThrottle) + expect(list.find('li').length).toBe 0 expect(selectList.error).not.toBeHidden() expect(selectList).toHaveClass("error") miniEditor.setText('la') + window.advanceClock(selectList.inputThrottle) + expect(list.find('li').length).toBe 2 expect(selectList.error).not.toBeVisible() expect(selectList).not.toHaveClass("error") @@ -109,6 +115,8 @@ describe "SelectList", -> describe "when there is no item selected (because the list is empty)", -> it "does not trigger the confirmed hook", -> miniEditor.insertText("i will never match anything") + window.advanceClock(selectList.inputThrottle) + expect(list.find('li')).not.toExist() miniEditor.trigger 'core:confirm' expect(selectList.confirmed).not.toHaveBeenCalled() diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index 9906a8f6a..29a937218 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -2,6 +2,7 @@ $ = require 'jquery' { View } = require 'space-pen' Editor = require 'editor' fuzzyFilter = require 'fuzzy-filter' +_ = require 'underscore' module.exports = class SelectList extends View @@ -15,13 +16,14 @@ class SelectList extends View @viewClass: -> 'select-list' maxItems: Infinity + inputThrottle: 50 filteredArray: null cancelling: false initialize: -> requireStylesheet 'select-list.css' - @miniEditor.getBuffer().on 'change', => @populateList() + @miniEditor.getBuffer().on 'change', _.debounce((=> @populateList()), @inputThrottle) @miniEditor.on 'focusout', => @cancel() unless @cancelling @on 'core:move-up', => @selectPreviousItem() @on 'core:move-down', => @selectNextItem() diff --git a/src/extensions/outline-view/spec/outline-view-spec.coffee b/src/extensions/outline-view/spec/outline-view-spec.coffee index 646bdb6b2..e058e4c09 100644 --- a/src/extensions/outline-view/spec/outline-view-spec.coffee +++ b/src/extensions/outline-view/spec/outline-view-spec.coffee @@ -45,6 +45,8 @@ describe "OutlineView", -> runs -> outlineView.miniEditor.setText("nothing will match this") + window.advanceClock(outlineView.inputThrottle) + expect(rootView.find('.outline-view')).toExist() expect(outlineView.list.children('li').length).toBe 0 expect(outlineView.error).toBeVisible() @@ -53,6 +55,8 @@ describe "OutlineView", -> # Should remove error outlineView.miniEditor.setText("") + window.advanceClock(outlineView.inputThrottle) + expect(outlineView.list.children('li').length).toBe 2 expect(outlineView).not.toHaveClass "error" expect(outlineView.error).not.toBeVisible() From 81eed5e4104428384978542bd24ea5d80a8f934c Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 15:06:07 -0800 Subject: [PATCH 05/23] Cache project paths in fuzzy-finder --- .../spec/fuzzy-finder-spec.coffee | 20 +++++++++++++++++++ .../fuzzy-finder/src/fuzzy-finder.coffee | 1 + 2 files changed, 21 insertions(+) diff --git a/src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee b/src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee index 2c77805d8..818b74e34 100644 --- a/src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee +++ b/src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee @@ -189,3 +189,23 @@ describe 'FuzzyFinder', -> expect(finder.hasParent()).toBeFalsy() expect(activeEditor.isFocused).toBeTruthy() expect(finder.miniEditor.isFocused).toBeFalsy() + + describe "cached file paths", -> + it "caches file paths after first time", -> + spyOn(rootView.project, "getFilePaths").andCallThrough() + rootView.trigger 'fuzzy-finder:toggle-file-finder' + + waitsFor -> + finder.list.children('li').length > 0 + + runs -> + expect(rootView.project.getFilePaths).toHaveBeenCalled() + rootView.project.getFilePaths.reset() + rootView.trigger 'fuzzy-finder:toggle-file-finder' + rootView.trigger 'fuzzy-finder:toggle-file-finder' + + waitsFor -> + finder.list.children('li').length > 0 + + runs -> + expect(rootView.project.getFilePaths).not.toHaveBeenCalled() diff --git a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee index 077ce9809..a363fa93a 100644 --- a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee +++ b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee @@ -51,6 +51,7 @@ class FuzzyFinder extends SelectList @attach() if @paths?.length populateProjectPaths: -> + return if @array?.length > 0 @setLoading("Indexing...") @rootView.project.getFilePaths().done (paths) => @setArray(paths) From 0c68295ec6e9490b3ab799d190cd90576202a079 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 15:08:20 -0800 Subject: [PATCH 06/23] Empty fuzzy-finder list on cancel --- spec/app/select-list-spec.coffee | 13 ++----------- src/app/select-list.coffee | 3 +-- src/extensions/fuzzy-finder/src/fuzzy-finder.coffee | 10 ++++++---- 3 files changed, 9 insertions(+), 17 deletions(-) diff --git a/spec/app/select-list-spec.coffee b/spec/app/select-list-spec.coffee index f017c5051..b604e529e 100644 --- a/spec/app/select-list-spec.coffee +++ b/spec/app/select-list-spec.coffee @@ -132,11 +132,12 @@ describe "SelectList", -> expect(selectList.confirmed).toHaveBeenCalledWith(array[1]) describe "the core:cancel event", -> - it "triggers the cancelled hook and detaches the select list", -> + it "triggers the cancelled hook and detaches and empties the select list", -> spyOn(selectList, 'detach') miniEditor.trigger 'core:cancel' expect(selectList.cancelled).toHaveBeenCalled() expect(selectList.detach).toHaveBeenCalled() + expect(selectList.list).toBeEmpty() describe "when the mini editor loses focus", -> it "triggers the cancelled hook and detaches the select list", -> @@ -144,13 +145,3 @@ describe "SelectList", -> miniEditor.trigger 'focusout' expect(selectList.cancelled).toHaveBeenCalled() expect(selectList.detach).toHaveBeenCalled() - - describe "when an error occurs on previously populated list", -> - it "clears the list", -> - selectList.setError("yolo") - expect(selectList.list).toBeEmpty() - - describe "when loading is triggered on previously populated list", -> - it "clears the list", -> - selectList.setLoading("loading yolo") - expect(selectList.list).toBeEmpty() diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index 29a937218..a6759337d 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -48,7 +48,6 @@ class SelectList extends View @error.text("").hide() @removeClass("error") else - @list.empty() @error.text(message).show() @addClass("error") @@ -56,7 +55,6 @@ class SelectList extends View if not message or message.length == "" @loading.text("").hide() else - @list.empty() @setError() @loading.text(message).show() @@ -115,6 +113,7 @@ class SelectList extends View @confirmed(element) if element? cancel: -> + @list.empty() @cancelling = true @cancelled() @detach() diff --git a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee index a363fa93a..02eafcbee 100644 --- a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee +++ b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee @@ -51,10 +51,12 @@ class FuzzyFinder extends SelectList @attach() if @paths?.length populateProjectPaths: -> - return if @array?.length > 0 - @setLoading("Indexing...") - @rootView.project.getFilePaths().done (paths) => - @setArray(paths) + if @array?.length > 0 + @setArray(@array) + else + @setLoading("Indexing...") + @rootView.project.getFilePaths().done (paths) => + @setArray(paths) populateOpenBufferPaths: -> @paths = @rootView.getOpenBufferPaths().map (path) => From e15306d8cc6a7957b73d09cd0580cd4c64e7ea07 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 15:46:21 -0800 Subject: [PATCH 07/23] Clear array when window receives focus --- src/app/select-list.coffee | 1 + src/extensions/fuzzy-finder/src/fuzzy-finder.coffee | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index a6759337d..04d85172c 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -59,6 +59,7 @@ class SelectList extends View @loading.text(message).show() populateList: -> + return unless @hasParent() filterQuery = @miniEditor.getText() if filterQuery.length filteredArray = fuzzyFilter(@array, filterQuery, key: @filterKey) diff --git a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee index 02eafcbee..047190757 100644 --- a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee +++ b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee @@ -1,6 +1,7 @@ {View, $$} = require 'space-pen' SelectList = require 'select-list' _ = require 'underscore' +$ = require 'jquery' Editor = require 'editor' module.exports = @@ -20,6 +21,7 @@ class FuzzyFinder extends SelectList initialize: (@rootView) -> super + $(window).on 'focus', => @array = null itemForElement: (path) -> $$ -> @li path @@ -39,8 +41,8 @@ class FuzzyFinder extends SelectList else return unless @rootView.project.getPath()? @allowActiveEditorChange = false - @populateProjectPaths() @attach() + @populateProjectPaths() toggleBufferFinder: -> if @hasParent() From f8dd51cab6ee418e4c05f5f9db22c3669602f444 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 15:48:56 -0800 Subject: [PATCH 08/23] Increase input throttle to 200ms --- src/app/select-list.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index 04d85172c..2bca8c3a9 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -16,7 +16,7 @@ class SelectList extends View @viewClass: -> 'select-list' maxItems: Infinity - inputThrottle: 50 + inputThrottle: 200 filteredArray: null cancelling: false From 6f6dfe78a9c1ab7a18655da92fda1f0cf813a0a9 Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 17:21:08 -0800 Subject: [PATCH 09/23] Clear timeout when select-list is cancelled --- src/app/select-list.coffee | 11 +++++++---- src/extensions/event-palette/src/event-palette.coffee | 4 +++- src/extensions/fuzzy-finder/src/fuzzy-finder.coffee | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index 2bca8c3a9..36319c7c8 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -2,7 +2,6 @@ $ = require 'jquery' { View } = require 'space-pen' Editor = require 'editor' fuzzyFilter = require 'fuzzy-filter' -_ = require 'underscore' module.exports = class SelectList extends View @@ -16,6 +15,7 @@ class SelectList extends View @viewClass: -> 'select-list' maxItems: Infinity + scheduleTimeout: null inputThrottle: 200 filteredArray: null cancelling: false @@ -23,7 +23,7 @@ class SelectList extends View initialize: -> requireStylesheet 'select-list.css' - @miniEditor.getBuffer().on 'change', _.debounce((=> @populateList()), @inputThrottle) + @miniEditor.getBuffer().on 'change', => @schedulePopulateList() @miniEditor.on 'focusout', => @cancel() unless @cancelling @on 'core:move-up', => @selectPreviousItem() @on 'core:move-down', => @selectNextItem() @@ -38,6 +38,10 @@ class SelectList extends View @confirmSelection() if $(e.target).closest('li').hasClass('selected') e.preventDefault() + schedulePopulateList: -> + clearTimeout(@scheduleTimeout) + @scheduleTimeout = setTimeout((=> @populateList()), @inputThrottle) + setArray: (@array) -> @populateList() @selectItem(@list.find('li:first')) @@ -59,7 +63,6 @@ class SelectList extends View @loading.text(message).show() populateList: -> - return unless @hasParent() filterQuery = @miniEditor.getText() if filterQuery.length filteredArray = fuzzyFilter(@array, filterQuery, key: @filterKey) @@ -119,4 +122,4 @@ class SelectList extends View @cancelled() @detach() @cancelling = false - + clearTimeout(@scheduleTimeout) diff --git a/src/extensions/event-palette/src/event-palette.coffee b/src/extensions/event-palette/src/event-palette.coffee index fcd8dcdc1..b7eac9017 100644 --- a/src/extensions/event-palette/src/event-palette.coffee +++ b/src/extensions/event-palette/src/event-palette.coffee @@ -20,7 +20,9 @@ class EventPalette extends SelectList keyBindings: null initialize: (@rootView) -> - @command 'event-palette:toggle', => @cancel() + @command 'event-palette:toggle', => + @cancel() + false super attach: -> diff --git a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee index 047190757..14b2441b0 100644 --- a/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee +++ b/src/extensions/fuzzy-finder/src/fuzzy-finder.coffee @@ -41,8 +41,8 @@ class FuzzyFinder extends SelectList else return unless @rootView.project.getPath()? @allowActiveEditorChange = false - @attach() @populateProjectPaths() + @attach() toggleBufferFinder: -> if @hasParent() From a6a05b6ff460af9e8c8deb17ea141c0b4e8904ae Mon Sep 17 00:00:00 2001 From: Corey Johnson & Kevin Sawicki Date: Wed, 12 Dec 2012 17:25:45 -0800 Subject: [PATCH 10/23] Remove directories from fuzzy-finder --- native/v8_extensions/native.js | 4 ++-- native/v8_extensions/native.mm | 5 ++--- src/app/project.coffee | 2 +- src/stdlib/fs.coffee | 4 ++-- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/native/v8_extensions/native.js b/native/v8_extensions/native.js index 6e17b135e..85cdf5be8 100644 --- a/native/v8_extensions/native.js +++ b/native/v8_extensions/native.js @@ -16,8 +16,8 @@ var $native = {}; native function traverseTree(path, onFile, onDirectory); $native.traverseTree = traverseTree; - native function getAllPathsAsync(path, callback); - $native.getAllPathsAsync = getAllPathsAsync; + native function getAllFilePathsAsync(path, callback); + $native.getAllFilePathsAsync = getAllFilePathsAsync; native function isFile(path); $native.isFile = isFile; diff --git a/native/v8_extensions/native.mm b/native/v8_extensions/native.mm index 229993ab3..b63f9a2f9 100644 --- a/native/v8_extensions/native.mm +++ b/native/v8_extensions/native.mm @@ -103,7 +103,7 @@ bool Native::Execute(const CefString& name, return true; } - else if (name == "getAllPathsAsync") { + else if (name == "getAllFilePathsAsync") { std::string argument = arguments[0]->GetStringValue().ToString(); CefRefPtr callback = arguments[1]; CefRefPtr context = CefV8Context::GetCurrentContext(); @@ -127,8 +127,7 @@ bool Native::Execute(const CefString& name, } bool isFile = entry->fts_info == FTS_NSOK; - bool isDir = entry->fts_info == FTS_D; - if (!isFile && !isDir) { + if (!isFile) { continue; } diff --git a/src/app/project.coffee b/src/app/project.coffee index 634b0ecf3..2d48851f5 100644 --- a/src/app/project.coffee +++ b/src/app/project.coffee @@ -53,7 +53,7 @@ class Project getFilePaths: -> deferred = $.Deferred() - fs.getAllPathsAsync @getPath(), (paths) => + fs.getAllFilePathsAsync @getPath(), (paths) => paths = paths.filter (path) => not @isPathIgnored(path) deferred.resolve(paths) deferred.promise() diff --git a/src/stdlib/fs.coffee b/src/stdlib/fs.coffee index 696dd8036..59a034984 100644 --- a/src/stdlib/fs.coffee +++ b/src/stdlib/fs.coffee @@ -112,8 +112,8 @@ module.exports = @makeTree(@directory(path)) @makeDirectory(path) - getAllPathsAsync: (rootPath, callback) -> - $native.getAllPathsAsync(rootPath, callback) + getAllFilePathsAsync: (rootPath, callback) -> + $native.getAllFilePathsAsync(rootPath, callback) traverseTree: (rootPath, onFile, onDirectory) -> $native.traverseTree(rootPath, onFile, onDirectory) From 0625a927139696c904eb02f9b1984726dcd14b46 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 12 Dec 2012 17:38:42 -0800 Subject: [PATCH 11/23] Unsubscribe from root view when editor is being removed --- src/extensions/wrap-guide/src/wrap-guide.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/extensions/wrap-guide/src/wrap-guide.coffee b/src/extensions/wrap-guide/src/wrap-guide.coffee index 48dcebf28..d7ba8c1c7 100644 --- a/src/extensions/wrap-guide/src/wrap-guide.coffee +++ b/src/extensions/wrap-guide/src/wrap-guide.coffee @@ -30,7 +30,8 @@ class WrapGuide extends View @updateGuide(@editor) @editor.on 'editor-path-change', => @updateGuide(@editor) - @rootView.on 'font-size-change', => @updateGuide(@editor) + @rootView.on 'font-size-change.wrap-guide', => @updateGuide(@editor) + @editor.on 'before-remove', => @rootView.off('.wrap-guide') updateGuide: (editor) -> column = @getGuideColumn(editor.getPath(), @defaultColumn) From bcb92cf4e7f30f4a80809e5124ed5a605d5f29e3 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 09:50:30 -0800 Subject: [PATCH 12/23] Show loading message when generating symbols --- .../outline-view/spec/outline-view-spec.coffee | 16 +++++++++------- .../outline-view/src/outline-view.coffee | 4 ++-- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/extensions/outline-view/spec/outline-view-spec.coffee b/src/extensions/outline-view/spec/outline-view-spec.coffee index e058e4c09..6c6e8a13d 100644 --- a/src/extensions/outline-view/spec/outline-view-spec.coffee +++ b/src/extensions/outline-view/spec/outline-view-spec.coffee @@ -3,28 +3,31 @@ OutlineView = require 'outline-view' TagGenerator = require 'outline-view/src/tag-generator' describe "OutlineView", -> - [rootView, outlineView] = [] + [rootView, outlineView, setArraySpy] = [] beforeEach -> rootView = new RootView(require.resolve('fixtures')) rootView.activateExtension(OutlineView) outlineView = OutlineView.instance rootView.attachToDom() + setArraySpy = spyOn(outlineView, 'setArray').andCallThrough() afterEach -> rootView.deactivate() + setArraySpy.reset() describe "when tags can be generated for a file", -> it "initially displays all JavaScript functions with line numbers", -> rootView.open('sample.js') expect(rootView.find('.outline-view')).not.toExist() - attachSpy = spyOn(outlineView, 'attach').andCallThrough() rootView.getActiveEditor().trigger "outline-view:toggle" + expect(outlineView.find('.loading')).toHaveText 'Generating symbols...' waitsFor -> - attachSpy.callCount > 0 + setArraySpy.callCount > 0 runs -> + expect(outlineView.find('.loading')).toBeEmpty() expect(rootView.find('.outline-view')).toExist() expect(outlineView.list.children('li').length).toBe 2 expect(outlineView.list.children('li:first').find('.function-name')).toHaveText 'quicksort' @@ -37,11 +40,10 @@ describe "OutlineView", -> it "displays error when no tags match text in mini-editor", -> rootView.open('sample.js') expect(rootView.find('.outline-view')).not.toExist() - attachSpy = spyOn(outlineView, 'attach').andCallThrough() rootView.getActiveEditor().trigger "outline-view:toggle" waitsFor -> - attachSpy.callCount > 0 + setArraySpy.callCount > 0 runs -> outlineView.miniEditor.setText("nothing will match this") @@ -65,11 +67,11 @@ describe "OutlineView", -> it "shows an error message when no matching tags are found", -> rootView.open('sample.txt') expect(rootView.find('.outline-view')).not.toExist() - attachSpy = spyOn(outlineView, 'attach').andCallThrough() rootView.getActiveEditor().trigger "outline-view:toggle" + setErrorSpy = spyOn(outlineView, "setError").andCallThrough() waitsFor -> - attachSpy.callCount > 0 + setErrorSpy.callCount > 0 runs -> expect(rootView.find('.outline-view')).toExist() diff --git a/src/extensions/outline-view/src/outline-view.coffee b/src/extensions/outline-view/src/outline-view.coffee index 2b9b688ba..5d222185d 100644 --- a/src/extensions/outline-view/src/outline-view.coffee +++ b/src/extensions/outline-view/src/outline-view.coffee @@ -32,11 +32,13 @@ class OutlineView extends SelectList @cancel() else @populate() + @attach() populate: -> tags = [] callback = (tag) -> tags.push tag path = @rootView.getActiveEditor().getPath() + @setLoading("Generating symbols...") new TagGenerator(path, callback).generate().done => if tags.length > 0 @miniEditor.show() @@ -46,8 +48,6 @@ class OutlineView extends SelectList @setError("No symbols found") setTimeout (=> @detach()), 2000 - @attach() - confirmed : ({position, name}) -> @cancel() editor = @rootView.getActiveEditor() From d5c6acd2ce78e6b99182915b2052389b01410e6d Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 09:58:06 -0800 Subject: [PATCH 13/23] :lipstick: --- src/app/keymaps/select-list.coffee | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/keymaps/select-list.coffee b/src/app/keymaps/select-list.coffee index 1f570fb19..4aca5bb92 100644 --- a/src/app/keymaps/select-list.coffee +++ b/src/app/keymaps/select-list.coffee @@ -2,4 +2,3 @@ window.keymap.bindKeys ".select-list .mini.editor input", 'enter': 'core:confirm', 'escape': 'core:cancel' 'meta-w': 'core:cancel' - From 82dd3ddf734188eef84ac7373e6d4e6014d5ae13 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 10:11:37 -0800 Subject: [PATCH 14/23] Remove extra it --- spec/app/selection-spec.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/app/selection-spec.coffee b/spec/app/selection-spec.coffee index 27427ae7a..a7bdbbd87 100644 --- a/spec/app/selection-spec.coffee +++ b/spec/app/selection-spec.coffee @@ -41,7 +41,7 @@ describe "Selection", -> expect(selection.isEmpty()).toBeTruthy() describe "when the cursor precedes the anchor", -> - it "it deletes selected text and clears the selection", -> + it "deletes selected text and clears the selection", -> selection.cursor.setScreenPosition [0,13] selection.selectToScreenPosition [0,4] From 7a7bdd7f8ef84247b7db3e9d79564cca25daa4e0 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 10:35:50 -0800 Subject: [PATCH 15/23] Move to first character of line that symbol is on --- src/extensions/outline-view/spec/outline-view-spec.coffee | 2 +- src/extensions/outline-view/src/outline-view.coffee | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/extensions/outline-view/spec/outline-view-spec.coffee b/src/extensions/outline-view/spec/outline-view-spec.coffee index 6c6e8a13d..b5615e8b4 100644 --- a/src/extensions/outline-view/spec/outline-view-spec.coffee +++ b/src/extensions/outline-view/spec/outline-view-spec.coffee @@ -98,7 +98,7 @@ describe "OutlineView", -> outlineView.attach() expect(rootView.find('.outline-view')).toExist() outlineView.confirmed(tags[1]) - expect(rootView.getActiveEditor().getCursorBufferPosition()).toEqual [1,0] + expect(rootView.getActiveEditor().getCursorBufferPosition()).toEqual [1,2] describe "TagGenerator", -> it "generates tags for all JavaScript functions", -> diff --git a/src/extensions/outline-view/src/outline-view.coffee b/src/extensions/outline-view/src/outline-view.coffee index 5d222185d..54e6fd4aa 100644 --- a/src/extensions/outline-view/src/outline-view.coffee +++ b/src/extensions/outline-view/src/outline-view.coffee @@ -53,6 +53,7 @@ class OutlineView extends SelectList editor = @rootView.getActiveEditor() editor.scrollToBufferPosition(position, center: true) editor.setCursorBufferPosition(position) + editor.moveCursorToFirstCharacterOfLine() cancelled: -> @miniEditor.setText('') From 1686c972446c79dbdc7a8a3dbd2ac000fa060c8a Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 15:16:13 -0800 Subject: [PATCH 16/23] Add initial support for jump to declaration --- atom.gyp | 4 + native/atom_cef_render_process_handler.mm | 14 +- native/v8_extensions/readtags.c | 959 ++++++++++++++++++ native/v8_extensions/readtags.h | 252 +++++ native/v8_extensions/tags.h | 20 + native/v8_extensions/tags.js | 7 + native/v8_extensions/tags.mm | 66 ++ spec/fixtures/tagged.js | 7 + spec/fixtures/tags | 7 + .../spec/outline-view-spec.coffee | 15 + src/extensions/outline-view/src/keymap.coffee | 1 + .../outline-view/src/outline-view.coffee | 21 + .../outline-view/src/tag-reader.coffee | 13 + 13 files changed, 1380 insertions(+), 6 deletions(-) create mode 100644 native/v8_extensions/readtags.c create mode 100644 native/v8_extensions/readtags.h create mode 100644 native/v8_extensions/tags.h create mode 100644 native/v8_extensions/tags.js create mode 100644 native/v8_extensions/tags.mm create mode 100644 spec/fixtures/tagged.js create mode 100644 spec/fixtures/tags create mode 100644 src/extensions/outline-view/src/tag-reader.coffee diff --git a/atom.gyp b/atom.gyp index 02c8e7529..8e41a42e9 100644 --- a/atom.gyp +++ b/atom.gyp @@ -301,6 +301,10 @@ 'native/v8_extensions/atom.h', 'native/v8_extensions/git.mm', 'native/v8_extensions/git.h', + 'native/v8_extensions/readtags.h', + 'native/v8_extensions/readtags.c', + 'native/v8_extensions/tags.h', + 'native/v8_extensions/tags.mm', ], # TODO(mark): For now, don't put any resources into this app. Its # resources directory will be a symbolic link to the browser app's diff --git a/native/atom_cef_render_process_handler.mm b/native/atom_cef_render_process_handler.mm index 76ca46a2b..2c6196906 100644 --- a/native/atom_cef_render_process_handler.mm +++ b/native/atom_cef_render_process_handler.mm @@ -4,6 +4,7 @@ #import "native/v8_extensions/onig_reg_exp.h" #import "native/v8_extensions/onig_scanner.h" #import "native/v8_extensions/git.h" +#import "native/v8_extensions/tags.h" #import "native/message_translation.h" #import "path_watcher.h" #include @@ -14,6 +15,7 @@ void AtomCefRenderProcessHandler::OnWebKitInitialized() { new v8_extensions::OnigRegExp(); new v8_extensions::OnigScanner(); new v8_extensions::Git(); + new v8_extensions::Tags(); } void AtomCefRenderProcessHandler::OnContextCreated(CefRefPtr browser, @@ -31,7 +33,7 @@ bool AtomCefRenderProcessHandler::OnProcessMessageReceived(CefRefPtr CefProcessId source_process, CefRefPtr message) { std::string name = message->GetName().ToString(); - + if (name == "reload") { Reload(browser); return true; @@ -73,28 +75,28 @@ void AtomCefRenderProcessHandler::Shutdown(CefRefPtr browser) { bool AtomCefRenderProcessHandler::CallMessageReceivedHandler(CefRefPtr context, CefRefPtr message) { context->Enter(); - + CefRefPtr atom = context->GetGlobal()->GetValue("atom"); CefRefPtr receiveFn = atom->GetValue("receiveMessageFromBrowserProcess"); CefV8ValueList arguments; arguments.push_back(CefV8Value::CreateString(message->GetName().ToString())); - + CefRefPtr messageArguments = message->GetArgumentList(); if (messageArguments->GetSize() > 0) { CefRefPtr data = CefV8Value::CreateArray(messageArguments->GetSize()); TranslateList(messageArguments, data); arguments.push_back(data); } - + receiveFn->ExecuteFunction(atom, arguments); context->Exit(); - + if (receiveFn->HasException()) { std::cout << "ERROR: Exception in JS receiving message " << message->GetName().ToString() << "\n"; return false; } else { - return true; + return true; } } diff --git a/native/v8_extensions/readtags.c b/native/v8_extensions/readtags.c new file mode 100644 index 000000000..25c811c27 --- /dev/null +++ b/native/v8_extensions/readtags.c @@ -0,0 +1,959 @@ +/* +* $Id: readtags.c 592 2007-07-31 03:30:41Z dhiebert $ +* +* Copyright (c) 1996-2003, Darren Hiebert +* +* This source code is released into the public domain. +* +* This module contains functions for reading tag files. +*/ + +/* +* INCLUDE FILES +*/ +#include +#include +#include +#include +#include +#include /* to declare off_t */ + +#include "readtags.h" + +/* +* MACROS +*/ +#define TAB '\t' + + +/* +* DATA DECLARATIONS +*/ +typedef struct { + size_t size; + char *buffer; +} vstring; + +/* Information about current tag file */ +struct sTagFile { + /* has the file been opened and this structure initialized? */ + short initialized; + /* format of tag file */ + short format; + /* how is the tag file sorted? */ + sortType sortMethod; + /* pointer to file structure */ + FILE* fp; + /* file position of first character of `line' */ + off_t pos; + /* size of tag file in seekable positions */ + off_t size; + /* last line read */ + vstring line; + /* name of tag in last line read */ + vstring name; + /* defines tag search state */ + struct { + /* file position of last match for tag */ + off_t pos; + /* name of tag last searched for */ + char *name; + /* length of name for partial matches */ + size_t nameLength; + /* peforming partial match */ + short partial; + /* ignoring case */ + short ignorecase; + } search; + /* miscellaneous extension fields */ + struct { + /* number of entries in `list' */ + unsigned short max; + /* list of key value pairs */ + tagExtensionField *list; + } fields; + /* buffers to be freed at close */ + struct { + /* name of program author */ + char *author; + /* name of program */ + char *name; + /* URL of distribution */ + char *url; + /* program version */ + char *version; + } program; +}; + +/* +* DATA DEFINITIONS +*/ +const char *const EmptyString = ""; +const char *const PseudoTagPrefix = "!_"; + +/* +* FUNCTION DEFINITIONS +*/ + +/* + * Compare two strings, ignoring case. + * Return 0 for match, < 0 for smaller, > 0 for bigger + * Make sure case is folded to uppercase in comparison (like for 'sort -f') + * This makes a difference when one of the chars lies between upper and lower + * ie. one of the chars [ \ ] ^ _ ` for ascii. (The '_' in particular !) + */ +static int struppercmp (const char *s1, const char *s2) +{ + int result; + do + { + result = toupper ((int) *s1) - toupper ((int) *s2); + } while (result == 0 && *s1++ != '\0' && *s2++ != '\0'); + return result; +} + +static int strnuppercmp (const char *s1, const char *s2, size_t n) +{ + int result; + do + { + result = toupper ((int) *s1) - toupper ((int) *s2); + } while (result == 0 && --n > 0 && *s1++ != '\0' && *s2++ != '\0'); + return result; +} + +static int growString (vstring *s) +{ + int result = 0; + size_t newLength; + char *newLine; + if (s->size == 0) + { + newLength = 128; + newLine = (char*) malloc (newLength); + *newLine = '\0'; + } + else + { + newLength = 2 * s->size; + newLine = (char*) realloc (s->buffer, newLength); + } + if (newLine == NULL) + perror ("string too large"); + else + { + s->buffer = newLine; + s->size = newLength; + result = 1; + } + return result; +} + +/* Copy name of tag out of tag line */ +static void copyName (tagFile *const file) +{ + size_t length; + const char *end = strchr (file->line.buffer, '\t'); + if (end == NULL) + { + end = strchr (file->line.buffer, '\n'); + if (end == NULL) + end = strchr (file->line.buffer, '\r'); + } + if (end != NULL) + length = end - file->line.buffer; + else + length = strlen (file->line.buffer); + while (length >= file->name.size) + growString (&file->name); + strncpy (file->name.buffer, file->line.buffer, length); + file->name.buffer [length] = '\0'; +} + +static int readTagLineRaw (tagFile *const file) +{ + int result = 1; + int reReadLine; + + /* If reading the line places any character other than a null or a + * newline at the last character position in the buffer (one less than + * the buffer size), then we must resize the buffer and reattempt to read + * the line. + */ + do + { + char *const pLastChar = file->line.buffer + file->line.size - 2; + char *line; + + file->pos = ftell (file->fp); + reReadLine = 0; + *pLastChar = '\0'; + line = fgets (file->line.buffer, (int) file->line.size, file->fp); + if (line == NULL) + { + /* read error */ + if (! feof (file->fp)) + perror ("readTagLine"); + result = 0; + } + else if (*pLastChar != '\0' && + *pLastChar != '\n' && *pLastChar != '\r') + { + /* buffer overflow */ + growString (&file->line); + fseek (file->fp, file->pos, SEEK_SET); + reReadLine = 1; + } + else + { + size_t i = strlen (file->line.buffer); + while (i > 0 && + (file->line.buffer [i - 1] == '\n' || file->line.buffer [i - 1] == '\r')) + { + file->line.buffer [i - 1] = '\0'; + --i; + } + } + } while (reReadLine && result); + if (result) + copyName (file); + return result; +} + +static int readTagLine (tagFile *const file) +{ + int result; + do + { + result = readTagLineRaw (file); + } while (result && *file->name.buffer == '\0'); + return result; +} + +static tagResult growFields (tagFile *const file) +{ + tagResult result = TagFailure; + unsigned short newCount = (unsigned short) 2 * file->fields.max; + tagExtensionField *newFields = (tagExtensionField*) + realloc (file->fields.list, newCount * sizeof (tagExtensionField)); + if (newFields == NULL) + perror ("too many extension fields"); + else + { + file->fields.list = newFields; + file->fields.max = newCount; + result = TagSuccess; + } + return result; +} + +static void parseExtensionFields (tagFile *const file, tagEntry *const entry, + char *const string) +{ + char *p = string; + while (p != NULL && *p != '\0') + { + while (*p == TAB) + *p++ = '\0'; + if (*p != '\0') + { + char *colon; + char *field = p; + p = strchr (p, TAB); + if (p != NULL) + *p++ = '\0'; + colon = strchr (field, ':'); + if (colon == NULL) + entry->kind = field; + else + { + const char *key = field; + const char *value = colon + 1; + *colon = '\0'; + if (strcmp (key, "kind") == 0) + entry->kind = value; + else if (strcmp (key, "file") == 0) + entry->fileScope = 1; + else if (strcmp (key, "line") == 0) + entry->address.lineNumber = atol (value); + else + { + if (entry->fields.count == file->fields.max) + growFields (file); + file->fields.list [entry->fields.count].key = key; + file->fields.list [entry->fields.count].value = value; + ++entry->fields.count; + } + } + } + } +} + +static void parseTagLine (tagFile *file, tagEntry *const entry) +{ + int i; + char *p = file->line.buffer; + char *tab = strchr (p, TAB); + + entry->fields.list = NULL; + entry->fields.count = 0; + entry->kind = NULL; + entry->fileScope = 0; + + entry->name = p; + if (tab != NULL) + { + *tab = '\0'; + p = tab + 1; + entry->file = p; + tab = strchr (p, TAB); + if (tab != NULL) + { + int fieldsPresent; + *tab = '\0'; + p = tab + 1; + if (*p == '/' || *p == '?') + { + /* parse pattern */ + int delimiter = *(unsigned char*) p; + entry->address.lineNumber = 0; + entry->address.pattern = p; + do + { + p = strchr (p + 1, delimiter); + } while (p != NULL && *(p - 1) == '\\'); + if (p == NULL) + { + /* invalid pattern */ + } + else + ++p; + } + else if (isdigit ((int) *(unsigned char*) p)) + { + /* parse line number */ + entry->address.pattern = p; + entry->address.lineNumber = atol (p); + while (isdigit ((int) *(unsigned char*) p)) + ++p; + } + else + { + /* invalid pattern */ + } + fieldsPresent = (strncmp (p, ";\"", 2) == 0); + *p = '\0'; + if (fieldsPresent) + parseExtensionFields (file, entry, p + 2); + } + } + if (entry->fields.count > 0) + entry->fields.list = file->fields.list; + for (i = entry->fields.count ; i < file->fields.max ; ++i) + { + file->fields.list [i].key = NULL; + file->fields.list [i].value = NULL; + } +} + +static char *duplicate (const char *str) +{ + char *result = NULL; + if (str != NULL) + { + result = strdup (str); + if (result == NULL) + perror (NULL); + } + return result; +} + +static void readPseudoTags (tagFile *const file, tagFileInfo *const info) +{ + fpos_t startOfLine; + const size_t prefixLength = strlen (PseudoTagPrefix); + if (info != NULL) + { + info->file.format = 1; + info->file.sort = TAG_UNSORTED; + info->program.author = NULL; + info->program.name = NULL; + info->program.url = NULL; + info->program.version = NULL; + } + while (1) + { + fgetpos (file->fp, &startOfLine); + if (! readTagLine (file)) + break; + if (strncmp (file->line.buffer, PseudoTagPrefix, prefixLength) != 0) + break; + else + { + tagEntry entry; + const char *key, *value; + parseTagLine (file, &entry); + key = entry.name + prefixLength; + value = entry.file; + if (strcmp (key, "TAG_FILE_SORTED") == 0) + file->sortMethod = (sortType) atoi (value); + else if (strcmp (key, "TAG_FILE_FORMAT") == 0) + file->format = (short) atoi (value); + else if (strcmp (key, "TAG_PROGRAM_AUTHOR") == 0) + file->program.author = duplicate (value); + else if (strcmp (key, "TAG_PROGRAM_NAME") == 0) + file->program.name = duplicate (value); + else if (strcmp (key, "TAG_PROGRAM_URL") == 0) + file->program.url = duplicate (value); + else if (strcmp (key, "TAG_PROGRAM_VERSION") == 0) + file->program.version = duplicate (value); + if (info != NULL) + { + info->file.format = file->format; + info->file.sort = file->sortMethod; + info->program.author = file->program.author; + info->program.name = file->program.name; + info->program.url = file->program.url; + info->program.version = file->program.version; + } + } + } + fsetpos (file->fp, &startOfLine); +} + +static void gotoFirstLogicalTag (tagFile *const file) +{ + fpos_t startOfLine; + const size_t prefixLength = strlen (PseudoTagPrefix); + rewind (file->fp); + while (1) + { + fgetpos (file->fp, &startOfLine); + if (! readTagLine (file)) + break; + if (strncmp (file->line.buffer, PseudoTagPrefix, prefixLength) != 0) + break; + } + fsetpos (file->fp, &startOfLine); +} + +static tagFile *initialize (const char *const filePath, tagFileInfo *const info) +{ + tagFile *result = (tagFile*) calloc ((size_t) 1, sizeof (tagFile)); + if (result != NULL) + { + growString (&result->line); + growString (&result->name); + result->fields.max = 20; + result->fields.list = (tagExtensionField*) calloc ( + result->fields.max, sizeof (tagExtensionField)); + result->fp = fopen (filePath, "r"); + if (result->fp == NULL) + { + free (result); + result = NULL; + info->status.error_number = errno; + } + else + { + fseek (result->fp, 0, SEEK_END); + result->size = ftell (result->fp); + rewind (result->fp); + readPseudoTags (result, info); + info->status.opened = 1; + result->initialized = 1; + } + } + return result; +} + +static void terminate (tagFile *const file) +{ + fclose (file->fp); + + free (file->line.buffer); + free (file->name.buffer); + free (file->fields.list); + + if (file->program.author != NULL) + free (file->program.author); + if (file->program.name != NULL) + free (file->program.name); + if (file->program.url != NULL) + free (file->program.url); + if (file->program.version != NULL) + free (file->program.version); + if (file->search.name != NULL) + free (file->search.name); + + memset (file, 0, sizeof (tagFile)); + + free (file); +} + +static tagResult readNext (tagFile *const file, tagEntry *const entry) +{ + tagResult result; + if (file == NULL || ! file->initialized) + result = TagFailure; + else if (! readTagLine (file)) + result = TagFailure; + else + { + if (entry != NULL) + parseTagLine (file, entry); + result = TagSuccess; + } + return result; +} + +static const char *readFieldValue ( + const tagEntry *const entry, const char *const key) +{ + const char *result = NULL; + int i; + if (strcmp (key, "kind") == 0) + result = entry->kind; + else if (strcmp (key, "file") == 0) + result = EmptyString; + else for (i = 0 ; i < entry->fields.count && result == NULL ; ++i) + if (strcmp (entry->fields.list [i].key, key) == 0) + result = entry->fields.list [i].value; + return result; +} + +static int readTagLineSeek (tagFile *const file, const off_t pos) +{ + int result = 0; + if (fseek (file->fp, pos, SEEK_SET) == 0) + { + result = readTagLine (file); /* read probable partial line */ + if (pos > 0 && result) + result = readTagLine (file); /* read complete line */ + } + return result; +} + +static int nameComparison (tagFile *const file) +{ + int result; + if (file->search.ignorecase) + { + if (file->search.partial) + result = strnuppercmp (file->search.name, file->name.buffer, + file->search.nameLength); + else + result = struppercmp (file->search.name, file->name.buffer); + } + else + { + if (file->search.partial) + result = strncmp (file->search.name, file->name.buffer, + file->search.nameLength); + else + result = strcmp (file->search.name, file->name.buffer); + } + return result; +} + +static void findFirstNonMatchBefore (tagFile *const file) +{ +#define JUMP_BACK 512 + int more_lines; + int comp; + off_t start = file->pos; + off_t pos = start; + do + { + if (pos < (off_t) JUMP_BACK) + pos = 0; + else + pos = pos - JUMP_BACK; + more_lines = readTagLineSeek (file, pos); + comp = nameComparison (file); + } while (more_lines && comp == 0 && pos > 0 && pos < start); +} + +static tagResult findFirstMatchBefore (tagFile *const file) +{ + tagResult result = TagFailure; + int more_lines; + off_t start = file->pos; + findFirstNonMatchBefore (file); + do + { + more_lines = readTagLine (file); + if (nameComparison (file) == 0) + result = TagSuccess; + } while (more_lines && result != TagSuccess && file->pos < start); + return result; +} + +static tagResult findBinary (tagFile *const file) +{ + tagResult result = TagFailure; + off_t lower_limit = 0; + off_t upper_limit = file->size; + off_t last_pos = 0; + off_t pos = upper_limit / 2; + while (result != TagSuccess) + { + if (! readTagLineSeek (file, pos)) + { + /* in case we fell off end of file */ + result = findFirstMatchBefore (file); + break; + } + else if (pos == last_pos) + { + /* prevent infinite loop if we backed up to beginning of file */ + break; + } + else + { + const int comp = nameComparison (file); + last_pos = pos; + if (comp < 0) + { + upper_limit = pos; + pos = lower_limit + ((upper_limit - lower_limit) / 2); + } + else if (comp > 0) + { + lower_limit = pos; + pos = lower_limit + ((upper_limit - lower_limit) / 2); + } + else if (pos == 0) + result = TagSuccess; + else + result = findFirstMatchBefore (file); + } + } + return result; +} + +static tagResult findSequential (tagFile *const file) +{ + tagResult result = TagFailure; + if (file->initialized) + { + while (result == TagFailure && readTagLine (file)) + { + if (nameComparison (file) == 0) + result = TagSuccess; + } + } + return result; +} + +static tagResult find (tagFile *const file, tagEntry *const entry, + const char *const name, const int options) +{ + tagResult result; + if (file->search.name != NULL) + free (file->search.name); + file->search.name = duplicate (name); + file->search.nameLength = strlen (name); + file->search.partial = (options & TAG_PARTIALMATCH) != 0; + file->search.ignorecase = (options & TAG_IGNORECASE) != 0; + fseek (file->fp, 0, SEEK_END); + file->size = ftell (file->fp); + rewind (file->fp); + if ((file->sortMethod == TAG_SORTED && !file->search.ignorecase) || + (file->sortMethod == TAG_FOLDSORTED && file->search.ignorecase)) + { +#ifdef DEBUG + printf ("\n"); +#endif + result = findBinary (file); + } + else + { +#ifdef DEBUG + printf ("\n"); +#endif + result = findSequential (file); + } + + if (result != TagSuccess) + file->search.pos = file->size; + else + { + file->search.pos = file->pos; + if (entry != NULL) + parseTagLine (file, entry); + } + return result; +} + +static tagResult findNext (tagFile *const file, tagEntry *const entry) +{ + tagResult result; + if ((file->sortMethod == TAG_SORTED && !file->search.ignorecase) || + (file->sortMethod == TAG_FOLDSORTED && file->search.ignorecase)) + { + result = tagsNext (file, entry); + if (result == TagSuccess && nameComparison (file) != 0) + result = TagFailure; + } + else + { + result = findSequential (file); + if (result == TagSuccess && entry != NULL) + parseTagLine (file, entry); + } + return result; +} + +/* +* EXTERNAL INTERFACE +*/ + +extern tagFile *tagsOpen (const char *const filePath, tagFileInfo *const info) +{ + return initialize (filePath, info); +} + +extern tagResult tagsSetSortType (tagFile *const file, const sortType type) +{ + tagResult result = TagFailure; + if (file != NULL && file->initialized) + { + file->sortMethod = type; + result = TagSuccess; + } + return result; +} + +extern tagResult tagsFirst (tagFile *const file, tagEntry *const entry) +{ + tagResult result = TagFailure; + if (file != NULL && file->initialized) + { + gotoFirstLogicalTag (file); + result = readNext (file, entry); + } + return result; +} + +extern tagResult tagsNext (tagFile *const file, tagEntry *const entry) +{ + tagResult result = TagFailure; + if (file != NULL && file->initialized) + result = readNext (file, entry); + return result; +} + +extern const char *tagsField (const tagEntry *const entry, const char *const key) +{ + const char *result = NULL; + if (entry != NULL) + result = readFieldValue (entry, key); + return result; +} + +extern tagResult tagsFind (tagFile *const file, tagEntry *const entry, + const char *const name, const int options) +{ + tagResult result = TagFailure; + if (file != NULL && file->initialized) + result = find (file, entry, name, options); + return result; +} + +extern tagResult tagsFindNext (tagFile *const file, tagEntry *const entry) +{ + tagResult result = TagFailure; + if (file != NULL && file->initialized) + result = findNext (file, entry); + return result; +} + +extern tagResult tagsClose (tagFile *const file) +{ + tagResult result = TagFailure; + if (file != NULL && file->initialized) + { + terminate (file); + result = TagSuccess; + } + return result; +} + +/* +* TEST FRAMEWORK +*/ + +#ifdef READTAGS_MAIN + +static const char *TagFileName = "tags"; +static const char *ProgramName; +static int extensionFields; +static int SortOverride; +static sortType SortMethod; + +static void printTag (const tagEntry *entry) +{ + int i; + int first = 1; + const char* separator = ";\""; + const char* const empty = ""; +/* "sep" returns a value only the first time it is evaluated */ +#define sep (first ? (first = 0, separator) : empty) + printf ("%s\t%s\t%s", + entry->name, entry->file, entry->address.pattern); + if (extensionFields) + { + if (entry->kind != NULL && entry->kind [0] != '\0') + printf ("%s\tkind:%s", sep, entry->kind); + if (entry->fileScope) + printf ("%s\tfile:", sep); +#if 0 + if (entry->address.lineNumber > 0) + printf ("%s\tline:%lu", sep, entry->address.lineNumber); +#endif + for (i = 0 ; i < entry->fields.count ; ++i) + printf ("%s\t%s:%s", sep, entry->fields.list [i].key, + entry->fields.list [i].value); + } + putchar ('\n'); +#undef sep +} + +static void findTag (const char *const name, const int options) +{ + tagFileInfo info; + tagEntry entry; + tagFile *const file = tagsOpen (TagFileName, &info); + if (file == NULL) + { + fprintf (stderr, "%s: cannot open tag file: %s: %s\n", + ProgramName, strerror (info.status.error_number), name); + exit (1); + } + else + { + if (SortOverride) + tagsSetSortType (file, SortMethod); + if (tagsFind (file, &entry, name, options) == TagSuccess) + { + do + { + printTag (&entry); + } while (tagsFindNext (file, &entry) == TagSuccess); + } + tagsClose (file); + } +} + +static void listTags (void) +{ + tagFileInfo info; + tagEntry entry; + tagFile *const file = tagsOpen (TagFileName, &info); + if (file == NULL) + { + fprintf (stderr, "%s: cannot open tag file: %s: %s\n", + ProgramName, strerror (info.status.error_number), TagFileName); + exit (1); + } + else + { + while (tagsNext (file, &entry) == TagSuccess) + printTag (&entry); + tagsClose (file); + } +} + +const char *const Usage = + "Find tag file entries matching specified names.\n\n" + "Usage: %s [-ilp] [-s[0|1]] [-t file] [name(s)]\n\n" + "Options:\n" + " -e Include extension fields in output.\n" + " -i Perform case-insensitive matching.\n" + " -l List all tags.\n" + " -p Perform partial matching.\n" + " -s[0|1|2] Override sort detection of tag file.\n" + " -t file Use specified tag file (default: \"tags\").\n" + "Note that options are acted upon as encountered, so order is significant.\n"; + +extern int main (int argc, char **argv) +{ + int options = 0; + int actionSupplied = 0; + int i; + ProgramName = argv [0]; + if (argc == 1) + { + fprintf (stderr, Usage, ProgramName); + exit (1); + } + for (i = 1 ; i < argc ; ++i) + { + const char *const arg = argv [i]; + if (arg [0] != '-') + { + findTag (arg, options); + actionSupplied = 1; + } + else + { + size_t j; + for (j = 1 ; arg [j] != '\0' ; ++j) + { + switch (arg [j]) + { + case 'e': extensionFields = 1; break; + case 'i': options |= TAG_IGNORECASE; break; + case 'p': options |= TAG_PARTIALMATCH; break; + case 'l': listTags (); actionSupplied = 1; break; + + case 't': + if (arg [j+1] != '\0') + { + TagFileName = arg + j + 1; + j += strlen (TagFileName); + } + else if (i + 1 < argc) + TagFileName = argv [++i]; + else + { + fprintf (stderr, Usage, ProgramName); + exit (1); + } + break; + case 's': + SortOverride = 1; + ++j; + if (arg [j] == '\0') + SortMethod = TAG_SORTED; + else if (strchr ("012", arg[j]) != NULL) + SortMethod = (sortType) (arg[j] - '0'); + else + { + fprintf (stderr, Usage, ProgramName); + exit (1); + } + break; + default: + fprintf (stderr, "%s: unknown option: %c\n", + ProgramName, arg[j]); + exit (1); + break; + } + } + } + } + if (! actionSupplied) + { + fprintf (stderr, + "%s: no action specified: specify tag name(s) or -l option\n", + ProgramName); + exit (1); + } + return 0; +} + +#endif + +/* vi:set tabstop=4 shiftwidth=4: */ diff --git a/native/v8_extensions/readtags.h b/native/v8_extensions/readtags.h new file mode 100644 index 000000000..724f250ad --- /dev/null +++ b/native/v8_extensions/readtags.h @@ -0,0 +1,252 @@ +/* +* $Id: readtags.h 443 2006-05-30 04:37:13Z darren $ +* +* Copyright (c) 1996-2003, Darren Hiebert +* +* This source code is released for the public domain. +* +* This file defines the public interface for looking up tag entries in tag +* files. +* +* The functions defined in this interface are intended to provide tag file +* support to a software tool. The tag lookups provided are sufficiently fast +* enough to permit opening a sorted tag file, searching for a matching tag, +* then closing the tag file each time a tag is looked up (search times are +* on the order of hundreths of a second, even for huge tag files). This is +* the recommended use of this library for most tool applications. Adhering +* to this approach permits a user to regenerate a tag file at will without +* the tool needing to detect and resynchronize with changes to the tag file. +* Even for an unsorted 24MB tag file, tag searches take about one second. +*/ +#ifndef READTAGS_H +#define READTAGS_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* +* MACROS +*/ + +/* Options for tagsSetSortType() */ +typedef enum { + TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED +} sortType ; + +/* Options for tagsFind() */ +#define TAG_FULLMATCH 0x0 +#define TAG_PARTIALMATCH 0x1 + +#define TAG_OBSERVECASE 0x0 +#define TAG_IGNORECASE 0x2 + +/* +* DATA DECLARATIONS +*/ + +typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult; + +struct sTagFile; + +typedef struct sTagFile tagFile; + +/* This structure contains information about the tag file. */ +typedef struct { + + struct { + /* was the tag file successfully opened? */ + int opened; + + /* errno value when 'opened' is false */ + int error_number; + } status; + + /* information about the structure of the tag file */ + struct { + /* format of tag file (1 = original, 2 = extended) */ + short format; + + /* how is the tag file sorted? */ + sortType sort; + } file; + + + /* information about the program which created this tag file */ + struct { + /* name of author of generating program (may be null) */ + const char *author; + + /* name of program (may be null) */ + const char *name; + + /* URL of distribution (may be null) */ + const char *url; + + /* program version (may be null) */ + const char *version; + } program; + +} tagFileInfo; + +/* This structure contains information about an extension field for a tag. + * These exist at the end of the tag in the form "key:value"). + */ +typedef struct { + + /* the key of the extension field */ + const char *key; + + /* the value of the extension field (may be an empty string) */ + const char *value; + +} tagExtensionField; + +/* This structure contains information about a specific tag. */ +typedef struct { + + /* name of tag */ + const char *name; + + /* path of source file containing definition of tag */ + const char *file; + + /* address for locating tag in source file */ + struct { + /* pattern for locating source line + * (may be NULL if not present) */ + const char *pattern; + + /* line number in source file of tag definition + * (may be zero if not known) */ + unsigned long lineNumber; + } address; + + /* kind of tag (may by name, character, or NULL if not known) */ + const char *kind; + + /* is tag of file-limited scope? */ + short fileScope; + + /* miscellaneous extension fields */ + struct { + /* number of entries in `list' */ + unsigned short count; + + /* list of key value pairs */ + tagExtensionField *list; + } fields; + +} tagEntry; + + +/* +* FUNCTION PROTOTYPES +*/ + +/* +* This function must be called before calling other functions in this +* library. It is passed the path to the tag file to read and a (possibly +* null) pointer to a structure which, if not null, will be populated with +* information about the tag file. If successful, the function will return a +* handle which must be supplied to other calls to read information from the +* tag file, and info.status.opened will be set to true. If unsuccessful, +* info.status.opened will be set to false and info.status.error_number will +* be set to the errno value representing the system error preventing the tag +* file from being successfully opened. +*/ +extern tagFile *tagsOpen (const char *const filePath, tagFileInfo *const info); + +/* +* This function allows the client to override the normal automatic detection +* of how a tag file is sorted. Permissible values for `type' are +* TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED. Tag files in the new extended +* format contain a key indicating whether or not they are sorted. However, +* tag files in the original format do not contain such a key even when +* sorted, preventing this library from taking advantage of fast binary +* lookups. If the client knows that such an unmarked tag file is indeed +* sorted (or not), it can override the automatic detection. Note that +* incorrect lookup results will result if a tag file is marked as sorted when +* it actually is not. The function will return TagSuccess if called on an +* open tag file or TagFailure if not. +*/ +extern tagResult tagsSetSortType (tagFile *const file, const sortType type); + +/* +* Reads the first tag in the file, if any. It is passed the handle to an +* opened tag file and a (possibly null) pointer to a structure which, if not +* null, will be populated with information about the first tag file entry. +* The function will return TagSuccess another tag entry is found, or +* TagFailure if not (i.e. it reached end of file). +*/ +extern tagResult tagsFirst (tagFile *const file, tagEntry *const entry); + +/* +* Step to the next tag in the file, if any. It is passed the handle to an +* opened tag file and a (possibly null) pointer to a structure which, if not +* null, will be populated with information about the next tag file entry. The +* function will return TagSuccess another tag entry is found, or TagFailure +* if not (i.e. it reached end of file). It will always read the first tag in +* the file immediately after calling tagsOpen(). +*/ +extern tagResult tagsNext (tagFile *const file, tagEntry *const entry); + +/* +* Retrieve the value associated with the extension field for a specified key. +* It is passed a pointer to a structure already populated with values by a +* previous call to tagsNext(), tagsFind(), or tagsFindNext(), and a string +* containing the key of the desired extension field. If no such field of the +* specified key exists, the function will return null. +*/ +extern const char *tagsField (const tagEntry *const entry, const char *const key); + +/* +* Find the first tag matching `name'. The structure pointed to by `entry' +* will be populated with information about the tag file entry. If a tag file +* is sorted using the C locale, a binary search algorithm is used to search +* the tag file, resulting in very fast tag lookups, even in huge tag files. +* Various options controlling the matches can be combined by bit-wise or-ing +* certain values together. The available values are: +* +* TAG_PARTIALMATCH +* Tags whose leading characters match `name' will qualify. +* +* TAG_FULLMATCH +* Only tags whose full lengths match `name' will qualify. +* +* TAG_IGNORECASE +* Matching will be performed in a case-insenstive manner. Note that +* this disables binary searches of the tag file. +* +* TAG_OBSERVECASE +* Matching will be performed in a case-senstive manner. Note that +* this enables binary searches of the tag file. +* +* The function will return TagSuccess if a tag matching the name is found, or +* TagFailure if not. +*/ +extern tagResult tagsFind (tagFile *const file, tagEntry *const entry, const char *const name, const int options); + +/* +* Find the next tag matching the name and options supplied to the most recent +* call to tagsFind() for the same tag file. The structure pointed to by +* `entry' will be populated with information about the tag file entry. The +* function will return TagSuccess if another tag matching the name is found, +* or TagFailure if not. +*/ +extern tagResult tagsFindNext (tagFile *const file, tagEntry *const entry); + +/* +* Call tagsTerminate() at completion of reading the tag file, which will +* close the file and free any internal memory allocated. The function will +* return TagFailure is no file is currently open, TagSuccess otherwise. +*/ +extern tagResult tagsClose (tagFile *const file); + +#ifdef __cplusplus +}; +#endif + +#endif + +/* vi:set tabstop=4 shiftwidth=4: */ diff --git a/native/v8_extensions/tags.h b/native/v8_extensions/tags.h new file mode 100644 index 000000000..27c8d977b --- /dev/null +++ b/native/v8_extensions/tags.h @@ -0,0 +1,20 @@ +#include "include/cef_base.h" +#include "include/cef_v8.h" + +namespace v8_extensions { + +class Tags : public CefV8Handler { +public: + Tags(); + + virtual bool Execute(const CefString& name, + CefRefPtr object, + const CefV8ValueList& arguments, + CefRefPtr& retval, + CefString& exception) OVERRIDE; + + // Provide the reference counting implementation for this class. + IMPLEMENT_REFCOUNTING(Tags); +}; + +} diff --git a/native/v8_extensions/tags.js b/native/v8_extensions/tags.js new file mode 100644 index 000000000..46ff72c52 --- /dev/null +++ b/native/v8_extensions/tags.js @@ -0,0 +1,7 @@ +var $tags = {}; +(function() { + + native function find(path, tag); + $tags.find = find; + +})(); diff --git a/native/v8_extensions/tags.mm b/native/v8_extensions/tags.mm new file mode 100644 index 000000000..44564f4e2 --- /dev/null +++ b/native/v8_extensions/tags.mm @@ -0,0 +1,66 @@ +#import "tags.h" +#import "readtags.h" +#import + +namespace v8_extensions { + +Tags::Tags() : CefV8Handler() { + NSString *filePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"v8_extensions/tags.js"]; + NSString *extensionCode = [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil]; + CefRegisterExtension("v8/tags", [extensionCode UTF8String], this); +} + +bool Tags::Execute(const CefString& name, + CefRefPtr object, + const CefV8ValueList& arguments, + CefRefPtr& retval, + CefString& exception) { + + if (name == "find") { + std::string path = arguments[0]->GetStringValue().ToString(); + std::string tag = arguments[1]->GetStringValue().ToString(); + tagFileInfo info; + tagFile* tagFile; + tagFile = tagsOpen(path.c_str(), &info); + if (info.status.opened) { + tagEntry entry; + std::vector> entries; + if (tagsFind(tagFile, &entry, tag.c_str(), TAG_FULLMATCH | TAG_OBSERVECASE) == TagSuccess) { + CefRefPtr tagEntry = CefV8Value::CreateObject(NULL); + tagEntry->SetValue("name", CefV8Value::CreateString(entry.name), V8_PROPERTY_ATTRIBUTE_NONE); + tagEntry->SetValue("file", CefV8Value::CreateString(entry.file), V8_PROPERTY_ATTRIBUTE_NONE); + if (entry.kind) { + tagEntry->SetValue("kind", CefV8Value::CreateString(entry.kind), V8_PROPERTY_ATTRIBUTE_NONE); + } + if (entry.address.pattern) { + tagEntry->SetValue("pattern", CefV8Value::CreateString(entry.address.pattern), V8_PROPERTY_ATTRIBUTE_NONE); + } + entries.push_back(tagEntry); + + while (tagsFindNext(tagFile, &entry) == TagSuccess) { + tagEntry = CefV8Value::CreateObject(NULL); + tagEntry->SetValue("name", CefV8Value::CreateString(entry.name), V8_PROPERTY_ATTRIBUTE_NONE); + tagEntry->SetValue("file", CefV8Value::CreateString(entry.file), V8_PROPERTY_ATTRIBUTE_NONE); + if (entry.kind) { + tagEntry->SetValue("kind", CefV8Value::CreateString(entry.kind), V8_PROPERTY_ATTRIBUTE_NONE); + } + if (entry.address.pattern) { + tagEntry->SetValue("pattern", CefV8Value::CreateString(entry.address.pattern), V8_PROPERTY_ATTRIBUTE_NONE); + } + entries.push_back(tagEntry); + } + } + + retval = CefV8Value::CreateArray(entries.size()); + for (int i = 0; i < entries.size(); i++) { + retval->SetValue(i, entries[i]); + } + tagsClose(tagFile); + } + return true; + } + + return false; +} + +} diff --git a/spec/fixtures/tagged.js b/spec/fixtures/tagged.js new file mode 100644 index 000000000..4c6debdc9 --- /dev/null +++ b/spec/fixtures/tagged.js @@ -0,0 +1,7 @@ +var thisIsCrazy = true; + +function callMeMaybe() { + return "here's my number"; +} + +var iJustMetYou = callMeMaybe() diff --git a/spec/fixtures/tags b/spec/fixtures/tags new file mode 100644 index 000000000..e9fe9e46f --- /dev/null +++ b/spec/fixtures/tags @@ -0,0 +1,7 @@ +!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ +!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ +!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ +!_TAG_PROGRAM_NAME Exuberant Ctags // +!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ +!_TAG_PROGRAM_VERSION 5.8 // +callMeMaybe tagged.js /^function callMeMaybe() {$/;" f diff --git a/src/extensions/outline-view/spec/outline-view-spec.coffee b/src/extensions/outline-view/spec/outline-view-spec.coffee index b5615e8b4..abccdfe16 100644 --- a/src/extensions/outline-view/spec/outline-view-spec.coffee +++ b/src/extensions/outline-view/spec/outline-view-spec.coffee @@ -124,3 +124,18 @@ describe "OutlineView", -> generator = new TagGenerator(path, callback) generator.generate().done -> expect(tags.length).toBe 0 + + describe "jump to declaration", -> + it "doesn't move the cursor when no declaration is found", -> + rootView.open("tagged.js") + editor = rootView.getActiveEditor() + editor.setCursorBufferPosition([0,12]) + editor.trigger 'outline-view:jump-to-declaration' + expect(editor.getCursorBufferPosition()).toEqual [0,12] + + it "moves the cursor to the declaration", -> + rootView.open("tagged.js") + editor = rootView.getActiveEditor() + editor.setCursorBufferPosition([6,24]) + editor.trigger 'outline-view:jump-to-declaration' + expect(editor.getCursorBufferPosition()).toEqual [2,0] diff --git a/src/extensions/outline-view/src/keymap.coffee b/src/extensions/outline-view/src/keymap.coffee index 330815ac9..0a3440941 100644 --- a/src/extensions/outline-view/src/keymap.coffee +++ b/src/extensions/outline-view/src/keymap.coffee @@ -1,2 +1,3 @@ window.keymap.bindKeys '.editor' 'meta-j': 'outline-view:toggle' + 'f3': 'outline-view:jump-to-declaration' diff --git a/src/extensions/outline-view/src/outline-view.coffee b/src/extensions/outline-view/src/outline-view.coffee index 54e6fd4aa..3cd4cfe6f 100644 --- a/src/extensions/outline-view/src/outline-view.coffee +++ b/src/extensions/outline-view/src/outline-view.coffee @@ -2,6 +2,8 @@ SelectList = require 'select-list' Editor = require 'editor' TagGenerator = require 'outline-view/src/tag-generator' +TagReader = require 'outline-view/src/tag-reader' +Point = require 'point' module.exports = class OutlineView extends SelectList @@ -11,6 +13,7 @@ class OutlineView extends SelectList requireStylesheet 'outline-view/src/outline-view.css' @instance = new OutlineView(rootView) rootView.command 'outline-view:toggle', => @instance.toggle() + rootView.command 'outline-view:jump-to-declaration', => @instance.jumpToDeclaration() @viewClass: -> "#{super} outline-view" @@ -50,6 +53,9 @@ class OutlineView extends SelectList confirmed : ({position, name}) -> @cancel() + @moveToPosition(position) + + moveToPosition: (position) -> editor = @rootView.getActiveEditor() editor.scrollToBufferPosition(position, center: true) editor.setCursorBufferPosition(position) @@ -62,3 +68,18 @@ class OutlineView extends SelectList attach: -> @rootView.append(this) @miniEditor.focus() + + jumpToDeclaration: -> + editor = @rootView.getActiveEditor() + matches = TagReader.find(editor) + return unless matches.length is 1 + + tag = matches[0] + return unless tag.pattern + pattern = tag.pattern.replace(/(^^\/\^)|(\$\/$)/g, '') # Remove leading /^ and trailing $/ + if pattern and @rootView.openInExistingEditor(tag.file, true, true) + buffer = editor.getBuffer() + for row in [0...buffer.getLineCount()] + continue unless pattern is buffer.lineForRow(row) + @moveToPosition(new Point(row, 0)) + break diff --git a/src/extensions/outline-view/src/tag-reader.coffee b/src/extensions/outline-view/src/tag-reader.coffee new file mode 100644 index 000000000..a0e309b32 --- /dev/null +++ b/src/extensions/outline-view/src/tag-reader.coffee @@ -0,0 +1,13 @@ +fs = require 'fs' + +module.exports = + +find: (editor) -> + word = editor.getTextInRange(editor.getCursor().getCurrentWordBufferRange()) + return [] unless word.length > 0 + + project = editor.rootView().project + tagsFile = project.resolve("tags") or project.resolve("TAGS") + return [] unless fs.isFile(tagsFile) + + $tags.find(tagsFile, word) or [] From 5f400303acd4dd821005cc04f0ae873475cd2133 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 15:23:55 -0800 Subject: [PATCH 17/23] Add ref counting to Git class --- native/v8_extensions/git.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/v8_extensions/git.h b/native/v8_extensions/git.h index bfe5619c8..e7c0b1dce 100644 --- a/native/v8_extensions/git.h +++ b/native/v8_extensions/git.h @@ -14,7 +14,7 @@ public: CefString& exception) OVERRIDE; // Provide the reference counting implementation for this class. - IMPLEMENT_REFCOUNTING(Native); + IMPLEMENT_REFCOUNTING(Git); }; } From bf32d189f3cf0768583c02f4d33eddd02e5ba60f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 15:29:22 -0800 Subject: [PATCH 18/23] Add tags file for src and native directories --- tags | 3466 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 3466 insertions(+) create mode 100644 tags diff --git a/tags b/tags new file mode 100644 index 000000000..2336715ab --- /dev/null +++ b/tags @@ -0,0 +1,3466 @@ +!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ +!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ +!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ +!_TAG_PROGRAM_NAME Exuberant Ctags // +!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ +!_TAG_PROGRAM_VERSION 5.8 // +@_handleKeyEvent src/app/window.coffee /^ @_handleKeyEvent = (e) => @keymap.handleKeyEvent(e)$/;" f +@_setSoftWrapColumn src/app/editor.coffee /^ @_setSoftWrapColumn = => @setSoftWrapColumn()$/;" f +@activate src/app/status-bar.coffee /^ @activate: (rootView) ->$/;" f +@activate src/app/text-mate-theme.coffee /^ @activate: (name) ->$/;" f +@activate src/extensions/autocomplete/src/autocomplete.coffee /^ @activate: (rootView) ->$/;" f +@activate src/extensions/command-panel/src/command-panel.coffee /^ @activate: (rootView, state) ->$/;" f +@activate src/extensions/event-palette/src/event-palette.coffee /^ @activate: (rootView) ->$/;" f +@activate src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ @activate: (rootView) ->$/;" f +@activate src/extensions/markdown-preview/src/markdown-preview.coffee /^ @activate: (rootView, state) ->$/;" f +@activate src/extensions/outline-view/src/outline-view.coffee /^ @activate: (rootView) ->$/;" f +@activate src/extensions/tabs/src/tabs.coffee /^ @activate: (rootView) ->$/;" f +@activate src/extensions/tree-view/src/tree-view.coffee /^ @activate: (rootView, state) ->$/;" f +@activate src/extensions/wrap-guide/src/wrap-guide.coffee /^ @activate: (rootView, state, config) ->$/;" f +@appendToEditorPane src/app/status-bar.coffee /^ @appendToEditorPane: (rootView, editor) ->$/;" f +@appendToEditorPane src/extensions/wrap-guide/src/wrap-guide.coffee /^ @appendToEditorPane: (rootView, editor, config) ->$/;" f +@bufferLines src/stdlib/child-process.coffee /^ @bufferLines: (callback) ->$/;" f +@classes src/app/editor.coffee /^ @classes: ({mini} = {}) ->$/;" f +@content src/app/cursor-view.coffee /^ @content: ->$/;" f +@content src/app/editor.coffee /^ @content: (params) ->$/;" f +@content src/app/gutter.coffee /^ @content: ->$/;" f +@content src/app/pane-column.coffee /^ @content: ->$/;" f +@content src/app/pane-row.coffee /^ @content: ->$/;" f +@content src/app/pane.coffee /^ @content: (wrappedView) ->$/;" f +@content src/app/root-view.coffee /^ @content: ->$/;" f +@content src/app/select-list.coffee /^ @content: ->$/;" f +@content src/app/selection-view.coffee /^ @content: ->$/;" f +@content src/app/status-bar.coffee /^ @content: ->$/;" f +@content src/extensions/autocomplete/src/autocomplete.coffee /^ @content: ->$/;" f +@content src/extensions/command-panel/src/command-panel.coffee /^ @content: (rootView) ->$/;" f +@content src/extensions/command-panel/src/preview-list.coffee /^ @content: ->$/;" f +@content src/extensions/markdown-preview/src/markdown-preview.coffee /^ @content: (rootView) ->$/;" f +@content src/extensions/tabs/src/tab.coffee /^ @content: (editSession) ->$/;" f +@content src/extensions/tabs/src/tabs.coffee /^ @content: ->$/;" f +@content src/extensions/tree-view/src/dialog.coffee /^ @content: ({prompt} = {}) ->$/;" f +@content src/extensions/tree-view/src/directory-view.coffee /^ @content: ({directory, isExpanded} = {}) ->$/;" f +@content src/extensions/tree-view/src/file-view.coffee /^ @content: (file) ->$/;" f +@content src/extensions/tree-view/src/tree-view.coffee /^ @content: (rootView) ->$/;" f +@content src/extensions/wrap-guide/src/wrap-guide.coffee /^ @content: ->$/;" f +@deactivate src/extensions/command-panel/src/command-panel.coffee /^ @deactivate: ->$/;" f +@deactivate src/extensions/tree-view/src/tree-view.coffee /^ @deactivate: () ->$/;" f +@deserialize src/app/edit-session.coffee /^ @deserialize: (state, project) ->$/;" f +@deserialize src/app/editor.coffee /^ @deserialize: (state, rootView) ->$/;" f +@deserialize src/app/pane-grid.coffee /^ @deserialize: ({children}, rootView) ->$/;" f +@deserialize src/app/pane.coffee /^ @deserialize: ({wrappedView}, rootView) ->$/;" f +@deserialize src/app/root-view.coffee /^ @deserialize: ({ projectPath, panesViewState, extensionStates, fontSize }) ->$/;" f +@deserialize src/extensions/command-panel/src/command-panel.coffee /^ @deserialize: (state, rootView) ->$/;" f +@deserialize src/extensions/tree-view/src/tree-view.coffee /^ @deserialize: (state, rootView) ->$/;" f +@exec src/stdlib/child-process.coffee /^ @exec: (command, options={}) ->$/;" f +@foldEndRegexForScope src/app/text-mate-bundle.coffee /^ @foldEndRegexForScope: (grammar, scope) ->$/;" f +@fromObject src/app/point.coffee /^ @fromObject: (object) ->$/;" f +@fromObject src/app/range.coffee /^ @fromObject: (object) ->$/;" f +@getGuideColumn src/extensions/wrap-guide/src/wrap-guide.coffee /^ @getGuideColumn = (path, defaultColumn) -> defaultColumn$/;" f +@getNames src/app/text-mate-theme.coffee /^ @getNames: ->$/;" f +@getPreferenceInScope src/app/text-mate-bundle.coffee /^ @getPreferenceInScope: (scopeSelector, preferenceName) ->$/;" f +@getTheme src/app/text-mate-theme.coffee /^ @getTheme: (name) ->$/;" f +@grammarByShebang src/app/text-mate-bundle.coffee /^ @grammarByShebang: (filePath) ->$/;" f +@grammarForFilePath src/app/text-mate-bundle.coffee /^ @grammarForFilePath: (filePath) ->$/;" f +@grammarForScopeName src/app/text-mate-bundle.coffee /^ @grammarForScopeName: (scopeName) ->$/;" f +@indentRegexForScope src/app/text-mate-bundle.coffee /^ @indentRegexForScope: (scope) ->$/;" f +@lineCommentStringForScope src/app/text-mate-bundle.coffee /^ @lineCommentStringForScope: (scope) ->$/;" f +@load src/app/text-mate-theme.coffee /^ @load: (path) ->$/;" f +@loadAll src/app/text-mate-bundle.coffee /^ @loadAll: ->$/;" f +@loadAll src/app/text-mate-theme.coffee /^ @loadAll: ->$/;" f +@loadFromPath src/app/text-mate-grammar.coffee /^ @loadFromPath: (path) ->$/;" f +@moveToTrash src/stdlib/native.coffee /^ @moveToTrash: (args...) -> $native.moveToTrash(args...)$/;" f +@outdentRegexForScope src/app/text-mate-bundle.coffee /^ @outdentRegexForScope: (scope) ->$/;" f +@prependToEditorPane src/extensions/tabs/src/tabs.coffee /^ @prependToEditorPane: (rootView, editor) ->$/;" f +@registerBundle src/app/text-mate-bundle.coffee /^ @registerBundle: (bundle)->$/;" f +@registerTheme src/app/text-mate-theme.coffee /^ @registerTheme: (theme) ->$/;" f +@reload src/stdlib/native.coffee /^ @reload: -> $native.reload()$/;" f +@serialize src/extensions/command-panel/src/command-panel.coffee /^ @serialize: ->$/;" f +@serialize src/extensions/tree-view/src/tree-view.coffee /^ @serialize: ->$/;" f +@setup src/stdlib/watcher.coffee /^ @setup: ->$/;" f +@unwatch src/stdlib/watcher.coffee /^ @unwatch: (path, callback=null) ->$/;" f +@viewClass src/app/select-list.coffee /^ @viewClass: -> 'select-list'$/;" f +@viewClass src/extensions/event-palette/src/event-palette.coffee /^ @viewClass: ->$/;" f +@viewClass src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ @viewClass: ->$/;" f +@viewClass src/extensions/outline-view/src/outline-view.coffee /^ @viewClass: -> "#{super} outline-view"$/;" f +@watch src/stdlib/watcher.coffee /^ @watch: (path, callback) ->$/;" f +@watcher_receivedNotification_forPath src/stdlib/watcher.coffee /^ @watcher_receivedNotification_forPath = (queue, notification, path) =>$/;" f +ASSERT native/linux/util.h /^#define ASSERT(/;" d +ATOM_APP_H_ native/linux/atom_app.h /^#define ATOM_APP_H_$/;" d +ATOM_CEF_APP_H_ native/atom_cef_app.h /^#define ATOM_CEF_APP_H_$/;" d +ATOM_CEF_CLIENT_H_ native/atom_cef_client.h /^#define ATOM_CEF_CLIENT_H_$/;" d +ATOM_CEF_CLIENT_H_ native/message_translation.h /^#define ATOM_CEF_CLIENT_H_$/;" d +ATOM_CEF_RENDER_PROCESS_HANDLER_H_ native/atom_cef_render_process_handler.h /^#define ATOM_CEF_RENDER_PROCESS_HANDLER_H_$/;" d +About native/atom_win.cpp /^INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) {$/;" f +Absolute native/v8_extensions/native_linux.cpp /^void NativeHandler::Absolute(const CefString& name,$/;" f class:v8_extensions::NativeHandler +Accelerated2DCanvasActivated native/atom_gtk.cpp /^gboolean Accelerated2DCanvasActivated(GtkWidget* widget) {$/;" f +AcceleratedLayersActivated native/atom_gtk.cpp /^gboolean AcceleratedLayersActivated(GtkWidget* widget) {$/;" f +AddMenuEntry native/atom_gtk.cpp /^GtkWidget* AddMenuEntry(GtkWidget* menu_widget, const char* text,$/;" f +Alert native/v8_extensions/native_linux.cpp /^void NativeHandler::Alert(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +AppGetSettings native/linux/atom_app.cpp /^void AppGetSettings(CefSettings& settings, CefRefPtr& app) {$/;" f +AppGetWorkingDirectory native/atom_gtk.cpp /^std::string AppGetWorkingDirectory() {$/;" f +AppGetWorkingDirectory native/atom_win.cpp /^std::string AppGetWorkingDirectory() {$/;" f +AppGetWorkingDirectory native/linux/atom_app.cpp /^string AppGetWorkingDirectory() {$/;" f +AppPath native/linux/atom_app.cpp /^string AppPath() {$/;" f +AsyncList native/v8_extensions/native_linux.cpp /^void NativeHandler::AsyncList(const CefString& name,$/;" f class:v8_extensions::NativeHandler +Atom native/v8_extensions/atom.h /^ class Atom : public CefV8Handler {$/;" c namespace:v8_extensions +Atom native/v8_extensions/atom.mm /^ Atom::Atom() : CefV8Handler() {$/;" f class:v8_extensions::Atom +Atom native/v8_extensions/atom_linux.cpp /^Atom::Atom() :$/;" f class:v8_extensions::Atom +AtomCefApp native/atom_cef_app.h /^class AtomCefApp : public CefApp {$/;" c +AtomCefClient native/atom_cef_client.cpp /^AtomCefClient::AtomCefClient(){$/;" f class:AtomCefClient +AtomCefClient native/atom_cef_client.cpp /^AtomCefClient::AtomCefClient(bool handlePasteboardCommands) {$/;" f class:AtomCefClient +AtomCefClient native/atom_cef_client.h /^class AtomCefClient : public CefClient,$/;" c +AtomCefRenderProcessHandler native/atom_cef_render_process_handler.h /^class AtomCefRenderProcessHandler : public CefRenderProcessHandler {$/;" c +BUFFER_SIZE native/linux/io_utils.cpp /^#define BUFFER_SIZE /;" d file: +BUFFER_SIZE native/v8_extensions/native_linux.cpp /^#define BUFFER_SIZE /;" d file: +BUTTON_WIDTH native/atom_win.cpp /^#define BUTTON_WIDTH /;" d file: +BackButtonClicked native/atom_gtk.cpp /^void BackButtonClicked(GtkButton* button) {$/;" f +BeginTracing native/atom_cef_client.cpp /^void AtomCefClient::BeginTracing() {$/;" f class:AtomCefClient +BindingActivated native/atom_gtk.cpp /^gboolean BindingActivated(GtkWidget* widget) {$/;" f +BuildCaptureIndices native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr BuildCaptureIndices(OnigRegion *region) {$/;" f class:v8_extensions::OnigRegexpUserData +CLIENT_HANDLER_H_ native/linux/client_handler.h /^#define CLIENT_HANDLER_H_$/;" d +CallMessageReceivedHandler native/atom_cef_render_process_handler.mm /^bool AtomCefRenderProcessHandler::CallMessageReceivedHandler(CefRefPtr context, CefRefPtr message) {$/;" f class:AtomCefRenderProcessHandler +CallMessageReceivedHandler native/linux/atom_cef_render_process_handler.cpp /^bool AtomCefRenderProcessHandler::CallMessageReceivedHandler($/;" f class:AtomCefRenderProcessHandler +CallbackContext native/v8_extensions/native_linux.h /^struct CallbackContext {$/;" s namespace:v8_extensions +CaptureCount native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr CaptureCount() {$/;" f class:v8_extensions::OnigRegexpUserData +CaptureIndicesForMatch native/v8_extensions/onig_scanner.mm /^ CefRefPtr CaptureIndicesForMatch(OnigResult *result) {$/;" f class:v8_extensions::OnigScannerUserData +CheckoutHead native/v8_extensions/git.mm /^ CefRefPtr CheckoutHead(const char *path) {$/;" f class:v8_extensions::GitRepository +ClearCachedResults native/v8_extensions/onig_scanner.mm /^ void ClearCachedResults() {$/;" f class:v8_extensions::OnigScannerUserData +ClientHandler native/linux/client_handler.cpp /^ClientHandler::ClientHandler() :$/;" f class:ClientHandler +ClientHandler native/linux/client_handler.h /^class ClientHandler: public CefClient,$/;" c +CloseMainWindow native/atom_cef_client_gtk.cpp /^void ClientHandler::CloseMainWindow() {$/;" f class:ClientHandler +CloseMainWindow native/atom_cef_client_win.mm /^void ClientHandler::CloseMainWindow() {$/;" f class:ClientHandler +CloseMainWindow native/linux/client_handler.cpp /^void ClientHandler::CloseMainWindow() {$/;" f class:ClientHandler +Confirm native/atom_cef_client_mac.mm /^void AtomCefClient::Confirm(int replyId,$/;" f class:AtomCefClient +CreateMenu native/atom_gtk.cpp /^GtkWidget* CreateMenu(GtkWidget* menu_bar, const char* text) {$/;" f +CreateMenuBar native/atom_gtk.cpp /^GtkWidget* CreateMenuBar() {$/;" f +CreateReplyDescriptor native/atom_cef_client_mac.mm /^CefRefPtr AtomCefClient::CreateReplyDescriptor(int replyId, int callbackIndex) {$/;" f class:AtomCefClient +DOMAccessActivated native/atom_gtk.cpp /^gboolean DOMAccessActivated(GtkWidget* widget) {$/;" f +DeleteContents native/v8_extensions/native_linux.cpp /^void DeleteContents(string path) {$/;" f namespace:v8_extensions +Digest native/v8_extensions/native_linux.cpp /^void NativeHandler::Digest(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +DoClose native/linux/client_handler.cpp /^bool ClientHandler::DoClose(CefRefPtr browser) {$/;" f class:ClientHandler +EmptyString native/v8_extensions/readtags.c /^const char *const EmptyString = "";$/;" v +EndTracing native/atom_cef_client.cpp /^void AtomCefClient::EndTracing() {$/;" f class:AtomCefClient +Execute native/v8_extensions/atom.mm /^ bool Atom::Execute(const CefString& name,$/;" f class:v8_extensions::Atom +Execute native/v8_extensions/atom_linux.cpp /^bool Atom::Execute(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::Atom +Execute native/v8_extensions/git.mm /^bool Git::Execute(const CefString& name,$/;" f class:v8_extensions::Git +Execute native/v8_extensions/native.mm /^bool Native::Execute(const CefString& name,$/;" f class:v8_extensions::Native +Execute native/v8_extensions/native_linux.cpp /^bool NativeHandler::Execute(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +Execute native/v8_extensions/onig_reg_exp.mm /^bool OnigRegExp::Execute(const CefString& name,$/;" f class:v8_extensions::OnigRegExp +Execute native/v8_extensions/onig_reg_exp_linux.cpp /^bool OnigRegExp::Execute(const CefString& name,$/;" f class:v8_extensions::OnigRegExp +Execute native/v8_extensions/onig_scanner.mm /^bool OnigScanner::Execute(const CefString& name,$/;" f class:v8_extensions::OnigScanner +Execute native/v8_extensions/tags.mm /^bool Tags::Execute(const CefString& name,$/;" f class:v8_extensions::Tags +ExecuteWatchCallback native/v8_extensions/native_linux.cpp /^void ExecuteWatchCallback(NotifyContext notifyContext) {$/;" f namespace:v8_extensions +Exists native/v8_extensions/native_linux.cpp /^void NativeHandler::Exists(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +Exit native/atom_cef_client_mac.mm /^void AtomCefClient::Exit(int status) {$/;" f class:AtomCefClient +FindNextMatch native/v8_extensions/onig_scanner.mm /^ CefRefPtr FindNextMatch(CefRefPtr v8String, CefRefPtr v8StartLocation) {$/;" f class:v8_extensions::OnigScannerUserData +FocusNextWindow native/atom_cef_client_mac.mm /^void AtomCefClient::FocusNextWindow() {$/;" f class:AtomCefClient +ForwardButtonClicked native/atom_gtk.cpp /^void ForwardButtonClicked(GtkButton* button) {$/;" f +GetBrowser native/atom_cef_client.h /^ CefRefPtr GetBrowser() { return m_Browser; }$/;" f class:AtomCefClient +GetBrowser native/linux/client_handler.h /^ CefRefPtr GetBrowser() {$/;" f class:ClientHandler +GetBrowserHwnd native/linux/client_handler.h /^ CefWindowHandle GetBrowserHwnd() {$/;" f class:ClientHandler +GetCaptureIndices native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr GetCaptureIndices(CefRefPtr argument,$/;" f class:v8_extensions::OnigRegexpUserData +GetDownloadPath native/atom_cef_client_gtk.cpp /^std::string ClientHandler::GetDownloadPath(const std::string& file_name) {$/;" f class:ClientHandler +GetDownloadPath native/atom_cef_client_win.mm /^std::string ClientHandler::GetDownloadPath(const std::string& file_name) {$/;" f class:ClientHandler +GetHead native/v8_extensions/git.mm /^ CefRefPtr GetHead() {$/;" f class:v8_extensions::GitRepository +GetJSDialogHandler native/atom_cef_client.h /^ virtual CefRefPtr GetJSDialogHandler() {$/;" f class:AtomCefClient +GetMainHwnd native/linux/client_handler.h /^ CefWindowHandle GetMainHwnd() {$/;" f class:ClientHandler +GetPath native/v8_extensions/git.mm /^ CefRefPtr GetPath() {$/;" f class:v8_extensions::GitRepository +GetSourceActivated native/atom_gtk.cpp /^gboolean GetSourceActivated(GtkWidget* widget) {$/;" f +GetStatus native/v8_extensions/git.mm /^ CefRefPtr GetStatus(const char *path) {$/;" f class:v8_extensions::GitRepository +GetTextActivated native/atom_gtk.cpp /^gboolean GetTextActivated(GtkWidget* widget) {$/;" f +Git native/v8_extensions/git.h /^class Git : public CefV8Handler {$/;" c namespace:v8_extensions +Git native/v8_extensions/git.mm /^Git::Git() : CefV8Handler() {$/;" f class:v8_extensions::Git +GitRepository native/v8_extensions/git.js /^ function GitRepository(path) {$/;" f +GitRepository native/v8_extensions/git.js /^ }$/;" c +GitRepository native/v8_extensions/git.mm /^ GitRepository(const char *pathInRepo) {$/;" f class:v8_extensions::GitRepository +GitRepository native/v8_extensions/git.mm /^class GitRepository : public CefBase {$/;" c namespace:v8_extensions file: +GitRepository.checkoutHead native/v8_extensions/git.js /^ GitRepository.prototype.checkoutHead = checkoutHead;$/;" m +GitRepository.getHead native/v8_extensions/git.js /^ GitRepository.prototype.getHead = getHead;$/;" m +GitRepository.getPath native/v8_extensions/git.js /^ GitRepository.prototype.getPath = getPath;$/;" m +GitRepository.getStatus native/v8_extensions/git.js /^ GitRepository.prototype.getStatus = getStatus;$/;" m +GitRepository.isIgnored native/v8_extensions/git.js /^ GitRepository.prototype.isIgnored = isIgnored;$/;" m +HAVE_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define HAVE_PROTOTYPES /;" d +HAVE_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define HAVE_PROTOTYPES /;" d +HAVE_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define HAVE_PROTOTYPES /;" d +HAVE_STDARG_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define HAVE_STDARG_PROTOTYPES /;" d +HAVE_STDARG_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define HAVE_STDARG_PROTOTYPES /;" d +HAVE_STDARG_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define HAVE_STDARG_PROTOTYPES /;" d +HTML5DragDropActivated native/atom_gtk.cpp /^gboolean HTML5DragDropActivated(GtkWidget* widget) {$/;" f +HTML5VideoActivated native/atom_gtk.cpp /^gboolean HTML5VideoActivated(GtkWidget* widget) {$/;" f +HandleFocus native/atom_gtk.cpp /^static gboolean HandleFocus(GtkWidget* widget,$/;" f file: +HandleFocus native/linux/atom_app.cpp /^static gboolean HandleFocus(GtkWidget* widget, GdkEventFocus* focus) {$/;" f file: +INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR /;" d +INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR /;" d +INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR /;" d +IO_UTILS_H_ native/linux/io_utils.h /^#define IO_UTILS_H_$/;" d +InitInstance native/atom_win.cpp /^BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {$/;" f +IsDirectory native/v8_extensions/native_linux.cpp /^void NativeHandler::IsDirectory(const CefString& name,$/;" f class:v8_extensions::NativeHandler +IsFile native/v8_extensions/native_linux.cpp /^void NativeHandler::IsFile(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +IsIgnored native/v8_extensions/git.mm /^ CefRefPtr IsIgnored(const char *path) {$/;" f class:v8_extensions::GitRepository +JUMP_BACK native/v8_extensions/readtags.c /^#define JUMP_BACK /;" d file: +LastModified native/v8_extensions/native_linux.cpp /^void NativeHandler::LastModified(const CefString& name,$/;" f class:v8_extensions::NativeHandler +List native/v8_extensions/native_linux.cpp /^void NativeHandler::List(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +ListDirectory native/v8_extensions/native_linux.cpp /^void ListDirectory(string path, vector* paths, bool recursive) {$/;" f namespace:v8_extensions +LocalStorageActivated native/atom_gtk.cpp /^gboolean LocalStorageActivated(GtkWidget* widget) {$/;" f +Log native/atom_cef_client_mac.mm /^void AtomCefClient::Log(const char *message) {$/;" f class:AtomCefClient +MAX_LOADSTRING native/atom_win.cpp /^#define MAX_LOADSTRING /;" d file: +MAX_URL_LENGTH native/atom_win.cpp /^#define MAX_URL_LENGTH /;" d file: +MakeDirectory native/v8_extensions/native_linux.cpp /^void NativeHandler::MakeDirectory(const CefString& name,$/;" f class:v8_extensions::NativeHandler +ModifyZoom native/atom_win.cpp /^static void ModifyZoom(CefRefPtr browser, double delta) {$/;" f file: +Move native/v8_extensions/native_linux.cpp /^void NativeHandler::Move(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +MyRegisterClass native/atom_win.cpp /^ATOM MyRegisterClass(HINSTANCE hInstance) {$/;" f +NATIVE_LINUX_H_ native/v8_extensions/native_linux.h /^#define NATIVE_LINUX_H_$/;" d +NOTIFY_CONSOLE_MESSAGE native/linux/client_handler.h /^ NOTIFY_CONSOLE_MESSAGE$/;" e enum:ClientHandler::NotificationType +Native native/v8_extensions/native.h /^class Native : public CefV8Handler {$/;" c namespace:v8_extensions +Native native/v8_extensions/native.mm /^Native::Native() : CefV8Handler() {$/;" f class:v8_extensions::Native +NativeHandler native/v8_extensions/native_linux.cpp /^NativeHandler::NativeHandler() :$/;" f class:v8_extensions::NativeHandler +NativeHandler native/v8_extensions/native_linux.h /^class NativeHandler: public CefV8Handler {$/;" c namespace:v8_extensions +NewWindow native/atom_cef_client_mac.mm /^void AtomCefClient::NewWindow() {$/;" f class:AtomCefClient +NotificationType native/linux/client_handler.h /^ enum NotificationType {$/;" g class:ClientHandler +NotifyContext native/v8_extensions/native_linux.h /^struct NotifyContext {$/;" s namespace:v8_extensions +NotifyWatchers native/v8_extensions/native_linux.cpp /^void NativeHandler::NotifyWatchers() {$/;" f class:v8_extensions::NativeHandler +NotifyWatchersCallback native/v8_extensions/native_linux.cpp /^void *NotifyWatchersCallback(void* pointer) {$/;" f namespace:v8_extensions +ONIGENC_APPLY_ALL_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_APPLY_ALL_CASE_FOLD(/;" d +ONIGENC_APPLY_ALL_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_APPLY_ALL_CASE_FOLD(/;" d +ONIGENC_APPLY_ALL_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_APPLY_ALL_CASE_FOLD(/;" d +ONIGENC_CASE_FOLD_DEFAULT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_DEFAULT /;" d +ONIGENC_CASE_FOLD_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_DEFAULT /;" d +ONIGENC_CASE_FOLD_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_DEFAULT /;" d +ONIGENC_CASE_FOLD_MIN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_MIN /;" d +ONIGENC_CASE_FOLD_MIN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_MIN /;" d +ONIGENC_CASE_FOLD_MIN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_MIN /;" d +ONIGENC_CASE_FOLD_TURKISH_AZERI native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_TURKISH_AZERI /;" d +ONIGENC_CASE_FOLD_TURKISH_AZERI native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_TURKISH_AZERI /;" d +ONIGENC_CASE_FOLD_TURKISH_AZERI native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_TURKISH_AZERI /;" d +ONIGENC_CODE_RANGE_FROM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_FROM(/;" d +ONIGENC_CODE_RANGE_FROM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_FROM(/;" d +ONIGENC_CODE_RANGE_FROM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_FROM(/;" d +ONIGENC_CODE_RANGE_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_NUM(/;" d +ONIGENC_CODE_RANGE_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_NUM(/;" d +ONIGENC_CODE_RANGE_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_NUM(/;" d +ONIGENC_CODE_RANGE_TO native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_TO(/;" d +ONIGENC_CODE_RANGE_TO native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_TO(/;" d +ONIGENC_CODE_RANGE_TO native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_TO(/;" d +ONIGENC_CODE_TO_MBC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC(/;" d +ONIGENC_CODE_TO_MBC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC(/;" d +ONIGENC_CODE_TO_MBC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC(/;" d +ONIGENC_CODE_TO_MBCLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBCLEN(/;" d +ONIGENC_CODE_TO_MBCLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBCLEN(/;" d +ONIGENC_CODE_TO_MBCLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBCLEN(/;" d +ONIGENC_CODE_TO_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC_MAXLEN /;" d +ONIGENC_CODE_TO_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC_MAXLEN /;" d +ONIGENC_CODE_TO_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC_MAXLEN /;" d +ONIGENC_CTYPE_ALNUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALNUM /;" d +ONIGENC_CTYPE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALNUM /;" d +ONIGENC_CTYPE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALNUM /;" d +ONIGENC_CTYPE_ALPHA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALPHA /;" d +ONIGENC_CTYPE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALPHA /;" d +ONIGENC_CTYPE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALPHA /;" d +ONIGENC_CTYPE_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ASCII /;" d +ONIGENC_CTYPE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ASCII /;" d +ONIGENC_CTYPE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ASCII /;" d +ONIGENC_CTYPE_BLANK native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_BLANK /;" d +ONIGENC_CTYPE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_BLANK /;" d +ONIGENC_CTYPE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_BLANK /;" d +ONIGENC_CTYPE_CNTRL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_CNTRL /;" d +ONIGENC_CTYPE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_CNTRL /;" d +ONIGENC_CTYPE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_CNTRL /;" d +ONIGENC_CTYPE_DIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_DIGIT /;" d +ONIGENC_CTYPE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_DIGIT /;" d +ONIGENC_CTYPE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_DIGIT /;" d +ONIGENC_CTYPE_GRAPH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_GRAPH /;" d +ONIGENC_CTYPE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_GRAPH /;" d +ONIGENC_CTYPE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_GRAPH /;" d +ONIGENC_CTYPE_LOWER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_LOWER /;" d +ONIGENC_CTYPE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_LOWER /;" d +ONIGENC_CTYPE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_LOWER /;" d +ONIGENC_CTYPE_NEWLINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_NEWLINE /;" d +ONIGENC_CTYPE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_NEWLINE /;" d +ONIGENC_CTYPE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_NEWLINE /;" d +ONIGENC_CTYPE_PRINT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PRINT /;" d +ONIGENC_CTYPE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PRINT /;" d +ONIGENC_CTYPE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PRINT /;" d +ONIGENC_CTYPE_PUNCT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PUNCT /;" d +ONIGENC_CTYPE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PUNCT /;" d +ONIGENC_CTYPE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PUNCT /;" d +ONIGENC_CTYPE_SPACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_SPACE /;" d +ONIGENC_CTYPE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_SPACE /;" d +ONIGENC_CTYPE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_SPACE /;" d +ONIGENC_CTYPE_UPPER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_UPPER /;" d +ONIGENC_CTYPE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_UPPER /;" d +ONIGENC_CTYPE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_UPPER /;" d +ONIGENC_CTYPE_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_WORD /;" d +ONIGENC_CTYPE_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_WORD /;" d +ONIGENC_CTYPE_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_WORD /;" d +ONIGENC_CTYPE_XDIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_XDIGIT /;" d +ONIGENC_CTYPE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_XDIGIT /;" d +ONIGENC_CTYPE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_XDIGIT /;" d +ONIGENC_GET_CASE_FOLD_CODES_BY_STR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(/;" d +ONIGENC_GET_CASE_FOLD_CODES_BY_STR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(/;" d +ONIGENC_GET_CASE_FOLD_CODES_BY_STR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(/;" d +ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM /;" d +ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM /;" d +ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM /;" d +ONIGENC_GET_CTYPE_CODE_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_GET_CTYPE_CODE_RANGE(/;" d +ONIGENC_GET_CTYPE_CODE_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_GET_CTYPE_CODE_RANGE(/;" d +ONIGENC_GET_CTYPE_CODE_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_GET_CTYPE_CODE_RANGE(/;" d +ONIGENC_IS_ALLOWED_REVERSE_MATCH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(/;" d +ONIGENC_IS_ALLOWED_REVERSE_MATCH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(/;" d +ONIGENC_IS_ALLOWED_REVERSE_MATCH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(/;" d +ONIGENC_IS_CODE_ALNUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALNUM(/;" d +ONIGENC_IS_CODE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALNUM(/;" d +ONIGENC_IS_CODE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALNUM(/;" d +ONIGENC_IS_CODE_ALPHA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALPHA(/;" d +ONIGENC_IS_CODE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALPHA(/;" d +ONIGENC_IS_CODE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALPHA(/;" d +ONIGENC_IS_CODE_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ASCII(/;" d +ONIGENC_IS_CODE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ASCII(/;" d +ONIGENC_IS_CODE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ASCII(/;" d +ONIGENC_IS_CODE_BLANK native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_BLANK(/;" d +ONIGENC_IS_CODE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_BLANK(/;" d +ONIGENC_IS_CODE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_BLANK(/;" d +ONIGENC_IS_CODE_CNTRL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CNTRL(/;" d +ONIGENC_IS_CODE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CNTRL(/;" d +ONIGENC_IS_CODE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CNTRL(/;" d +ONIGENC_IS_CODE_CTYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CTYPE(/;" d +ONIGENC_IS_CODE_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CTYPE(/;" d +ONIGENC_IS_CODE_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CTYPE(/;" d +ONIGENC_IS_CODE_DIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_DIGIT(/;" d +ONIGENC_IS_CODE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_DIGIT(/;" d +ONIGENC_IS_CODE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_DIGIT(/;" d +ONIGENC_IS_CODE_GRAPH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_GRAPH(/;" d +ONIGENC_IS_CODE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_GRAPH(/;" d +ONIGENC_IS_CODE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_GRAPH(/;" d +ONIGENC_IS_CODE_LOWER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_LOWER(/;" d +ONIGENC_IS_CODE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_LOWER(/;" d +ONIGENC_IS_CODE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_LOWER(/;" d +ONIGENC_IS_CODE_NEWLINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_NEWLINE(/;" d +ONIGENC_IS_CODE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_NEWLINE(/;" d +ONIGENC_IS_CODE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_NEWLINE(/;" d +ONIGENC_IS_CODE_PRINT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PRINT(/;" d +ONIGENC_IS_CODE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PRINT(/;" d +ONIGENC_IS_CODE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PRINT(/;" d +ONIGENC_IS_CODE_PUNCT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PUNCT(/;" d +ONIGENC_IS_CODE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PUNCT(/;" d +ONIGENC_IS_CODE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PUNCT(/;" d +ONIGENC_IS_CODE_SPACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_SPACE(/;" d +ONIGENC_IS_CODE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_SPACE(/;" d +ONIGENC_IS_CODE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_SPACE(/;" d +ONIGENC_IS_CODE_UPPER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_UPPER(/;" d +ONIGENC_IS_CODE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_UPPER(/;" d +ONIGENC_IS_CODE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_UPPER(/;" d +ONIGENC_IS_CODE_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_WORD(/;" d +ONIGENC_IS_CODE_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_WORD(/;" d +ONIGENC_IS_CODE_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_WORD(/;" d +ONIGENC_IS_CODE_XDIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_XDIGIT(/;" d +ONIGENC_IS_CODE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_XDIGIT(/;" d +ONIGENC_IS_CODE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_XDIGIT(/;" d +ONIGENC_IS_MBC_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_ASCII(/;" d +ONIGENC_IS_MBC_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_ASCII(/;" d +ONIGENC_IS_MBC_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_ASCII(/;" d +ONIGENC_IS_MBC_HEAD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_HEAD(/;" d +ONIGENC_IS_MBC_HEAD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_HEAD(/;" d +ONIGENC_IS_MBC_HEAD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_HEAD(/;" d +ONIGENC_IS_MBC_NEWLINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_NEWLINE(/;" d +ONIGENC_IS_MBC_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_NEWLINE(/;" d +ONIGENC_IS_MBC_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_NEWLINE(/;" d +ONIGENC_IS_MBC_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_WORD(/;" d +ONIGENC_IS_MBC_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_WORD(/;" d +ONIGENC_IS_MBC_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_WORD(/;" d +ONIGENC_IS_SINGLEBYTE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_SINGLEBYTE(/;" d +ONIGENC_IS_SINGLEBYTE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_SINGLEBYTE(/;" d +ONIGENC_IS_SINGLEBYTE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_SINGLEBYTE(/;" d +ONIGENC_IS_UNDEF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_UNDEF(/;" d +ONIGENC_IS_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_UNDEF(/;" d +ONIGENC_IS_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_UNDEF(/;" d +ONIGENC_LEFT_ADJUST_CHAR_HEAD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(/;" d +ONIGENC_LEFT_ADJUST_CHAR_HEAD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(/;" d +ONIGENC_LEFT_ADJUST_CHAR_HEAD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(/;" d +ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN /;" d +ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN /;" d +ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN /;" d +ONIGENC_MAX_STD_CTYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MAX_STD_CTYPE /;" d +ONIGENC_MAX_STD_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MAX_STD_CTYPE /;" d +ONIGENC_MAX_STD_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MAX_STD_CTYPE /;" d +ONIGENC_MBC_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD(/;" d +ONIGENC_MBC_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD(/;" d +ONIGENC_MBC_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD(/;" d +ONIGENC_MBC_CASE_FOLD_MAXLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD_MAXLEN /;" d +ONIGENC_MBC_CASE_FOLD_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD_MAXLEN /;" d +ONIGENC_MBC_CASE_FOLD_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD_MAXLEN /;" d +ONIGENC_MBC_ENC_LEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_ENC_LEN(/;" d +ONIGENC_MBC_ENC_LEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_ENC_LEN(/;" d +ONIGENC_MBC_ENC_LEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_ENC_LEN(/;" d +ONIGENC_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN(/;" d +ONIGENC_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN(/;" d +ONIGENC_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN(/;" d +ONIGENC_MBC_MAXLEN_DIST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN_DIST(/;" d +ONIGENC_MBC_MAXLEN_DIST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN_DIST(/;" d +ONIGENC_MBC_MAXLEN_DIST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN_DIST(/;" d +ONIGENC_MBC_MINLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_MINLEN(/;" d +ONIGENC_MBC_MINLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_MINLEN(/;" d +ONIGENC_MBC_MINLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_MINLEN(/;" d +ONIGENC_MBC_TO_CODE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_TO_CODE(/;" d +ONIGENC_MBC_TO_CODE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_TO_CODE(/;" d +ONIGENC_MBC_TO_CODE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_TO_CODE(/;" d +ONIGENC_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_NAME(/;" d +ONIGENC_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_NAME(/;" d +ONIGENC_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_NAME(/;" d +ONIGENC_PROPERTY_NAME_TO_CTYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_PROPERTY_NAME_TO_CTYPE(/;" d +ONIGENC_PROPERTY_NAME_TO_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_PROPERTY_NAME_TO_CTYPE(/;" d +ONIGENC_PROPERTY_NAME_TO_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_PROPERTY_NAME_TO_CTYPE(/;" d +ONIGENC_STEP_BACK native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_STEP_BACK(/;" d +ONIGENC_STEP_BACK native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_STEP_BACK(/;" d +ONIGENC_STEP_BACK native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_STEP_BACK(/;" d +ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE /;" d +ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE /;" d +ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE /;" d +ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE /;" d +ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE /;" d +ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE /;" d +ONIGERR_CONTROL_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_CONTROL_CODE_SYNTAX /;" d +ONIGERR_CONTROL_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_CONTROL_CODE_SYNTAX /;" d +ONIGERR_CONTROL_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_CONTROL_CODE_SYNTAX /;" d +ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED /;" d +ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED /;" d +ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED /;" d +ONIGERR_EMPTY_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_EMPTY_CHAR_CLASS /;" d +ONIGERR_EMPTY_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_EMPTY_CHAR_CLASS /;" d +ONIGERR_EMPTY_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_EMPTY_CHAR_CLASS /;" d +ONIGERR_EMPTY_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_EMPTY_GROUP_NAME /;" d +ONIGERR_EMPTY_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_EMPTY_GROUP_NAME /;" d +ONIGERR_EMPTY_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_EMPTY_GROUP_NAME /;" d +ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS /;" d +ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS /;" d +ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS /;" d +ONIGERR_END_PATTERN_AT_CONTROL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_CONTROL /;" d +ONIGERR_END_PATTERN_AT_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_CONTROL /;" d +ONIGERR_END_PATTERN_AT_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_CONTROL /;" d +ONIGERR_END_PATTERN_AT_ESCAPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_ESCAPE /;" d +ONIGERR_END_PATTERN_AT_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_ESCAPE /;" d +ONIGERR_END_PATTERN_AT_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_ESCAPE /;" d +ONIGERR_END_PATTERN_AT_LEFT_BRACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACE /;" d +ONIGERR_END_PATTERN_AT_LEFT_BRACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACE /;" d +ONIGERR_END_PATTERN_AT_LEFT_BRACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACE /;" d +ONIGERR_END_PATTERN_AT_LEFT_BRACKET native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET /;" d +ONIGERR_END_PATTERN_AT_LEFT_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET /;" d +ONIGERR_END_PATTERN_AT_LEFT_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET /;" d +ONIGERR_END_PATTERN_AT_META native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_META /;" d +ONIGERR_END_PATTERN_AT_META native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_META /;" d +ONIGERR_END_PATTERN_AT_META native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_META /;" d +ONIGERR_END_PATTERN_IN_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_IN_GROUP /;" d +ONIGERR_END_PATTERN_IN_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_IN_GROUP /;" d +ONIGERR_END_PATTERN_IN_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_IN_GROUP /;" d +ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS /;" d +ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS /;" d +ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS /;" d +ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY /;" d +ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY /;" d +ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY /;" d +ONIGERR_INVALID_ARGUMENT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_ARGUMENT /;" d +ONIGERR_INVALID_ARGUMENT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_ARGUMENT /;" d +ONIGERR_INVALID_ARGUMENT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_ARGUMENT /;" d +ONIGERR_INVALID_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_BACKREF /;" d +ONIGERR_INVALID_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_BACKREF /;" d +ONIGERR_INVALID_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_BACKREF /;" d +ONIGERR_INVALID_CHAR_IN_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME /;" d +ONIGERR_INVALID_CHAR_IN_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME /;" d +ONIGERR_INVALID_CHAR_IN_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME /;" d +ONIGERR_INVALID_CHAR_PROPERTY_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_PROPERTY_NAME /;" d +ONIGERR_INVALID_CHAR_PROPERTY_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_PROPERTY_NAME /;" d +ONIGERR_INVALID_CHAR_PROPERTY_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_PROPERTY_NAME /;" d +ONIGERR_INVALID_CODE_POINT_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_CODE_POINT_VALUE /;" d +ONIGERR_INVALID_CODE_POINT_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_CODE_POINT_VALUE /;" d +ONIGERR_INVALID_CODE_POINT_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_CODE_POINT_VALUE /;" d +ONIGERR_INVALID_COMBINATION_OF_OPTIONS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS /;" d +ONIGERR_INVALID_COMBINATION_OF_OPTIONS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS /;" d +ONIGERR_INVALID_COMBINATION_OF_OPTIONS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS /;" d +ONIGERR_INVALID_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_GROUP_NAME /;" d +ONIGERR_INVALID_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_GROUP_NAME /;" d +ONIGERR_INVALID_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_GROUP_NAME /;" d +ONIGERR_INVALID_LOOK_BEHIND_PATTERN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN /;" d +ONIGERR_INVALID_LOOK_BEHIND_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN /;" d +ONIGERR_INVALID_LOOK_BEHIND_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN /;" d +ONIGERR_INVALID_POSIX_BRACKET_TYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_POSIX_BRACKET_TYPE /;" d +ONIGERR_INVALID_POSIX_BRACKET_TYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_POSIX_BRACKET_TYPE /;" d +ONIGERR_INVALID_POSIX_BRACKET_TYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_POSIX_BRACKET_TYPE /;" d +ONIGERR_INVALID_REPEAT_RANGE_PATTERN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN /;" d +ONIGERR_INVALID_REPEAT_RANGE_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN /;" d +ONIGERR_INVALID_REPEAT_RANGE_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN /;" d +ONIGERR_INVALID_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_WIDE_CHAR_VALUE /;" d +ONIGERR_INVALID_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_WIDE_CHAR_VALUE /;" d +ONIGERR_INVALID_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_WIDE_CHAR_VALUE /;" d +ONIGERR_MATCH_STACK_LIMIT_OVER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MATCH_STACK_LIMIT_OVER /;" d +ONIGERR_MATCH_STACK_LIMIT_OVER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MATCH_STACK_LIMIT_OVER /;" d +ONIGERR_MATCH_STACK_LIMIT_OVER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MATCH_STACK_LIMIT_OVER /;" d +ONIGERR_MEMORY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MEMORY /;" d +ONIGERR_MEMORY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MEMORY /;" d +ONIGERR_MEMORY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MEMORY /;" d +ONIGERR_META_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_META_CODE_SYNTAX /;" d +ONIGERR_META_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_META_CODE_SYNTAX /;" d +ONIGERR_META_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_META_CODE_SYNTAX /;" d +ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE /;" d +ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE /;" d +ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE /;" d +ONIGERR_MULTIPLEX_DEFINED_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINED_NAME /;" d +ONIGERR_MULTIPLEX_DEFINED_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINED_NAME /;" d +ONIGERR_MULTIPLEX_DEFINED_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINED_NAME /;" d +ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL /;" d +ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL /;" d +ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL /;" d +ONIGERR_NESTED_REPEAT_OPERATOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NESTED_REPEAT_OPERATOR /;" d +ONIGERR_NESTED_REPEAT_OPERATOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NESTED_REPEAT_OPERATOR /;" d +ONIGERR_NESTED_REPEAT_OPERATOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NESTED_REPEAT_OPERATOR /;" d +ONIGERR_NEVER_ENDING_RECURSION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NEVER_ENDING_RECURSION /;" d +ONIGERR_NEVER_ENDING_RECURSION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NEVER_ENDING_RECURSION /;" d +ONIGERR_NEVER_ENDING_RECURSION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NEVER_ENDING_RECURSION /;" d +ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION /;" d +ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION /;" d +ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION /;" d +ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED /;" d +ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED /;" d +ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED /;" d +ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT /;" d +ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT /;" d +ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT /;" d +ONIGERR_PARSER_BUG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_PARSER_BUG /;" d +ONIGERR_PARSER_BUG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_PARSER_BUG /;" d +ONIGERR_PARSER_BUG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_PARSER_BUG /;" d +ONIGERR_PREMATURE_END_OF_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS /;" d +ONIGERR_PREMATURE_END_OF_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS /;" d +ONIGERR_PREMATURE_END_OF_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS /;" d +ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR /;" d +ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR /;" d +ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR /;" d +ONIGERR_STACK_BUG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_STACK_BUG /;" d +ONIGERR_STACK_BUG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_STACK_BUG /;" d +ONIGERR_STACK_BUG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_STACK_BUG /;" d +ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID /;" d +ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID /;" d +ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID /;" d +ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED /;" d +ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED /;" d +ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED /;" d +ONIGERR_TOO_BIG_BACKREF_NUMBER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_BACKREF_NUMBER /;" d +ONIGERR_TOO_BIG_BACKREF_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_BACKREF_NUMBER /;" d +ONIGERR_TOO_BIG_BACKREF_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_BACKREF_NUMBER /;" d +ONIGERR_TOO_BIG_NUMBER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER /;" d +ONIGERR_TOO_BIG_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER /;" d +ONIGERR_TOO_BIG_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER /;" d +ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE /;" d +ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE /;" d +ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE /;" d +ONIGERR_TOO_BIG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE /;" d +ONIGERR_TOO_BIG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE /;" d +ONIGERR_TOO_BIG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE /;" d +ONIGERR_TOO_LONG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE /;" d +ONIGERR_TOO_LONG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE /;" d +ONIGERR_TOO_LONG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE /;" d +ONIGERR_TOO_MANY_MULTI_BYTE_RANGES native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES /;" d +ONIGERR_TOO_MANY_MULTI_BYTE_RANGES native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES /;" d +ONIGERR_TOO_MANY_MULTI_BYTE_RANGES native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES /;" d +ONIGERR_TOO_SHORT_MULTI_BYTE_STRING native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING /;" d +ONIGERR_TOO_SHORT_MULTI_BYTE_STRING native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING /;" d +ONIGERR_TOO_SHORT_MULTI_BYTE_STRING native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING /;" d +ONIGERR_TYPE_BUG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TYPE_BUG /;" d +ONIGERR_TYPE_BUG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TYPE_BUG /;" d +ONIGERR_TYPE_BUG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TYPE_BUG /;" d +ONIGERR_UNDEFINED_BYTECODE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_BYTECODE /;" d +ONIGERR_UNDEFINED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_BYTECODE /;" d +ONIGERR_UNDEFINED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_BYTECODE /;" d +ONIGERR_UNDEFINED_GROUP_OPTION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_OPTION /;" d +ONIGERR_UNDEFINED_GROUP_OPTION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_OPTION /;" d +ONIGERR_UNDEFINED_GROUP_OPTION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_OPTION /;" d +ONIGERR_UNDEFINED_GROUP_REFERENCE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_REFERENCE /;" d +ONIGERR_UNDEFINED_GROUP_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_REFERENCE /;" d +ONIGERR_UNDEFINED_GROUP_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_REFERENCE /;" d +ONIGERR_UNDEFINED_NAME_REFERENCE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_NAME_REFERENCE /;" d +ONIGERR_UNDEFINED_NAME_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_NAME_REFERENCE /;" d +ONIGERR_UNDEFINED_NAME_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_NAME_REFERENCE /;" d +ONIGERR_UNEXPECTED_BYTECODE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNEXPECTED_BYTECODE /;" d +ONIGERR_UNEXPECTED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNEXPECTED_BYTECODE /;" d +ONIGERR_UNEXPECTED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNEXPECTED_BYTECODE /;" d +ONIGERR_UNMATCHED_CLOSE_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS /;" d +ONIGERR_UNMATCHED_CLOSE_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS /;" d +ONIGERR_UNMATCHED_CLOSE_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS /;" d +ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS /;" d +ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS /;" d +ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS /;" d +ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE /;" d +ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE /;" d +ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE /;" d +ONIGURUMA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA$/;" d +ONIGURUMA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA$/;" d +ONIGURUMA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA$/;" d +ONIGURUMA_H native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_H$/;" d +ONIGURUMA_H native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_H$/;" d +ONIGURUMA_H native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_H$/;" d +ONIGURUMA_VERSION_MAJOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MAJOR /;" d +ONIGURUMA_VERSION_MAJOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MAJOR /;" d +ONIGURUMA_VERSION_MAJOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MAJOR /;" d +ONIGURUMA_VERSION_MINOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MINOR /;" d +ONIGURUMA_VERSION_MINOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MINOR /;" d +ONIGURUMA_VERSION_MINOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MINOR /;" d +ONIGURUMA_VERSION_TEENY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_TEENY /;" d +ONIGURUMA_VERSION_TEENY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_TEENY /;" d +ONIGURUMA_VERSION_TEENY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_TEENY /;" d +ONIG_CHAR_TABLE_SIZE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_CHAR_TABLE_SIZE /;" d +ONIG_CHAR_TABLE_SIZE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_CHAR_TABLE_SIZE /;" d +ONIG_CHAR_TABLE_SIZE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_CHAR_TABLE_SIZE /;" d +ONIG_ENCODING_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_ASCII /;" d +ONIG_ENCODING_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_ASCII /;" d +ONIG_ENCODING_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_ASCII /;" d +ONIG_ENCODING_UNDEF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UNDEF /;" d +ONIG_ENCODING_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UNDEF /;" d +ONIG_ENCODING_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UNDEF /;" d +ONIG_ENCODING_UTF16_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_BE /;" d +ONIG_ENCODING_UTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_BE /;" d +ONIG_ENCODING_UTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_BE /;" d +ONIG_ENCODING_UTF16_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_LE /;" d +ONIG_ENCODING_UTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_LE /;" d +ONIG_ENCODING_UTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_LE /;" d +ONIG_ENCODING_UTF32_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_BE /;" d +ONIG_ENCODING_UTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_BE /;" d +ONIG_ENCODING_UTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_BE /;" d +ONIG_ENCODING_UTF32_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_LE /;" d +ONIG_ENCODING_UTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_LE /;" d +ONIG_ENCODING_UTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_LE /;" d +ONIG_EXTERN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_EXTERN /;" d +ONIG_EXTERN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_EXTERN /;" d +ONIG_EXTERN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_EXTERN /;" d +ONIG_INEFFECTIVE_META_CHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_INEFFECTIVE_META_CHAR /;" d +ONIG_INEFFECTIVE_META_CHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_INEFFECTIVE_META_CHAR /;" d +ONIG_INEFFECTIVE_META_CHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_INEFFECTIVE_META_CHAR /;" d +ONIG_INFINITE_DISTANCE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_INFINITE_DISTANCE /;" d +ONIG_INFINITE_DISTANCE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_INFINITE_DISTANCE /;" d +ONIG_INFINITE_DISTANCE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_INFINITE_DISTANCE /;" d +ONIG_IS_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_IS_CAPTURE_HISTORY_GROUP(/;" d +ONIG_IS_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_IS_CAPTURE_HISTORY_GROUP(/;" d +ONIG_IS_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_IS_CAPTURE_HISTORY_GROUP(/;" d +ONIG_IS_OPTION_ON native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_IS_OPTION_ON(/;" d +ONIG_IS_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_IS_OPTION_ON(/;" d +ONIG_IS_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_IS_OPTION_ON(/;" d +ONIG_IS_PATTERN_ERROR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_IS_PATTERN_ERROR(/;" d +ONIG_IS_PATTERN_ERROR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_IS_PATTERN_ERROR(/;" d +ONIG_IS_PATTERN_ERROR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_IS_PATTERN_ERROR(/;" d +ONIG_MAX_BACKREF_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_BACKREF_NUM /;" d +ONIG_MAX_BACKREF_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_BACKREF_NUM /;" d +ONIG_MAX_BACKREF_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_BACKREF_NUM /;" d +ONIG_MAX_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_CAPTURE_HISTORY_GROUP /;" d +ONIG_MAX_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_CAPTURE_HISTORY_GROUP /;" d +ONIG_MAX_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_CAPTURE_HISTORY_GROUP /;" d +ONIG_MAX_ERROR_MESSAGE_LEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_ERROR_MESSAGE_LEN /;" d +ONIG_MAX_ERROR_MESSAGE_LEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_ERROR_MESSAGE_LEN /;" d +ONIG_MAX_ERROR_MESSAGE_LEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_ERROR_MESSAGE_LEN /;" d +ONIG_MAX_MULTI_BYTE_RANGES_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_MULTI_BYTE_RANGES_NUM /;" d +ONIG_MAX_MULTI_BYTE_RANGES_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_MULTI_BYTE_RANGES_NUM /;" d +ONIG_MAX_MULTI_BYTE_RANGES_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_MULTI_BYTE_RANGES_NUM /;" d +ONIG_MAX_REPEAT_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_REPEAT_NUM /;" d +ONIG_MAX_REPEAT_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_REPEAT_NUM /;" d +ONIG_MAX_REPEAT_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_REPEAT_NUM /;" d +ONIG_META_CHAR_ANYCHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR /;" d +ONIG_META_CHAR_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR /;" d +ONIG_META_CHAR_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR /;" d +ONIG_META_CHAR_ANYCHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR_ANYTIME /;" d +ONIG_META_CHAR_ANYCHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR_ANYTIME /;" d +ONIG_META_CHAR_ANYCHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR_ANYTIME /;" d +ONIG_META_CHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYTIME /;" d +ONIG_META_CHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYTIME /;" d +ONIG_META_CHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYTIME /;" d +ONIG_META_CHAR_ESCAPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ESCAPE /;" d +ONIG_META_CHAR_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ESCAPE /;" d +ONIG_META_CHAR_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ESCAPE /;" d +ONIG_META_CHAR_ONE_OR_MORE_TIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ONE_OR_MORE_TIME /;" d +ONIG_META_CHAR_ONE_OR_MORE_TIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ONE_OR_MORE_TIME /;" d +ONIG_META_CHAR_ONE_OR_MORE_TIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ONE_OR_MORE_TIME /;" d +ONIG_META_CHAR_ZERO_OR_ONE_TIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ZERO_OR_ONE_TIME /;" d +ONIG_META_CHAR_ZERO_OR_ONE_TIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ZERO_OR_ONE_TIME /;" d +ONIG_META_CHAR_ZERO_OR_ONE_TIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ZERO_OR_ONE_TIME /;" d +ONIG_MISMATCH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MISMATCH /;" d +ONIG_MISMATCH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MISMATCH /;" d +ONIG_MISMATCH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MISMATCH /;" d +ONIG_NORMAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NORMAL /;" d +ONIG_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NORMAL /;" d +ONIG_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NORMAL /;" d +ONIG_NO_SUPPORT_CONFIG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NO_SUPPORT_CONFIG /;" d +ONIG_NO_SUPPORT_CONFIG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NO_SUPPORT_CONFIG /;" d +ONIG_NO_SUPPORT_CONFIG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NO_SUPPORT_CONFIG /;" d +ONIG_NREGION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NREGION /;" d +ONIG_NREGION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NREGION /;" d +ONIG_NREGION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NREGION /;" d +ONIG_NULL_WARN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NULL_WARN /;" d +ONIG_NULL_WARN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NULL_WARN /;" d +ONIG_NULL_WARN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NULL_WARN /;" d +ONIG_OPTION_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_CAPTURE_GROUP /;" d +ONIG_OPTION_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_CAPTURE_GROUP /;" d +ONIG_OPTION_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_CAPTURE_GROUP /;" d +ONIG_OPTION_DEFAULT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_DEFAULT /;" d +ONIG_OPTION_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_DEFAULT /;" d +ONIG_OPTION_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_DEFAULT /;" d +ONIG_OPTION_DONT_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_DONT_CAPTURE_GROUP /;" d +ONIG_OPTION_DONT_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_DONT_CAPTURE_GROUP /;" d +ONIG_OPTION_DONT_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_DONT_CAPTURE_GROUP /;" d +ONIG_OPTION_EXTEND native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_EXTEND /;" d +ONIG_OPTION_EXTEND native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_EXTEND /;" d +ONIG_OPTION_EXTEND native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_EXTEND /;" d +ONIG_OPTION_FIND_LONGEST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_LONGEST /;" d +ONIG_OPTION_FIND_LONGEST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_LONGEST /;" d +ONIG_OPTION_FIND_LONGEST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_LONGEST /;" d +ONIG_OPTION_FIND_NOT_EMPTY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_NOT_EMPTY /;" d +ONIG_OPTION_FIND_NOT_EMPTY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_NOT_EMPTY /;" d +ONIG_OPTION_FIND_NOT_EMPTY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_NOT_EMPTY /;" d +ONIG_OPTION_IGNORECASE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_IGNORECASE /;" d +ONIG_OPTION_IGNORECASE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_IGNORECASE /;" d +ONIG_OPTION_IGNORECASE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_IGNORECASE /;" d +ONIG_OPTION_MAXBIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_MAXBIT /;" d +ONIG_OPTION_MAXBIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_MAXBIT /;" d +ONIG_OPTION_MAXBIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_MAXBIT /;" d +ONIG_OPTION_MULTILINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_MULTILINE /;" d +ONIG_OPTION_MULTILINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_MULTILINE /;" d +ONIG_OPTION_MULTILINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_MULTILINE /;" d +ONIG_OPTION_NEGATE_SINGLELINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NEGATE_SINGLELINE /;" d +ONIG_OPTION_NEGATE_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NEGATE_SINGLELINE /;" d +ONIG_OPTION_NEGATE_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NEGATE_SINGLELINE /;" d +ONIG_OPTION_NONE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NONE /;" d +ONIG_OPTION_NONE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NONE /;" d +ONIG_OPTION_NONE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NONE /;" d +ONIG_OPTION_NOTBOL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NOTBOL /;" d +ONIG_OPTION_NOTBOL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NOTBOL /;" d +ONIG_OPTION_NOTBOL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NOTBOL /;" d +ONIG_OPTION_NOTEOL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NOTEOL /;" d +ONIG_OPTION_NOTEOL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NOTEOL /;" d +ONIG_OPTION_NOTEOL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NOTEOL /;" d +ONIG_OPTION_OFF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_OFF(/;" d +ONIG_OPTION_OFF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_OFF(/;" d +ONIG_OPTION_OFF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_OFF(/;" d +ONIG_OPTION_ON native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_ON(/;" d +ONIG_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_ON(/;" d +ONIG_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_ON(/;" d +ONIG_OPTION_POSIX_REGION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_POSIX_REGION /;" d +ONIG_OPTION_POSIX_REGION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_POSIX_REGION /;" d +ONIG_OPTION_POSIX_REGION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_POSIX_REGION /;" d +ONIG_OPTION_SINGLELINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_SINGLELINE /;" d +ONIG_OPTION_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_SINGLELINE /;" d +ONIG_OPTION_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_SINGLELINE /;" d +ONIG_REGION_NOTPOS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_REGION_NOTPOS /;" d +ONIG_REGION_NOTPOS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_REGION_NOTPOS /;" d +ONIG_REGION_NOTPOS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_REGION_NOTPOS /;" d +ONIG_STATE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE(/;" d +ONIG_STATE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE(/;" d +ONIG_STATE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE(/;" d +ONIG_STATE_COMPILING native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_COMPILING /;" d +ONIG_STATE_COMPILING native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_COMPILING /;" d +ONIG_STATE_COMPILING native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_COMPILING /;" d +ONIG_STATE_MODIFY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_MODIFY /;" d +ONIG_STATE_MODIFY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_MODIFY /;" d +ONIG_STATE_MODIFY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_MODIFY /;" d +ONIG_STATE_NORMAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_NORMAL /;" d +ONIG_STATE_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_NORMAL /;" d +ONIG_STATE_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_NORMAL /;" d +ONIG_STATE_SEARCHING native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_SEARCHING /;" d +ONIG_STATE_SEARCHING native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_SEARCHING /;" d +ONIG_STATE_SEARCHING native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_SEARCHING /;" d +ONIG_SYNTAX_ASIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_ASIS /;" d +ONIG_SYNTAX_ASIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_ASIS /;" d +ONIG_SYNTAX_ASIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_ASIS /;" d +ONIG_SYNTAX_DEFAULT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_DEFAULT /;" d +ONIG_SYNTAX_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_DEFAULT /;" d +ONIG_SYNTAX_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_DEFAULT /;" d +ONIG_SYNTAX_EMACS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_EMACS /;" d +ONIG_SYNTAX_EMACS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_EMACS /;" d +ONIG_SYNTAX_EMACS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_EMACS /;" d +ONIG_SYNTAX_GNU_REGEX native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_GNU_REGEX /;" d +ONIG_SYNTAX_GNU_REGEX native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_GNU_REGEX /;" d +ONIG_SYNTAX_GNU_REGEX native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_GNU_REGEX /;" d +ONIG_SYNTAX_GREP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_GREP /;" d +ONIG_SYNTAX_GREP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_GREP /;" d +ONIG_SYNTAX_GREP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_GREP /;" d +ONIG_SYNTAX_JAVA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_JAVA /;" d +ONIG_SYNTAX_JAVA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_JAVA /;" d +ONIG_SYNTAX_JAVA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_JAVA /;" d +ONIG_SYNTAX_PERL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL /;" d +ONIG_SYNTAX_PERL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL /;" d +ONIG_SYNTAX_PERL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL /;" d +ONIG_SYNTAX_PERL_NG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL_NG /;" d +ONIG_SYNTAX_PERL_NG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL_NG /;" d +ONIG_SYNTAX_PERL_NG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL_NG /;" d +ONIG_SYNTAX_POSIX_BASIC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_BASIC /;" d +ONIG_SYNTAX_POSIX_BASIC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_BASIC /;" d +ONIG_SYNTAX_POSIX_BASIC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_BASIC /;" d +ONIG_SYNTAX_POSIX_EXTENDED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_EXTENDED /;" d +ONIG_SYNTAX_POSIX_EXTENDED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_EXTENDED /;" d +ONIG_SYNTAX_POSIX_EXTENDED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_EXTENDED /;" d +ONIG_SYNTAX_RUBY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_RUBY /;" d +ONIG_SYNTAX_RUBY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_RUBY /;" d +ONIG_SYNTAX_RUBY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_RUBY /;" d +ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC /;" d +ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC /;" d +ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC /;" d +ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC /;" d +ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC /;" d +ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC /;" d +ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV /;" d +ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV /;" d +ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV /;" d +ONIG_SYN_ALLOW_INVALID_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INVALID_INTERVAL /;" d +ONIG_SYN_ALLOW_INVALID_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INVALID_INTERVAL /;" d +ONIG_SYN_ALLOW_INVALID_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INVALID_INTERVAL /;" d +ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME /;" d +ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME /;" d +ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME /;" d +ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP /;" d +ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP /;" d +ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP /;" d +ONIG_SYN_BACKSLASH_ESCAPE_IN_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC /;" d +ONIG_SYN_BACKSLASH_ESCAPE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC /;" d +ONIG_SYN_BACKSLASH_ESCAPE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC /;" d +ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP /;" d +ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP /;" d +ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP /;" d +ONIG_SYN_CONTEXT_INDEP_ANCHORS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_ANCHORS /;" d +ONIG_SYN_CONTEXT_INDEP_ANCHORS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_ANCHORS /;" d +ONIG_SYN_CONTEXT_INDEP_ANCHORS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_ANCHORS /;" d +ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS /;" d +ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS /;" d +ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS /;" d +ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS /;" d +ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS /;" d +ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS /;" d +ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND /;" d +ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND /;" d +ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND /;" d +ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY /;" d +ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY /;" d +ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY /;" d +ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC /;" d +ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC /;" d +ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC /;" d +ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY /;" d +ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY /;" d +ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY /;" d +ONIG_SYN_OP2_CCLASS_SET_OP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_CCLASS_SET_OP /;" d +ONIG_SYN_OP2_CCLASS_SET_OP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_CCLASS_SET_OP /;" d +ONIG_SYN_OP2_CCLASS_SET_OP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_CCLASS_SET_OP /;" d +ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL /;" d +ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL /;" d +ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL /;" d +ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META /;" d +ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META /;" d +ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META /;" d +ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE /;" d +ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE /;" d +ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE /;" d +ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR /;" d +ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR /;" d +ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR /;" d +ONIG_SYN_OP2_ESC_G_SUBEXP_CALL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL /;" d +ONIG_SYN_OP2_ESC_G_SUBEXP_CALL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL /;" d +ONIG_SYN_OP2_ESC_G_SUBEXP_CALL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL /;" d +ONIG_SYN_OP2_ESC_H_XDIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_H_XDIGIT /;" d +ONIG_SYN_OP2_ESC_H_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_H_XDIGIT /;" d +ONIG_SYN_OP2_ESC_H_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_H_XDIGIT /;" d +ONIG_SYN_OP2_ESC_K_NAMED_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF /;" d +ONIG_SYN_OP2_ESC_K_NAMED_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF /;" d +ONIG_SYN_OP2_ESC_K_NAMED_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF /;" d +ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY /;" d +ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY /;" d +ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY /;" d +ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT /;" d +ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT /;" d +ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT /;" d +ONIG_SYN_OP2_ESC_U_HEX4 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_U_HEX4 /;" d +ONIG_SYN_OP2_ESC_U_HEX4 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_U_HEX4 /;" d +ONIG_SYN_OP2_ESC_U_HEX4 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_U_HEX4 /;" d +ONIG_SYN_OP2_ESC_V_VTAB native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_V_VTAB /;" d +ONIG_SYN_OP2_ESC_V_VTAB native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_V_VTAB /;" d +ONIG_SYN_OP2_ESC_V_VTAB native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_V_VTAB /;" d +ONIG_SYN_OP2_INEFFECTIVE_ESCAPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE /;" d +ONIG_SYN_OP2_INEFFECTIVE_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE /;" d +ONIG_SYN_OP2_INEFFECTIVE_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE /;" d +ONIG_SYN_OP2_OPTION_PERL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_PERL /;" d +ONIG_SYN_OP2_OPTION_PERL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_PERL /;" d +ONIG_SYN_OP2_OPTION_PERL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_PERL /;" d +ONIG_SYN_OP2_OPTION_RUBY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_RUBY /;" d +ONIG_SYN_OP2_OPTION_RUBY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_RUBY /;" d +ONIG_SYN_OP2_OPTION_RUBY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_RUBY /;" d +ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL /;" d +ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL /;" d +ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL /;" d +ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT /;" d +ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT /;" d +ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT /;" d +ONIG_SYN_OP2_QMARK_GROUP_EFFECT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT /;" d +ONIG_SYN_OP2_QMARK_GROUP_EFFECT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT /;" d +ONIG_SYN_OP2_QMARK_GROUP_EFFECT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT /;" d +ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP /;" d +ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP /;" d +ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP /;" d +ONIG_SYN_OP_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ASTERISK_ZERO_INF /;" d +ONIG_SYN_OP_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ASTERISK_ZERO_INF /;" d +ONIG_SYN_OP_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ASTERISK_ZERO_INF /;" d +ONIG_SYN_OP_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACE_INTERVAL /;" d +ONIG_SYN_OP_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACE_INTERVAL /;" d +ONIG_SYN_OP_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACE_INTERVAL /;" d +ONIG_SYN_OP_BRACKET_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACKET_CC /;" d +ONIG_SYN_OP_BRACKET_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACKET_CC /;" d +ONIG_SYN_OP_BRACKET_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACKET_CC /;" d +ONIG_SYN_OP_DECIMAL_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_DECIMAL_BACKREF /;" d +ONIG_SYN_OP_DECIMAL_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_DECIMAL_BACKREF /;" d +ONIG_SYN_OP_DECIMAL_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_DECIMAL_BACKREF /;" d +ONIG_SYN_OP_DOT_ANYCHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_DOT_ANYCHAR /;" d +ONIG_SYN_OP_DOT_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_DOT_ANYCHAR /;" d +ONIG_SYN_OP_DOT_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_DOT_ANYCHAR /;" d +ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF /;" d +ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF /;" d +ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF /;" d +ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR /;" d +ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR /;" d +ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR /;" d +ONIG_SYN_OP_ESC_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_BRACE_INTERVAL /;" d +ONIG_SYN_OP_ESC_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_BRACE_INTERVAL /;" d +ONIG_SYN_OP_ESC_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_BRACE_INTERVAL /;" d +ONIG_SYN_OP_ESC_B_WORD_BOUND native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_B_WORD_BOUND /;" d +ONIG_SYN_OP_ESC_B_WORD_BOUND native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_B_WORD_BOUND /;" d +ONIG_SYN_OP_ESC_B_WORD_BOUND native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_B_WORD_BOUND /;" d +ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR /;" d +ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR /;" d +ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR /;" d +ONIG_SYN_OP_ESC_CONTROL_CHARS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CONTROL_CHARS /;" d +ONIG_SYN_OP_ESC_CONTROL_CHARS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CONTROL_CHARS /;" d +ONIG_SYN_OP_ESC_CONTROL_CHARS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CONTROL_CHARS /;" d +ONIG_SYN_OP_ESC_C_CONTROL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_C_CONTROL /;" d +ONIG_SYN_OP_ESC_C_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_C_CONTROL /;" d +ONIG_SYN_OP_ESC_C_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_C_CONTROL /;" d +ONIG_SYN_OP_ESC_D_DIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_D_DIGIT /;" d +ONIG_SYN_OP_ESC_D_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_D_DIGIT /;" d +ONIG_SYN_OP_ESC_D_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_D_DIGIT /;" d +ONIG_SYN_OP_ESC_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP /;" d +ONIG_SYN_OP_ESC_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP /;" d +ONIG_SYN_OP_ESC_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP /;" d +ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END /;" d +ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END /;" d +ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END /;" d +ONIG_SYN_OP_ESC_OCTAL3 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_OCTAL3 /;" d +ONIG_SYN_OP_ESC_OCTAL3 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_OCTAL3 /;" d +ONIG_SYN_OP_ESC_OCTAL3 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_OCTAL3 /;" d +ONIG_SYN_OP_ESC_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_PLUS_ONE_INF /;" d +ONIG_SYN_OP_ESC_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_PLUS_ONE_INF /;" d +ONIG_SYN_OP_ESC_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_PLUS_ONE_INF /;" d +ONIG_SYN_OP_ESC_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE /;" d +ONIG_SYN_OP_ESC_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE /;" d +ONIG_SYN_OP_ESC_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE /;" d +ONIG_SYN_OP_ESC_S_WHITE_SPACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_S_WHITE_SPACE /;" d +ONIG_SYN_OP_ESC_S_WHITE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_S_WHITE_SPACE /;" d +ONIG_SYN_OP_ESC_S_WHITE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_S_WHITE_SPACE /;" d +ONIG_SYN_OP_ESC_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_VBAR_ALT /;" d +ONIG_SYN_OP_ESC_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_VBAR_ALT /;" d +ONIG_SYN_OP_ESC_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_VBAR_ALT /;" d +ONIG_SYN_OP_ESC_W_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_W_WORD /;" d +ONIG_SYN_OP_ESC_W_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_W_WORD /;" d +ONIG_SYN_OP_ESC_W_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_W_WORD /;" d +ONIG_SYN_OP_ESC_X_BRACE_HEX8 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_BRACE_HEX8 /;" d +ONIG_SYN_OP_ESC_X_BRACE_HEX8 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_BRACE_HEX8 /;" d +ONIG_SYN_OP_ESC_X_BRACE_HEX8 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_BRACE_HEX8 /;" d +ONIG_SYN_OP_ESC_X_HEX2 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_HEX2 /;" d +ONIG_SYN_OP_ESC_X_HEX2 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_HEX2 /;" d +ONIG_SYN_OP_ESC_X_HEX2 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_HEX2 /;" d +ONIG_SYN_OP_LINE_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_LINE_ANCHOR /;" d +ONIG_SYN_OP_LINE_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_LINE_ANCHOR /;" d +ONIG_SYN_OP_LINE_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_LINE_ANCHOR /;" d +ONIG_SYN_OP_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_LPAREN_SUBEXP /;" d +ONIG_SYN_OP_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_LPAREN_SUBEXP /;" d +ONIG_SYN_OP_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_LPAREN_SUBEXP /;" d +ONIG_SYN_OP_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_PLUS_ONE_INF /;" d +ONIG_SYN_OP_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_PLUS_ONE_INF /;" d +ONIG_SYN_OP_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_PLUS_ONE_INF /;" d +ONIG_SYN_OP_POSIX_BRACKET native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_POSIX_BRACKET /;" d +ONIG_SYN_OP_POSIX_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_POSIX_BRACKET /;" d +ONIG_SYN_OP_POSIX_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_POSIX_BRACKET /;" d +ONIG_SYN_OP_QMARK_NON_GREEDY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_NON_GREEDY /;" d +ONIG_SYN_OP_QMARK_NON_GREEDY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_NON_GREEDY /;" d +ONIG_SYN_OP_QMARK_NON_GREEDY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_NON_GREEDY /;" d +ONIG_SYN_OP_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_ZERO_ONE /;" d +ONIG_SYN_OP_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_ZERO_ONE /;" d +ONIG_SYN_OP_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_ZERO_ONE /;" d +ONIG_SYN_OP_VARIABLE_META_CHARACTERS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS /;" d +ONIG_SYN_OP_VARIABLE_META_CHARACTERS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS /;" d +ONIG_SYN_OP_VARIABLE_META_CHARACTERS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS /;" d +ONIG_SYN_OP_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_VBAR_ALT /;" d +ONIG_SYN_OP_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_VBAR_ALT /;" d +ONIG_SYN_OP_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_VBAR_ALT /;" d +ONIG_SYN_STRICT_CHECK_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_STRICT_CHECK_BACKREF /;" d +ONIG_SYN_STRICT_CHECK_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_STRICT_CHECK_BACKREF /;" d +ONIG_SYN_STRICT_CHECK_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_STRICT_CHECK_BACKREF /;" d +ONIG_SYN_WARN_CC_OP_NOT_ESCAPED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED /;" d +ONIG_SYN_WARN_CC_OP_NOT_ESCAPED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED /;" d +ONIG_SYN_WARN_CC_OP_NOT_ESCAPED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED /;" d +ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT /;" d +ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT /;" d +ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT /;" d +ONIG_TRAVERSE_CALLBACK_AT_BOTH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_BOTH /;" d +ONIG_TRAVERSE_CALLBACK_AT_BOTH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_BOTH /;" d +ONIG_TRAVERSE_CALLBACK_AT_BOTH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_BOTH /;" d +ONIG_TRAVERSE_CALLBACK_AT_FIRST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_FIRST /;" d +ONIG_TRAVERSE_CALLBACK_AT_FIRST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_FIRST /;" d +ONIG_TRAVERSE_CALLBACK_AT_FIRST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_FIRST /;" d +ONIG_TRAVERSE_CALLBACK_AT_LAST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_LAST /;" d +ONIG_TRAVERSE_CALLBACK_AT_LAST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_LAST /;" d +ONIG_TRAVERSE_CALLBACK_AT_LAST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_LAST /;" d +OVERRIDE native/atom_cef_client.h /^ CefRefPtr message) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ EventFlags event_flags) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ CefRefPtr model) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ int line) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ const CefString& title) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ const CefString& failedUrl) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ CefEventHandle os_event) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ virtual void OnAfterCreated(CefRefPtr browser) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_client.h /^ virtual void OnBeforeClose(CefRefPtr browser) OVERRIDE;$/;" m class:AtomCefClient +OVERRIDE native/atom_cef_render_process_handler.h /^ CefRefPtr message) OVERRIDE;$/;" m class:AtomCefRenderProcessHandler +OVERRIDE native/atom_cef_render_process_handler.h /^ CefRefPtr context) OVERRIDE;$/;" m class:AtomCefRenderProcessHandler +OVERRIDE native/atom_cef_render_process_handler.h /^ CefRefPtr context) OVERRIDE;$/;" m class:AtomCefRenderProcessHandler +OVERRIDE native/atom_cef_render_process_handler.h /^ virtual void OnWebKitInitialized() OVERRIDE;$/;" m class:AtomCefRenderProcessHandler +OVERRIDE native/linux/client_handler.h /^ OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ CefBrowserSettings& settings) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame, CefRefPtr node) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame, const CefString& url) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame, int httpStatusCode) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ bool canGoForward) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ const CefString& failedUrl, CefString& errorText) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ const CefString& message, const CefString& source, int line) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ const CefString& title) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ virtual bool DoClose(CefRefPtr browser) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ virtual void OnAfterCreated(CefRefPtr browser) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/linux/client_handler.h /^ virtual void OnBeforeClose(CefRefPtr browser) OVERRIDE;$/;" m class:ClientHandler +OVERRIDE native/v8_extensions/atom.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Atom +OVERRIDE native/v8_extensions/git.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Git +OVERRIDE native/v8_extensions/native.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Native +OVERRIDE native/v8_extensions/onig_reg_exp.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::OnigRegExp +OVERRIDE native/v8_extensions/onig_scanner.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::OnigScanner +OVERRIDE native/v8_extensions/tags.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Tags +OnAddressChange native/atom_cef_client_gtk.cpp /^void ClientHandler::OnAddressChange(CefRefPtr browser,$/;" f class:ClientHandler +OnAddressChange native/atom_cef_client_win.mm /^void ClientHandler::OnAddressChange(CefRefPtr browser,$/;" f class:ClientHandler +OnAddressChange native/linux/client_handler.cpp /^void ClientHandler::OnAddressChange(CefRefPtr browser,$/;" f class:ClientHandler +OnAfterCreated native/atom_cef_client.cpp /^void AtomCefClient::OnAfterCreated(CefRefPtr browser) {$/;" f class:AtomCefClient +OnAfterCreated native/linux/client_handler.cpp /^void ClientHandler::OnAfterCreated(CefRefPtr browser) {$/;" f class:ClientHandler +OnBeforeClose native/atom_cef_client.cpp /^void AtomCefClient::OnBeforeClose(CefRefPtr browser) {$/;" f class:AtomCefClient +OnBeforeClose native/linux/client_handler.cpp /^void ClientHandler::OnBeforeClose(CefRefPtr browser) {$/;" f class:ClientHandler +OnBeforeContextMenu native/atom_cef_client.cpp /^void AtomCefClient::OnBeforeContextMenu($/;" f class:AtomCefClient +OnBeforePopup native/linux/client_handler.cpp /^bool ClientHandler::OnBeforePopup(CefRefPtr parentBrowser,$/;" f class:ClientHandler +OnBeforeUnloadDialog native/atom_cef_client.h /^ virtual bool OnBeforeUnloadDialog(CefRefPtr browser,$/;" f class:AtomCefClient +OnConsoleMessage native/atom_cef_client.cpp /^bool AtomCefClient::OnConsoleMessage(CefRefPtr browser,$/;" f class:AtomCefClient +OnConsoleMessage native/linux/client_handler.cpp /^bool ClientHandler::OnConsoleMessage(CefRefPtr browser,$/;" f class:ClientHandler +OnContextCreated native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::OnContextCreated(CefRefPtr browser,$/;" f class:AtomCefRenderProcessHandler +OnContextCreated native/linux/atom_cef_render_process_handler.cpp /^void AtomCefRenderProcessHandler::OnContextCreated($/;" f class:AtomCefRenderProcessHandler +OnContextMenuCommand native/atom_cef_client.cpp /^bool AtomCefClient::OnContextMenuCommand($/;" f class:AtomCefClient +OnContextReleased native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::OnContextReleased(CefRefPtr browser,$/;" f class:AtomCefRenderProcessHandler +OnFocusedNodeChanged native/linux/client_handler.cpp /^void ClientHandler::OnFocusedNodeChanged(CefRefPtr browser,$/;" f class:ClientHandler +OnKeyEvent native/atom_cef_client.cpp /^bool AtomCefClient::OnKeyEvent(CefRefPtr browser,$/;" f class:AtomCefClient +OnLoadEnd native/linux/client_handler.cpp /^void ClientHandler::OnLoadEnd(CefRefPtr browser,$/;" f class:ClientHandler +OnLoadError native/atom_cef_client.cpp /^void AtomCefClient::OnLoadError(CefRefPtr browser,$/;" f class:AtomCefClient +OnLoadError native/linux/client_handler.cpp /^bool ClientHandler::OnLoadError(CefRefPtr browser,$/;" f class:ClientHandler +OnLoadStart native/linux/client_handler.cpp /^void ClientHandler::OnLoadStart(CefRefPtr browser,$/;" f class:ClientHandler +OnNavStateChange native/linux/client_handler.cpp /^void ClientHandler::OnNavStateChange(CefRefPtr browser,$/;" f class:ClientHandler +OnProcessMessageReceived native/atom_cef_client.cpp /^bool AtomCefClient::OnProcessMessageReceived(CefRefPtr browser,$/;" f class:AtomCefClient +OnProcessMessageReceived native/atom_cef_render_process_handler.mm /^bool AtomCefRenderProcessHandler::OnProcessMessageReceived(CefRefPtr browser,$/;" f class:AtomCefRenderProcessHandler +OnProcessMessageReceived native/linux/atom_cef_render_process_handler.cpp /^bool AtomCefRenderProcessHandler::OnProcessMessageReceived($/;" f class:AtomCefRenderProcessHandler +OnProcessMessageReceived native/linux/client_handler.cpp /^bool ClientHandler::OnProcessMessageReceived(CefRefPtr browser,$/;" f class:ClientHandler +OnTitleChange native/atom_cef_client_gtk.cpp /^void ClientHandler::OnTitleChange(CefRefPtr browser,$/;" f class:ClientHandler +OnTitleChange native/atom_cef_client_mac.mm /^void AtomCefClient::OnTitleChange(CefRefPtr browser, const CefString& title) {$/;" f class:AtomCefClient +OnTitleChange native/atom_cef_client_win.mm /^void ClientHandler::OnTitleChange(CefRefPtr browser,$/;" f class:ClientHandler +OnTitleChange native/linux/client_handler.cpp /^void ClientHandler::OnTitleChange(CefRefPtr browser,$/;" f class:ClientHandler +OnWebKitInitialized native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::OnWebKitInitialized() {$/;" f class:AtomCefRenderProcessHandler +OnWebKitInitialized native/linux/atom_cef_render_process_handler.cpp /^void AtomCefRenderProcessHandler::OnWebKitInitialized() {$/;" f class:AtomCefRenderProcessHandler +OnigApplyAllCaseFoldFunc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);$/;" t +OnigApplyAllCaseFoldFunc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);$/;" t +OnigApplyAllCaseFoldFunc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);$/;" t +OnigCaptureTreeNode native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigCaptureTreeNode;$/;" t typeref:struct:OnigCaptureTreeNodeStruct +OnigCaptureTreeNode native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigCaptureTreeNode;$/;" t typeref:struct:OnigCaptureTreeNodeStruct +OnigCaptureTreeNode native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigCaptureTreeNode;$/;" t typeref:struct:OnigCaptureTreeNodeStruct +OnigCaptureTreeNodeStruct native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct OnigCaptureTreeNodeStruct {$/;" s +OnigCaptureTreeNodeStruct native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct OnigCaptureTreeNodeStruct {$/;" s +OnigCaptureTreeNodeStruct native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct OnigCaptureTreeNodeStruct {$/;" s +OnigCaseFoldCodeItem native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigCaseFoldCodeItem;$/;" t typeref:struct:__anon2 +OnigCaseFoldCodeItem native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigCaseFoldCodeItem;$/;" t typeref:struct:__anon9 +OnigCaseFoldCodeItem native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigCaseFoldCodeItem;$/;" t typeref:struct:__anon16 +OnigCaseFoldType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigCaseFoldType; \/* case fold flag *\/$/;" t +OnigCaseFoldType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigCaseFoldType; \/* case fold flag *\/$/;" t +OnigCaseFoldType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigCaseFoldType; \/* case fold flag *\/$/;" t +OnigCodePoint native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned long OnigCodePoint;$/;" t +OnigCodePoint native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned long OnigCodePoint;$/;" t +OnigCodePoint native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned long OnigCodePoint;$/;" t +OnigCompileInfo native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigCompileInfo;$/;" t typeref:struct:__anon7 +OnigCompileInfo native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigCompileInfo;$/;" t typeref:struct:__anon14 +OnigCompileInfo native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigCompileInfo;$/;" t typeref:struct:__anon21 +OnigCtype native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigCtype;$/;" t +OnigCtype native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigCtype;$/;" t +OnigCtype native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigCtype;$/;" t +OnigDefaultCaseFoldFlag native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;$/;" v +OnigDefaultCaseFoldFlag native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;$/;" v +OnigDefaultCaseFoldFlag native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;$/;" v +OnigDefaultSyntax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;$/;" v +OnigDefaultSyntax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;$/;" v +OnigDefaultSyntax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;$/;" v +OnigDistance native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigDistance;$/;" t +OnigDistance native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigDistance;$/;" t +OnigDistance native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigDistance;$/;" t +OnigEncoding native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef OnigEncodingType* OnigEncoding;$/;" t +OnigEncoding native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef OnigEncodingType* OnigEncoding;$/;" t +OnigEncoding native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef OnigEncodingType* OnigEncoding;$/;" t +OnigEncodingASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingASCII;$/;" v +OnigEncodingASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingASCII;$/;" v +OnigEncodingASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingASCII;$/;" v +OnigEncodingType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigEncodingType;$/;" t typeref:struct:OnigEncodingTypeST +OnigEncodingType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigEncodingType;$/;" t typeref:struct:OnigEncodingTypeST +OnigEncodingType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigEncodingType;$/;" t typeref:struct:OnigEncodingTypeST +OnigEncodingTypeST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct OnigEncodingTypeST {$/;" s +OnigEncodingTypeST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct OnigEncodingTypeST {$/;" s +OnigEncodingTypeST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct OnigEncodingTypeST {$/;" s +OnigEncodingUTF16_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;$/;" v +OnigEncodingUTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;$/;" v +OnigEncodingUTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;$/;" v +OnigEncodingUTF16_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;$/;" v +OnigEncodingUTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;$/;" v +OnigEncodingUTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;$/;" v +OnigEncodingUTF32_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;$/;" v +OnigEncodingUTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;$/;" v +OnigEncodingUTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;$/;" v +OnigEncodingUTF32_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;$/;" v +OnigEncodingUTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;$/;" v +OnigEncodingUTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;$/;" v +OnigErrorInfo native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigErrorInfo;$/;" t typeref:struct:__anon5 +OnigErrorInfo native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigErrorInfo;$/;" t typeref:struct:__anon12 +OnigErrorInfo native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigErrorInfo;$/;" t typeref:struct:__anon19 +OnigMetaCharTableType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigMetaCharTableType;$/;" t typeref:struct:__anon3 +OnigMetaCharTableType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigMetaCharTableType;$/;" t typeref:struct:__anon10 +OnigMetaCharTableType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigMetaCharTableType;$/;" t typeref:struct:__anon17 +OnigOption native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^} OnigOption;$/;" t typeref:enum:__anon1 +OnigOption native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^} OnigOption;$/;" t typeref:enum:__anon8 +OnigOption native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^} OnigOption;$/;" t typeref:enum:__anon15 +OnigOptionCaptureGroup native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionCaptureGroup = ONIG_OPTION_CAPTURE_GROUP,$/;" e enum:__anon1 +OnigOptionCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionCaptureGroup = ONIG_OPTION_CAPTURE_GROUP,$/;" e enum:__anon8 +OnigOptionCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionCaptureGroup = ONIG_OPTION_CAPTURE_GROUP,$/;" e enum:__anon15 +OnigOptionDontCaptureGroup native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionDontCaptureGroup = ONIG_OPTION_DONT_CAPTURE_GROUP,$/;" e enum:__anon1 +OnigOptionDontCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionDontCaptureGroup = ONIG_OPTION_DONT_CAPTURE_GROUP,$/;" e enum:__anon8 +OnigOptionDontCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionDontCaptureGroup = ONIG_OPTION_DONT_CAPTURE_GROUP,$/;" e enum:__anon15 +OnigOptionExtend native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionExtend = ONIG_OPTION_EXTEND,$/;" e enum:__anon1 +OnigOptionExtend native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionExtend = ONIG_OPTION_EXTEND,$/;" e enum:__anon8 +OnigOptionExtend native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionExtend = ONIG_OPTION_EXTEND,$/;" e enum:__anon15 +OnigOptionFindLongest native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionFindLongest = ONIG_OPTION_FIND_LONGEST,$/;" e enum:__anon1 +OnigOptionFindLongest native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionFindLongest = ONIG_OPTION_FIND_LONGEST,$/;" e enum:__anon8 +OnigOptionFindLongest native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionFindLongest = ONIG_OPTION_FIND_LONGEST,$/;" e enum:__anon15 +OnigOptionFindNotEmpty native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionFindNotEmpty = ONIG_OPTION_FIND_NOT_EMPTY,$/;" e enum:__anon1 +OnigOptionFindNotEmpty native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionFindNotEmpty = ONIG_OPTION_FIND_NOT_EMPTY,$/;" e enum:__anon8 +OnigOptionFindNotEmpty native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionFindNotEmpty = ONIG_OPTION_FIND_NOT_EMPTY,$/;" e enum:__anon15 +OnigOptionIgnorecase native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionIgnorecase = ONIG_OPTION_IGNORECASE,$/;" e enum:__anon1 +OnigOptionIgnorecase native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionIgnorecase = ONIG_OPTION_IGNORECASE,$/;" e enum:__anon8 +OnigOptionIgnorecase native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionIgnorecase = ONIG_OPTION_IGNORECASE,$/;" e enum:__anon15 +OnigOptionMaxbit native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionMaxbit = ONIG_OPTION_MAXBIT$/;" e enum:__anon1 +OnigOptionMaxbit native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionMaxbit = ONIG_OPTION_MAXBIT$/;" e enum:__anon8 +OnigOptionMaxbit native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionMaxbit = ONIG_OPTION_MAXBIT$/;" e enum:__anon15 +OnigOptionMultiline native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionMultiline = ONIG_OPTION_MULTILINE,$/;" e enum:__anon1 +OnigOptionMultiline native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionMultiline = ONIG_OPTION_MULTILINE,$/;" e enum:__anon8 +OnigOptionMultiline native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionMultiline = ONIG_OPTION_MULTILINE,$/;" e enum:__anon15 +OnigOptionNegateSingleLine native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNegateSingleLine = ONIG_OPTION_NEGATE_SINGLELINE,$/;" e enum:__anon1 +OnigOptionNegateSingleLine native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNegateSingleLine = ONIG_OPTION_NEGATE_SINGLELINE,$/;" e enum:__anon8 +OnigOptionNegateSingleLine native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNegateSingleLine = ONIG_OPTION_NEGATE_SINGLELINE,$/;" e enum:__anon15 +OnigOptionNone native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNone = ONIG_OPTION_NONE,$/;" e enum:__anon1 +OnigOptionNone native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNone = ONIG_OPTION_NONE,$/;" e enum:__anon8 +OnigOptionNone native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNone = ONIG_OPTION_NONE,$/;" e enum:__anon15 +OnigOptionNotbol native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNotbol = ONIG_OPTION_NOTBOL,$/;" e enum:__anon1 +OnigOptionNotbol native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNotbol = ONIG_OPTION_NOTBOL,$/;" e enum:__anon8 +OnigOptionNotbol native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNotbol = ONIG_OPTION_NOTBOL,$/;" e enum:__anon15 +OnigOptionNoteol native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNoteol = ONIG_OPTION_NOTEOL,$/;" e enum:__anon1 +OnigOptionNoteol native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNoteol = ONIG_OPTION_NOTEOL,$/;" e enum:__anon8 +OnigOptionNoteol native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNoteol = ONIG_OPTION_NOTEOL,$/;" e enum:__anon15 +OnigOptionPosixRegion native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionPosixRegion = ONIG_OPTION_POSIX_REGION,$/;" e enum:__anon1 +OnigOptionPosixRegion native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionPosixRegion = ONIG_OPTION_POSIX_REGION,$/;" e enum:__anon8 +OnigOptionPosixRegion native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionPosixRegion = ONIG_OPTION_POSIX_REGION,$/;" e enum:__anon15 +OnigOptionSingleline native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionSingleline = ONIG_OPTION_SINGLELINE,$/;" e enum:__anon1 +OnigOptionSingleline native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionSingleline = ONIG_OPTION_SINGLELINE,$/;" e enum:__anon8 +OnigOptionSingleline native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionSingleline = ONIG_OPTION_SINGLELINE,$/;" e enum:__anon15 +OnigOptionType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigOptionType;$/;" t +OnigOptionType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigOptionType;$/;" t +OnigOptionType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigOptionType;$/;" t +OnigRegExp native/v8_extensions/onig_reg_exp.h /^class OnigRegExp : public CefV8Handler {$/;" c namespace:v8_extensions +OnigRegExp native/v8_extensions/onig_reg_exp.js /^ function OnigRegExp(source) {$/;" f +OnigRegExp native/v8_extensions/onig_reg_exp.js /^ }$/;" c +OnigRegExp native/v8_extensions/onig_reg_exp.mm /^OnigRegExp::OnigRegExp() : CefV8Handler() {$/;" f class:v8_extensions::OnigRegExp +OnigRegExp native/v8_extensions/onig_reg_exp_linux.cpp /^OnigRegExp::OnigRegExp() :$/;" f class:v8_extensions::OnigRegExp +OnigRegExp.search native/v8_extensions/onig_reg_exp.js /^ OnigRegExp.prototype.search = search;$/;" m +OnigRegExp.test native/v8_extensions/onig_reg_exp.js /^ OnigRegExp.prototype.test = test;$/;" m +OnigRegExpUserData native/v8_extensions/onig_reg_exp.mm /^ OnigRegExpUserData(CefRefPtr source) {$/;" f class:v8_extensions::OnigRegExpUserData +OnigRegExpUserData native/v8_extensions/onig_reg_exp.mm /^class OnigRegExpUserData : public CefBase {$/;" c namespace:v8_extensions file: +OnigRegex native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef OnigRegexType* OnigRegex;$/;" t +OnigRegex native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef OnigRegexType* OnigRegex;$/;" t +OnigRegex native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef OnigRegexType* OnigRegex;$/;" t +OnigRegexType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigRegexType;$/;" t typeref:struct:re_pattern_buffer +OnigRegexType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigRegexType;$/;" t typeref:struct:re_pattern_buffer +OnigRegexType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigRegexType;$/;" t typeref:struct:re_pattern_buffer +OnigRegexpUserData native/v8_extensions/onig_reg_exp_linux.cpp /^ OnigRegexpUserData(CefRefPtr source) {$/;" f class:v8_extensions::OnigRegexpUserData +OnigRegexpUserData native/v8_extensions/onig_reg_exp_linux.cpp /^class OnigRegexpUserData: public CefBase {$/;" c namespace:v8_extensions file: +OnigRegion native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct re_registers OnigRegion;$/;" t typeref:struct:re_registers +OnigRegion native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct re_registers OnigRegion;$/;" t typeref:struct:re_registers +OnigRegion native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct re_registers OnigRegion;$/;" t typeref:struct:re_registers +OnigRepeatRange native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigRepeatRange;$/;" t typeref:struct:__anon6 +OnigRepeatRange native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigRepeatRange;$/;" t typeref:struct:__anon13 +OnigRepeatRange native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigRepeatRange;$/;" t typeref:struct:__anon20 +OnigScanner native/v8_extensions/onig_scanner.h /^ class OnigScanner : public CefV8Handler {$/;" c namespace:v8_extensions +OnigScanner native/v8_extensions/onig_scanner.js /^ function OnigScanner(sources) {$/;" f +OnigScanner native/v8_extensions/onig_scanner.js /^ }$/;" c +OnigScanner native/v8_extensions/onig_scanner.mm /^OnigScanner::OnigScanner() : CefV8Handler() {$/;" f class:v8_extensions::OnigScanner +OnigScanner.buildScanner native/v8_extensions/onig_scanner.js /^ OnigScanner.prototype.buildScanner = buildScanner;$/;" m +OnigScanner.findNextMatch native/v8_extensions/onig_scanner.js /^ OnigScanner.prototype.findNextMatch = findNextMatch;$/;" m +OnigScannerUserData native/v8_extensions/onig_scanner.mm /^ OnigScannerUserData(CefRefPtr sources) {$/;" f class:v8_extensions::OnigScannerUserData +OnigScannerUserData native/v8_extensions/onig_scanner.mm /^class OnigScannerUserData : public CefBase {$/;" c namespace:v8_extensions file: +OnigSyntaxASIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;$/;" v +OnigSyntaxASIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;$/;" v +OnigSyntaxASIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;$/;" v +OnigSyntaxEmacs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;$/;" v +OnigSyntaxEmacs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;$/;" v +OnigSyntaxEmacs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;$/;" v +OnigSyntaxGnuRegex native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;$/;" v +OnigSyntaxGnuRegex native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;$/;" v +OnigSyntaxGnuRegex native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;$/;" v +OnigSyntaxGrep native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;$/;" v +OnigSyntaxGrep native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;$/;" v +OnigSyntaxGrep native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;$/;" v +OnigSyntaxJava native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;$/;" v +OnigSyntaxJava native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;$/;" v +OnigSyntaxJava native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;$/;" v +OnigSyntaxPerl native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;$/;" v +OnigSyntaxPerl native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;$/;" v +OnigSyntaxPerl native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;$/;" v +OnigSyntaxPerl_NG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl_NG;$/;" v +OnigSyntaxPerl_NG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl_NG;$/;" v +OnigSyntaxPerl_NG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl_NG;$/;" v +OnigSyntaxPosixBasic native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;$/;" v +OnigSyntaxPosixBasic native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;$/;" v +OnigSyntaxPosixBasic native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;$/;" v +OnigSyntaxPosixExtended native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;$/;" v +OnigSyntaxPosixExtended native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;$/;" v +OnigSyntaxPosixExtended native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;$/;" v +OnigSyntaxRuby native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;$/;" v +OnigSyntaxRuby native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;$/;" v +OnigSyntaxRuby native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;$/;" v +OnigSyntaxType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigSyntaxType;$/;" t typeref:struct:__anon4 +OnigSyntaxType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigSyntaxType;$/;" t typeref:struct:__anon11 +OnigSyntaxType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigSyntaxType;$/;" t typeref:struct:__anon18 +OnigUChar native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned char OnigUChar;$/;" t +OnigUChar native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned char OnigUChar;$/;" t +OnigUChar native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned char OnigUChar;$/;" t +OnigWarnFunc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef void (*OnigWarnFunc) P_((const char* s));$/;" t +OnigWarnFunc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef void (*OnigWarnFunc) P_((const char* s));$/;" t +OnigWarnFunc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef void (*OnigWarnFunc) P_((const char* s));$/;" t +Open native/atom_cef_client_mac.mm /^void AtomCefClient::Open() {$/;" f class:AtomCefClient +Open native/atom_cef_client_mac.mm /^void AtomCefClient::Open(std::string path) {$/;" f class:AtomCefClient +Open native/v8_extensions/native_linux.cpp /^void NativeHandler::Open(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +OpenDialog native/v8_extensions/native_linux.cpp /^void NativeHandler::OpenDialog(const CefString& name,$/;" f class:v8_extensions::NativeHandler +OpenUnstable native/atom_cef_client_mac.mm /^void AtomCefClient::OpenUnstable() {$/;" f class:AtomCefClient +OpenUnstable native/atom_cef_client_mac.mm /^void AtomCefClient::OpenUnstable(std::string path) {$/;" f class:AtomCefClient +PV_ native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define PV_(/;" d +PV_ native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define PV_(/;" d +PV_ native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define PV_(/;" d +P_ native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define P_(/;" d +P_ native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define P_(/;" d +P_ native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define P_(/;" d +PathToOpen native/linux/atom_app.cpp /^string PathToOpen() {$/;" f +PluginInfoActivated native/atom_gtk.cpp /^gboolean PluginInfoActivated(GtkWidget* widget) {$/;" f +PopupWindowActivated native/atom_gtk.cpp /^gboolean PopupWindowActivated(GtkWidget* widget) {$/;" f +ProgramName native/v8_extensions/readtags.c /^static const char *ProgramName;$/;" v file: +PseudoTagPrefix native/v8_extensions/readtags.c /^const char *const PseudoTagPrefix = "!_";$/;" v +READTAGS_H native/v8_extensions/readtags.h /^#define READTAGS_H$/;" d +REQUIRE_FILE_THREAD native/atom_cef_client.cpp /^#define REQUIRE_FILE_THREAD(/;" d file: +REQUIRE_FILE_THREAD native/linux/util.h /^#define REQUIRE_FILE_THREAD(/;" d +REQUIRE_IO_THREAD native/atom_cef_client.cpp /^#define REQUIRE_IO_THREAD(/;" d file: +REQUIRE_IO_THREAD native/linux/util.h /^#define REQUIRE_IO_THREAD(/;" d +REQUIRE_UI_THREAD native/atom_cef_client.cpp /^#define REQUIRE_UI_THREAD(/;" d file: +REQUIRE_UI_THREAD native/linux/util.h /^#define REQUIRE_UI_THREAD(/;" d +Read native/v8_extensions/native_linux.cpp /^void NativeHandler::Read(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +ReadFromPasteboard native/v8_extensions/native_linux.cpp /^void NativeHandler::ReadFromPasteboard(const CefString& name,$/;" f class:v8_extensions::NativeHandler +Reload native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::Reload(CefRefPtr browser) {$/;" f class:AtomCefRenderProcessHandler +Reload native/linux/atom_cef_render_process_handler.cpp /^void AtomCefRenderProcessHandler::Reload(CefRefPtr browser) {$/;" f class:AtomCefRenderProcessHandler +ReloadButtonClicked native/atom_gtk.cpp /^void ReloadButtonClicked(GtkButton* button) {$/;" f +Remove native/v8_extensions/native_linux.cpp /^void NativeHandler::Remove(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +RequestActivated native/atom_gtk.cpp /^gboolean RequestActivated(GtkWidget* widget) {$/;" f +Save native/atom_cef_client.cpp /^bool AtomCefClient::Save(const std::string& path, const std::string& data) {$/;" f class:AtomCefClient +SchemeHandlerActivated native/atom_gtk.cpp /^gboolean SchemeHandlerActivated(GtkWidget* widget) {$/;" f +Search native/v8_extensions/onig_reg_exp.mm /^ CefRefPtr Search(CefRefPtr string, CefRefPtr index) {$/;" f class:v8_extensions::OnigRegExpUserData +Search native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr Search(CefRefPtr argument,$/;" f class:v8_extensions::OnigRegexpUserData +SearchRegion native/v8_extensions/onig_reg_exp_linux.cpp /^ OnigRegion* SearchRegion(string input, int index) {$/;" f class:v8_extensions::OnigRegexpUserData +SendNotification native/atom_cef_client_gtk.cpp /^void ClientHandler::SendNotification(NotificationType type) {$/;" f class:ClientHandler +SendNotification native/atom_cef_client_win.mm /^void ClientHandler::SendNotification(NotificationType type) {$/;" f class:ClientHandler +SendNotification native/linux/client_handler.cpp /^void ClientHandler::SendNotification(NotificationType type) {$/;" f class:ClientHandler +SetLoading native/atom_cef_client_gtk.cpp /^void ClientHandler::SetLoading(bool isLoading) {$/;" f class:ClientHandler +SetLoading native/atom_cef_client_win.mm /^void ClientHandler::SetLoading(bool isLoading) {$/;" f class:ClientHandler +SetMainHwnd native/linux/client_handler.cpp /^void ClientHandler::SetMainHwnd(CefWindowHandle hwnd) {$/;" f class:ClientHandler +SetNavState native/atom_cef_client_gtk.cpp /^void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) {$/;" f class:ClientHandler +SetNavState native/atom_cef_client_win.mm /^void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) {$/;" f class:ClientHandler +SetWindow native/linux/client_handler.cpp /^void ClientHandler::SetWindow(GtkWidget* widget) {$/;" f class:ClientHandler +ShowDevTools native/atom_cef_client_mac.mm /^void AtomCefClient::ShowDevTools(CefRefPtr browser) {$/;" f class:AtomCefClient +ShowSaveDialog native/atom_cef_client_mac.mm /^void AtomCefClient::ShowSaveDialog(int replyId, CefRefPtr browser) {$/;" f class:AtomCefClient +Shutdown native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::Shutdown(CefRefPtr browser) {$/;" f class:AtomCefRenderProcessHandler +SortMethod native/v8_extensions/readtags.c /^static sortType SortMethod;$/;" v file: +SortOverride native/v8_extensions/readtags.c /^static int SortOverride;$/;" v file: +StopButtonClicked native/atom_gtk.cpp /^void StopButtonClicked(GtkButton* button) {$/;" f +TAB native/v8_extensions/readtags.c /^#define TAB /;" d file: +TAG_FOLDSORTED native/v8_extensions/readtags.h /^ TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED$/;" e enum:__anon26 +TAG_FULLMATCH native/v8_extensions/readtags.h /^#define TAG_FULLMATCH /;" d +TAG_IGNORECASE native/v8_extensions/readtags.h /^#define TAG_IGNORECASE /;" d +TAG_OBSERVECASE native/v8_extensions/readtags.h /^#define TAG_OBSERVECASE /;" d +TAG_PARTIALMATCH native/v8_extensions/readtags.h /^#define TAG_PARTIALMATCH /;" d +TAG_SORTED native/v8_extensions/readtags.h /^ TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED$/;" e enum:__anon26 +TAG_UNSORTED native/v8_extensions/readtags.h /^ TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED$/;" e enum:__anon26 +TagFailure native/v8_extensions/readtags.h /^typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult;$/;" e enum:__anon27 +TagFileName native/v8_extensions/readtags.c /^static const char *TagFileName = "tags";$/;" v file: +TagSuccess native/v8_extensions/readtags.h /^typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult;$/;" e enum:__anon27 +Tags native/v8_extensions/tags.h /^class Tags : public CefV8Handler {$/;" c namespace:v8_extensions +Tags native/v8_extensions/tags.mm /^Tags::Tags() : CefV8Handler() {$/;" f class:v8_extensions::Tags +TerminationSignalHandler native/atom_gtk.cpp /^void TerminationSignalHandler(int signatl) {$/;" f +TerminationSignalHandler native/linux/atom_app.cpp /^void TerminationSignalHandler(int signatl) {$/;" f +Test native/v8_extensions/onig_reg_exp.mm /^ CefRefPtr Test(CefRefPtr string, CefRefPtr index) {$/;" f class:v8_extensions::OnigRegExpUserData +Test native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr Test(CefRefPtr argument,$/;" f class:v8_extensions::OnigRegexpUserData +ToggleDevTools native/atom_cef_client_mac.mm /^void AtomCefClient::ToggleDevTools(CefRefPtr browser) {$/;" f class:AtomCefClient +TranslateList native/message_translation.cpp /^void TranslateList(CefRefPtr source, CefRefPtr target) {$/;" f +TranslateList native/message_translation.cpp /^void TranslateList(CefRefPtr source, CefRefPtr target) {$/;" f +TranslateListValue native/message_translation.cpp /^void TranslateListValue(CefRefPtr list, int index, CefRefPtr value) {$/;" f +TranslateListValue native/message_translation.cpp /^void TranslateListValue(CefRefPtr list, int index, CefRefPtr value) {$/;" f +UChar native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define UChar /;" d +UChar native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define UChar /;" d +UChar native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define UChar /;" d +URLBAR_HEIGHT native/atom_win.cpp /^#define URLBAR_HEIGHT /;" d file: +URLEntryActivate native/atom_gtk.cpp /^void URLEntryActivate(GtkEntry* entry) {$/;" f +UTIL_H_ native/linux/util.h /^#define UTIL_H_$/;" d +UnwatchPath native/v8_extensions/native_linux.cpp /^void NativeHandler::UnwatchPath(const CefString& name,$/;" f class:v8_extensions::NativeHandler +Usage native/v8_extensions/readtags.c /^const char *const Usage =$/;" v +WatchPath native/v8_extensions/native_linux.cpp /^void NativeHandler::WatchPath(const CefString& name,$/;" f class:v8_extensions::NativeHandler +WebGLActivated native/atom_gtk.cpp /^gboolean WebGLActivated(GtkWidget* widget) {$/;" f +WndProc native/atom_win.cpp /^LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam,$/;" f +Write native/v8_extensions/native_linux.cpp /^void NativeHandler::Write(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler +WriteToPasteboard native/v8_extensions/native_linux.cpp /^void NativeHandler::WriteToPasteboard(const CefString& name,$/;" f class:v8_extensions::NativeHandler +XMLHttpRequestActivated native/atom_gtk.cpp /^gboolean XMLHttpRequestActivated(GtkWidget* widget) {$/;" f +ZoomInActivated native/atom_gtk.cpp /^gboolean ZoomInActivated(GtkWidget* widget) {$/;" f +ZoomOutActivated native/atom_gtk.cpp /^gboolean ZoomOutActivated(GtkWidget* widget) {$/;" f +ZoomResetActivated native/atom_gtk.cpp /^gboolean ZoomResetActivated(GtkWidget* widget) {$/;" f +__coffeeCache src/stdlib/require.coffee /^__coffeeCache = (filePath) ->$/;" f +__exists src/stdlib/require.coffee /^__exists = (path) ->$/;" f +__expand src/stdlib/require.coffee /^__expand = (path) ->$/;" f +__isFile src/stdlib/require.coffee /^__isFile = (path) ->$/;" f +__read src/stdlib/require.coffee /^__read = (path) ->$/;" f +absolute src/stdlib/fs.coffee /^ absolute: (path) ->$/;" f +activate src/app/text-mate-theme.coffee /^ activate: ->$/;" f +activate src/extensions/snippets/src/snippets.coffee /^ activate: (@rootView) ->$/;" f +activate src/extensions/strip-trailing-whitespace/src/strip-trailing-whitespace.coffee /^ activate: (rootView) ->$/;" f +activateEditSessionForPath src/app/editor.coffee /^ activateEditSessionForPath: (path) ->$/;" f +activateExtension src/app/root-view.coffee /^ activateExtension: (extension, config) ->$/;" f +activates autocomplete on all existing and future editors (but not on autocomplete's own mini editor) src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "activates autocomplete on all existing and future editors (but not on autocomplete's own mini editor)", ->$/;" f +activates the associated edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "activates the associated edit session", ->$/;" f +active file is still shown as selected in the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "active file is still shown as selected in the tree view", ->$/;" f +activeKeybindings src/app/root-view.coffee /^ activeKeybindings: ->$/;" f +add src/app/point.coffee /^ add: (other) ->$/;" f +add src/app/range.coffee /^ add: (point) ->$/;" f +add src/extensions/tree-view/src/tree-view.coffee /^ add: ->$/;" f +add a file, closes the dialog and selects the file in the tree-view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "add a file, closes the dialog and selects the file in the tree-view", ->$/;" f +addAnchor src/app/buffer.coffee /^ addAnchor: (options) ->$/;" f +addAnchor src/app/edit-session.coffee /^ addAnchor: (options={}) ->$/;" f +addAnchorAtBufferPosition src/app/edit-session.coffee /^ addAnchorAtBufferPosition: (bufferPosition, options) ->$/;" f +addAnchorAtPosition src/app/buffer.coffee /^ addAnchorAtPosition: (position, options) ->$/;" f +addAnchorRange src/app/buffer.coffee /^ addAnchorRange: (range, editSession) ->$/;" f +addAnchorRange src/app/edit-session.coffee /^ addAnchorRange: (range) ->$/;" f +addCursorAtBufferPosition src/app/edit-session.coffee /^ addCursorAtBufferPosition: (bufferPosition) ->$/;" f +addCursorAtBufferPosition src/app/editor.coffee /^ addCursorAtBufferPosition: (bufferPosition) -> @activeEditSession.addCursorAtBufferPosition(bufferPosition)$/;" f +addCursorAtScreenPosition src/app/edit-session.coffee /^ addCursorAtScreenPosition: (screenPosition) ->$/;" f +addCursorAtScreenPosition src/app/editor.coffee /^ addCursorAtScreenPosition: (screenPosition) -> @activeEditSession.addCursorAtScreenPosition(screenPosition)$/;" f +addCursorView src/app/editor.coffee /^ addCursorView: (cursor, options) ->$/;" f +addSelectionForBufferRange src/app/edit-session.coffee /^ addSelectionForBufferRange: (bufferRange, options={}) ->$/;" f +addSelectionForBufferRange src/app/editor.coffee /^ addSelectionForBufferRange: (bufferRange, options) -> @activeEditSession.addSelectionForBufferRange(bufferRange, options)$/;" f +addSelectionForCursor src/app/edit-session.coffee /^ addSelectionForCursor: (cursor) ->$/;" f +addSelectionView src/app/editor.coffee /^ addSelectionView: (selection) ->$/;" f +addTabForEditSession src/extensions/tabs/src/tabs.coffee /^ addTabForEditSession: (editSession) ->$/;" f +address native/v8_extensions/readtags.h /^ } address;$/;" m struct:__anon33 typeref:struct:__anon33::__anon34 +adds a directory and closes the dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "adds a directory and closes the dialog", ->$/;" f +adds a tab for the new edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "adds a tab for the new edit session", ->$/;" f +adds and removes an error class to the command panel and displays the error message src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "adds and removes an error class to the command panel and displays the error message", ->$/;" f +adds and removes an error class to the command panel and does not close it src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "adds and removes an error class to the command panel and does not close it", ->$/;" f +adds the autocomplete view to the editor above the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "adds the autocomplete view to the editor above the cursor", ->$/;" f +adds the autocomplete view to the editor below the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "adds the autocomplete view to the editor below the cursor", ->$/;" f +adjustDimensions src/app/pane-column.coffee /^ adjustDimensions: ->$/;" f +adjustDimensions src/app/pane-row.coffee /^ adjustDimensions: ->$/;" f +adjustDimensions src/app/pane.coffee /^ adjustDimensions: -> # do nothing$/;" f +adjustIndentationForLine src/app/selection.coffee /^ adjustIndentationForLine: (line, delta) ->$/;" f +adjustPaneDimensions src/app/root-view.coffee /^ adjustPaneDimensions: ->$/;" f +adviseBefore src/stdlib/underscore-extensions.coffee /^ adviseBefore: (object, methodName, advice) ->$/;" f +afterAttach src/app/editor.coffee /^ afterAttach: (onDom) ->$/;" f +afterAttach src/app/gutter.coffee /^ afterAttach: (onDom) ->$/;" f +afterAttach src/app/root-view.coffee /^ afterAttach: (onDom) ->$/;" f +afterAttach src/extensions/tree-view/src/tree-view.coffee /^ afterAttach: (onDom) ->$/;" f +afterSubscribe src/app/directory.coffee /^ afterSubscribe: ->$/;" f +afterSubscribe src/app/file.coffee /^ afterSubscribe: ->$/;" f +afterUnsubscribe src/app/directory.coffee /^ afterUnsubscribe: ->$/;" f +afterUnsubscribe src/app/file.coffee /^ afterUnsubscribe: ->$/;" f +alloc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int alloc; \/* allocated space for p *\/$/;" m struct:re_pattern_buffer +alloc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int alloc; \/* allocated space for p *\/$/;" m struct:re_pattern_buffer +alloc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int alloc; \/* allocated space for p *\/$/;" m struct:re_pattern_buffer +allocated native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int allocated;$/;" m struct:re_registers +allocated native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int allocated;$/;" m struct:OnigCaptureTreeNodeStruct +allocated native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int allocated;$/;" m struct:re_registers +allocated native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int allocated;$/;" m struct:OnigCaptureTreeNodeStruct +allocated native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int allocated;$/;" m struct:re_registers +allocated native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int allocated;$/;" m struct:OnigCaptureTreeNodeStruct +allows the regex to contain an escaped forward slash src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "allows the regex to contain an escaped forward slash", ->$/;" f +anchor native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int anchor; \/* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF *\/$/;" m struct:re_pattern_buffer +anchor native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int anchor; \/* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF *\/$/;" m struct:re_pattern_buffer +anchor native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int anchor; \/* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF *\/$/;" m struct:re_pattern_buffer +anchorRangesForBufferPosition src/app/edit-session.coffee /^ anchorRangesForBufferPosition: (bufferPosition) ->$/;" f +anchorRangesForPosition src/app/buffer.coffee /^ anchorRangesForPosition: (position) ->$/;" f +anchor_dmax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance anchor_dmax; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer +anchor_dmax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance anchor_dmax; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer +anchor_dmax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance anchor_dmax; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer +anchor_dmin native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance anchor_dmin; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer +anchor_dmin native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance anchor_dmin; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer +anchor_dmin native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance anchor_dmin; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer +anychar native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint anychar;$/;" m struct:__anon3 +anychar native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint anychar;$/;" m struct:__anon10 +anychar native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint anychar;$/;" m struct:__anon17 +anychar_anytime native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint anychar_anytime;$/;" m struct:__anon3 +anychar_anytime native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint anychar_anytime;$/;" m struct:__anon10 +anychar_anytime native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint anychar_anytime;$/;" m struct:__anon17 +anytime native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint anytime;$/;" m struct:__anon3 +anytime native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint anytime;$/;" m struct:__anon10 +anytime native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint anytime;$/;" m struct:__anon17 +appendRegion src/app/selection-view.coffee /^ appendRegion: (rows, start, end) ->$/;" f +appendToLinesView src/app/editor.coffee /^ appendToLinesView: (view) ->$/;" f +appends a status bear to all existing and new editors src/extensions/tabs/spec/tabs-spec.coffee /^ it "appends a status bear to all existing and new editors", ->$/;" f +appends a wrap guide to all existing and new editors src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "appends a wrap guide to all existing and new editors", ->$/;" f +applyStylesheet src/app/window.coffee /^ applyStylesheet: (id, text) ->$/;" f +applyTo src/stdlib/settings.coffee /^ applyTo: (object) ->$/;" f +apply_all_case_fold native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);$/;" m struct:OnigEncodingTypeST +apply_all_case_fold native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);$/;" m struct:OnigEncodingTypeST +apply_all_case_fold native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);$/;" m struct:OnigEncodingTypeST +arguments native/atom_application.h /^@property (nonatomic, retain) NSDictionary *arguments;$/;" v +arguments native/atom_application.mm /^@synthesize arguments=_arguments;$/;" v +atom.sendMessageToBrowserProcess native/v8_extensions/atom.js /^this.atom = {$/;" p +attach src/extensions/autocomplete/src/autocomplete.coffee /^ attach: ->$/;" f +attach src/extensions/command-panel/src/command-panel.coffee /^ attach: (text='', options={}) ->$/;" f +attach src/extensions/event-palette/src/event-palette.coffee /^ attach: ->$/;" f +attach src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ attach: ->$/;" f +attach src/extensions/markdown-preview/src/markdown-preview.coffee /^ attach: ->$/;" f +attach src/extensions/outline-view/src/outline-view.coffee /^ attach: ->$/;" f +attach src/extensions/tree-view/src/tree-view.coffee /^ attach: ->$/;" f +attachRootView src/app/window.coffee /^ attachRootView: (pathToOpen) ->$/;" f +author native/v8_extensions/readtags.c /^ char *author;$/;" m struct:sTagFile::__anon25 file: +author native/v8_extensions/readtags.h /^ const char *author;$/;" m struct:__anon28::__anon31 +auto-fills the placeholder text and highlights it when navigating to that tab stop src/extensions/snippets/spec/snippets-spec.coffee /^ it "auto-fills the placeholder text and highlights it when navigating to that tab stop", ->$/;" f +autoDecreaseIndentForBufferRow src/app/language-mode.coffee /^ autoDecreaseIndentForBufferRow: (bufferRow) ->$/;" f +autoDecreaseIndentForRow src/app/edit-session.coffee /^ autoDecreaseIndentForRow: (bufferRow) ->$/;" f +autoIncreaseIndentForBufferRow src/app/edit-session.coffee /^ autoIncreaseIndentForBufferRow: (bufferRow) ->$/;" f +autoIncreaseIndentForBufferRow src/app/language-mode.coffee /^ autoIncreaseIndentForBufferRow: (bufferRow) ->$/;" f +autoIndentBufferRow src/app/edit-session.coffee /^ autoIndentBufferRow: (bufferRow) ->$/;" f +autoIndentBufferRow src/app/language-mode.coffee /^ autoIndentBufferRow: (bufferRow) ->$/;" f +autoIndentBufferRows src/app/edit-session.coffee /^ autoIndentBufferRows: (startRow, endRow) ->$/;" f +autoIndentBufferRows src/app/language-mode.coffee /^ autoIndentBufferRows: (startRow, endRow) ->$/;" f +autoIndentText src/app/selection.coffee /^ autoIndentText: (text) ->$/;" f +autoOutdent src/app/selection.coffee /^ autoOutdent: ->$/;" f +autosave src/app/editor.coffee /^ autosave: ->$/;" f +autoscroll src/app/editor.coffee /^ autoscroll: (options={}) ->$/;" f +autoscrolled src/app/cursor-view.coffee /^ autoscrolled: ->$/;" f +autoscrolled src/app/cursor.coffee /^ autoscrolled: ->$/;" f +autoscrolled src/app/selection-view.coffee /^ autoscrolled: ->$/;" f +autoscrolled src/app/selection.coffee /^ autoscrolled: ->$/;" f +backspace src/app/edit-session.coffee /^ backspace: ->$/;" f +backspace src/app/editor.coffee /^ backspace: -> @activeEditSession.backspace()$/;" f +backspace src/app/selection.coffee /^ backspace: ->$/;" f +backspaceToBeginningOfWord src/app/edit-session.coffee /^ backspaceToBeginningOfWord: ->$/;" f +backspaceToBeginningOfWord src/app/editor.coffee /^ backspaceToBeginningOfWord: -> @activeEditSession.backspaceToBeginningOfWord()$/;" f +backspaceToBeginningOfWord src/app/selection.coffee /^ backspaceToBeginningOfWord: ->$/;" f +backwardsIterateTokensInBufferRange src/app/tokenized-buffer.coffee /^ backwardsIterateTokensInBufferRange: (bufferRange, iterator) ->$/;" f +backwardsScanInRange src/app/buffer.coffee /^ backwardsScanInRange: (regex, range, iterator) ->$/;" f +backwardsScanInRange src/app/edit-session.coffee /^ backwardsScanInRange: (args...) -> @buffer.backwardsScanInRange(args...)$/;" f +backwardsScanInRange src/app/editor.coffee /^ backwardsScanInRange: (args...) -> @getBuffer().backwardsScanInRange(args...)$/;" f +base src/stdlib/fs.coffee /^ base: (path, ext) ->$/;" f +basename src/stdlib/path.coffee /^ basename: (filepath) ->$/;" f +beg native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int beg;$/;" m struct:OnigCaptureTreeNodeStruct +beg native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int* beg;$/;" m struct:re_registers +beg native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int beg;$/;" m struct:OnigCaptureTreeNodeStruct +beg native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int* beg;$/;" m struct:re_registers +beg native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int beg;$/;" m struct:OnigCaptureTreeNodeStruct +beg native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int* beg;$/;" m struct:re_registers +behavior native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int behavior;$/;" m struct:__anon4 +behavior native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int behavior;$/;" m struct:__anon11 +behavior native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int behavior;$/;" m struct:__anon18 +bindDefaultKeys src/app/keymap.coffee /^ bindDefaultKeys: ->$/;" f +bindKeys src/app/editor.coffee /^ bindKeys: ->$/;" f +bindKeys src/app/keymap.coffee /^ bindKeys: (selector, bindings) ->$/;" f +bindingSetsForNode src/app/keymap.coffee /^ bindingSetsForNode: (node, candidateBindingSets = @bindingSets) ->$/;" f +bindingsForElement src/app/keymap.coffee /^ bindingsForElement: (element) ->$/;" f +blink src/app/cursor-view.coffee /^ blink = => @toggleClass('blink-off')$/;" f +breakOutAtomicTokens src/app/screen-line.coffee /^ breakOutAtomicTokens: (inputTokens, tabLength) ->$/;" f +breakOutAtomicTokens src/app/token.coffee /^ breakOutAtomicTokens: (tabLength, breakOutLeadingWhitespace) ->$/;" f +bt_mem_end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int bt_mem_end; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer +bt_mem_end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int bt_mem_end; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer +bt_mem_end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int bt_mem_end; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer +bt_mem_start native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int bt_mem_start; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer +bt_mem_start native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int bt_mem_start; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer +bt_mem_start native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int bt_mem_start; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer +buffer native/v8_extensions/readtags.c /^ char *buffer;$/;" m struct:__anon22 file: +bufferColumnForScreenColumn src/app/screen-line.coffee /^ bufferColumnForScreenColumn: (screenColumn, options) ->$/;" f +bufferForPath src/app/project.coffee /^ bufferForPath: (filePath) ->$/;" f +bufferLineCount src/app/old-line-map.coffee /^ bufferLineCount: ->$/;" f +bufferPositionForScreenPosition src/app/display-buffer.coffee /^ bufferPositionForScreenPosition: (position, options) ->$/;" f +bufferPositionForScreenPosition src/app/edit-session.coffee /^ bufferPositionForScreenPosition: (screenPosition, options) -> @displayBuffer.bufferPositionForScreenPosition(screenPosition, options)$/;" f +bufferPositionForScreenPosition src/app/editor.coffee /^ bufferPositionForScreenPosition: (position, options) -> @activeEditSession.bufferPositionForScreenPosition(position, options)$/;" f +bufferPositionForScreenPosition src/app/line-map.coffee /^ bufferPositionForScreenPosition: (screenPosition, options) ->$/;" f +bufferPositionForScreenPosition src/app/old-line-map.coffee /^ bufferPositionForScreenPosition: (screenPosition, options) ->$/;" f +bufferRangeForBufferRow src/app/edit-session.coffee /^ bufferRangeForBufferRow: (row, options) -> @buffer.rangeForRow(row, options)$/;" f +bufferRangeForScreenRange src/app/display-buffer.coffee /^ bufferRangeForScreenRange: (screenRange) ->$/;" f +bufferRangeForScreenRange src/app/edit-session.coffee /^ bufferRangeForScreenRange: (range) -> @displayBuffer.bufferRangeForScreenRange(range)$/;" f +bufferRangeForScreenRange src/app/editor.coffee /^ bufferRangeForScreenRange: (range) -> @activeEditSession.bufferRangeForScreenRange(range)$/;" f +bufferRangeForScreenRange src/app/line-map.coffee /^ bufferRangeForScreenRange: (screenRange) ->$/;" f +bufferRangeForScreenRange src/app/old-line-map.coffee /^ bufferRangeForScreenRange: (screenRange) ->$/;" f +bufferRowAndScreenLineForScreenRow src/app/line-map.coffee /^ bufferRowAndScreenLineForScreenRow: (screenRow) ->$/;" f +bufferRowForScreenRow src/app/display-buffer.coffee /^ bufferRowForScreenRow: (screenRow) ->$/;" f +bufferRowsForScreenRows src/app/display-buffer.coffee /^ bufferRowsForScreenRows: (startRow, endRow) ->$/;" f +bufferRowsForScreenRows src/app/edit-session.coffee /^ bufferRowsForScreenRows: (startRow, endRow) -> @displayBuffer.bufferRowsForScreenRows(startRow, endRow)$/;" f +bufferRowsForScreenRows src/app/editor.coffee /^ bufferRowsForScreenRows: (startRow, endRow) -> @activeEditSession.bufferRowsForScreenRows(startRow, endRow)$/;" f +buildBuffer src/app/project.coffee /^ buildBuffer: (filePath) ->$/;" f +buildEditSession src/app/project.coffee /^ buildEditSession: (buffer, editSessionOptions) ->$/;" f +buildEditSessionForPath src/app/project.coffee /^ buildEditSessionForPath: (filePath, editSessionOptions={}) ->$/;" f +buildEntries src/extensions/tree-view/src/directory-view.coffee /^ buildEntries: ->$/;" f +buildGlobalSettingsRulesets src/app/text-mate-theme.coffee /^ buildGlobalSettingsRulesets: ({settings}) ->$/;" f +buildHardTabToken src/app/token.coffee /^ buildHardTabToken: (tabLength) ->$/;" f +buildIndentString src/app/edit-session.coffee /^ buildIndentString: (number) ->$/;" f +buildLineElementsForScreenRows src/app/editor.coffee /^ buildLineElementsForScreenRows: (startRow, endRow) ->$/;" f +buildLineForBufferRow src/app/display-buffer.coffee /^ buildLineForBufferRow: (bufferRow) ->$/;" f +buildLineHtml src/app/editor.coffee /^ buildLineHtml: (screenLine) ->$/;" f +buildLineMap src/app/display-buffer.coffee /^ buildLineMap: ->$/;" f +buildLinesForBufferRows src/app/display-buffer.coffee /^ buildLinesForBufferRows: (startBufferRow, endBufferRow) ->$/;" f +buildLinesHtml src/app/editor.coffee /^ buildLinesHtml: (screenLines) ->$/;" f +buildPaneAxis src/app/pane.coffee /^ buildPaneAxis: (axis) ->$/;" f +buildPlaceholderScreenLineForRow src/app/tokenized-buffer.coffee /^ buildPlaceholderScreenLineForRow: (row) ->$/;" f +buildPlaceholderScreenLinesForRows src/app/tokenized-buffer.coffee /^ buildPlaceholderScreenLinesForRows: (startRow, endRow) ->$/;" f +buildScopeSelectorRulesets src/app/text-mate-theme.coffee /^ buildScopeSelectorRulesets: (scopeSelectorSettings) ->$/;" f +buildScreenLinesForRows src/app/tokenized-buffer.coffee /^ buildScreenLinesForRows: (startRow, endRow, startingStack) ->$/;" f +buildSoftTabToken src/app/token.coffee /^ buildSoftTabToken: (tabLength) ->$/;" f +buildTabToken src/app/token.coffee /^ buildTabToken: (tabLength, isHardTab) ->$/;" f +buildTokenizedScreenLineForRow src/app/tokenized-buffer.coffee /^ buildTokenizedScreenLineForRow: (row, ruleStack) ->$/;" f +buildWordList src/extensions/autocomplete/src/autocomplete.coffee /^ buildWordList: () ->$/;" f +byte_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int byte_len; \/* argument(original) character(s) byte length *\/$/;" m struct:__anon2 +byte_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int byte_len; \/* argument(original) character(s) byte length *\/$/;" m struct:__anon9 +byte_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int byte_len; \/* argument(original) character(s) byte length *\/$/;" m struct:__anon16 +cachedResults native/v8_extensions/onig_scanner.mm /^ std::vector cachedResults;$/;" m class:v8_extensions::OnigScannerUserData file: +caches file paths after first time src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "caches file paths after first time", ->$/;" f +calcSoftWrapColumn src/app/editor.coffee /^ calcSoftWrapColumn: ->$/;" f +calculateDimensions src/app/editor.coffee /^ calculateDimensions: ->$/;" f +calculateLineNumberPadding src/app/gutter.coffee /^ calculateLineNumberPadding: ->$/;" f +calculateNewRange src/app/buffer-change-operation.coffee /^ calculateNewRange: (oldRange, newText) ->$/;" f +calculateWidth src/app/gutter.coffee /^ calculateWidth: ->$/;" f +callback src/extensions/outline-view/spec/outline-view-spec.coffee /^ callback = (tag) ->$/;" f +callback src/extensions/outline-view/spec/outline-view-spec.coffee /^ callback = (tag) ->$/;" f +callback src/extensions/outline-view/src/outline-view.coffee /^ callback = (tag) -> tags.push tag$/;" f +callbacks native/v8_extensions/native_linux.h /^ std::map > callbacks;$/;" m struct:v8_extensions::NotifyContext +calls the deactivate on tree view instance src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "calls the deactivate on tree view instance", ->$/;" f +can parse multiple snippets src/extensions/snippets/spec/snippets-spec.coffee /^ it "can parse multiple snippets", ->$/;" f +can parse snippets with tabstops src/extensions/snippets/spec/snippets-spec.coffee /^ it "can parse snippets with tabstops", ->$/;" f +cancel src/app/select-list.coffee /^ cancel: ->$/;" f +cancel src/extensions/autocomplete/src/autocomplete.coffee /^ cancel: ->$/;" f +cancel src/extensions/tree-view/src/dialog.coffee /^ cancel: ->$/;" f +cancelled src/extensions/event-palette/src/event-palette.coffee /^ cancelled: ->$/;" f +cancelled src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ cancelled: ->$/;" f +cancelled src/extensions/outline-view/src/outline-view.coffee /^ cancelled: ->$/;" f +cancels the autocomplete src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "cancels the autocomplete", ->$/;" f +cancels the autocomplete when clicking on the 'No matches found' li src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "cancels the autocomplete when clicking on the 'No matches found' li", ->$/;" f +capitalize src/stdlib/underscore-extensions.coffee /^ capitalize: (word) ->$/;" f +capture_history native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int capture_history; \/* (?@...) flag (1-31) *\/$/;" m struct:re_pattern_buffer +capture_history native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int capture_history; \/* (?@...) flag (1-31) *\/$/;" m struct:re_pattern_buffer +capture_history native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int capture_history; \/* (?@...) flag (1-31) *\/$/;" m struct:re_pattern_buffer +case_fold_flag native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:__anon7 +case_fold_flag native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:re_pattern_buffer +case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:__anon14 +case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:re_pattern_buffer +case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:__anon21 +case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:re_pattern_buffer +chain native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ struct re_pattern_buffer* chain; \/* escape compile-conflict *\/$/;" m struct:re_pattern_buffer typeref:struct:re_pattern_buffer::re_pattern_buffer +chain native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ struct re_pattern_buffer* chain; \/* escape compile-conflict *\/$/;" m struct:re_pattern_buffer typeref:struct:re_pattern_buffer::re_pattern_buffer +chain native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ struct re_pattern_buffer* chain; \/* escape compile-conflict *\/$/;" m struct:re_pattern_buffer typeref:struct:re_pattern_buffer::re_pattern_buffer +change src/app/buffer.coffee /^ change: (oldRange, newText) ->$/;" f +changeBuffer src/app/buffer-change-operation.coffee /^ changeBuffer: ({ oldRange, newRange, newText, oldText }) ->$/;" f +characterIndexForPosition src/app/buffer.coffee /^ characterIndexForPosition: (position) ->$/;" f +checkoutHead src/app/buffer.coffee /^ checkoutHead: ->$/;" f +checkoutHead src/app/editor.coffee /^ checkoutHead: -> @getBuffer().checkoutHead()$/;" f +checkoutHead src/app/git.coffee /^ checkoutHead: (path) ->$/;" f +childViewStates src/app/pane-grid.coffee /^ childViewStates: ->$/;" f +childs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ struct OnigCaptureTreeNodeStruct** childs;$/;" m struct:OnigCaptureTreeNodeStruct typeref:struct:OnigCaptureTreeNodeStruct::OnigCaptureTreeNodeStruct +childs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ struct OnigCaptureTreeNodeStruct** childs;$/;" m struct:OnigCaptureTreeNodeStruct typeref:struct:OnigCaptureTreeNodeStruct::OnigCaptureTreeNodeStruct +childs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ struct OnigCaptureTreeNodeStruct** childs;$/;" m struct:OnigCaptureTreeNodeStruct typeref:struct:OnigCaptureTreeNodeStruct::OnigCaptureTreeNodeStruct +className src/app/pane-column.coffee /^ className: ->$/;" f +className src/app/pane-row.coffee /^ className: ->$/;" f +clear src/app/selection.coffee /^ clear: ->$/;" f +clear src/app/undo-manager.coffee /^ clear: ->$/;" f +clearAllSelections src/app/edit-session.coffee /^ clearAllSelections: ->$/;" f +clearDirtyRanges src/app/editor.coffee /^ clearDirtyRanges: (intactRanges) ->$/;" f +clearRegions src/app/selection-view.coffee /^ clearRegions: ->$/;" f +clearRenderedLines src/app/editor.coffee /^ clearRenderedLines: ->$/;" f +clearSelection src/app/cursor.coffee /^ clearSelection: ->$/;" f +clearSelections src/app/edit-session.coffee /^ clearSelections: ->$/;" f +clearSelections src/app/editor.coffee /^ clearSelections: -> @activeEditSession.clearSelections()$/;" f +clears the mini-editor and unbinds autocomplete event handlers for move-up and move-down src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "clears the mini-editor and unbinds autocomplete event handlers for move-up and move-down", ->$/;" f +clears the previous mini editor text src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "clears the previous mini editor text", ->$/;" f +clipBufferPosition src/app/edit-session.coffee /^ clipBufferPosition: (bufferPosition) ->$/;" f +clipPosition src/app/buffer.coffee /^ clipPosition: (position) ->$/;" f +clipPosition src/app/old-line-map.coffee /^ clipPosition: (deltaType, position, options={}) ->$/;" f +clipScreenColumn src/app/screen-line.coffee /^ clipScreenColumn: (column, options={}) ->$/;" f +clipScreenPosition src/app/display-buffer.coffee /^ clipScreenPosition: (position, options) ->$/;" f +clipScreenPosition src/app/edit-session.coffee /^ clipScreenPosition: (screenPosition, options) -> @displayBuffer.clipScreenPosition(screenPosition, options)$/;" f +clipScreenPosition src/app/editor.coffee /^ clipScreenPosition: (screenPosition, options={}) -> @activeEditSession.clipScreenPosition(screenPosition, options)$/;" f +clipScreenPosition src/app/line-map.coffee /^ clipScreenPosition: (screenPosition, options={}) ->$/;" f +clipScreenPosition src/app/old-line-map.coffee /^ clipScreenPosition: (screenPosition, options) ->$/;" f +clipToBounds src/app/old-line-map.coffee /^ clipToBounds: (deltaType, position) ->$/;" f +close src/app/editor.coffee /^ close: ->$/;" f +close src/extensions/tree-view/src/dialog.coffee /^ close: ->$/;" f +closes the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "closes the command panel", ->$/;" f +closes the menu and moves the cursor to the end src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "closes the menu and moves the cursor to the end", ->$/;" f +closes the menu without changing the buffer src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "closes the menu without changing the buffer", ->$/;" f +closes the selected active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "closes the selected active edit session", ->$/;" f +closes the selected non-active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "closes the selected non-active edit session", ->$/;" f +code native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];$/;" m struct:__anon2 +code native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];$/;" m struct:__anon9 +code native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];$/;" m struct:__anon16 +code_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int code_len; \/* number of code *\/$/;" m struct:__anon2 +code_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int code_len; \/* number of code *\/$/;" m struct:__anon9 +code_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int code_len; \/* number of code *\/$/;" m struct:__anon16 +code_to_mbc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);$/;" m struct:OnigEncodingTypeST +code_to_mbc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);$/;" m struct:OnigEncodingTypeST +code_to_mbc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);$/;" m struct:OnigEncodingTypeST +code_to_mbclen native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*code_to_mbclen)(OnigCodePoint code);$/;" m struct:OnigEncodingTypeST +code_to_mbclen native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*code_to_mbclen)(OnigCodePoint code);$/;" m struct:OnigEncodingTypeST +code_to_mbclen native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*code_to_mbclen)(OnigCodePoint code);$/;" m struct:OnigEncodingTypeST +coffee src/stdlib/require.coffee /^ coffee: (file) ->$/;" f +collapse src/extensions/tree-view/src/directory-view.coffee /^ collapse: ->$/;" f +collapseDirectory src/extensions/tree-view/src/tree-view.coffee /^ collapseDirectory: ->$/;" f +collapses and selects the selected directory's parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "collapses and selects the selected directory's parent directory", ->$/;" f +collapses and selects the selected file's parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "collapses and selects the selected file's parent directory", ->$/;" f +collapses the selected directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "collapses the selected directory", ->$/;" f +commandForEvent src/app/binding-set.coffee /^ commandForEvent: (event) ->$/;" f +compare src/app/point.coffee /^ compare: (other) ->$/;" f +compile src/extensions/command-panel/src/commands/address.coffee /^ compile: (project, buffer, ranges) ->$/;" f +compile src/extensions/command-panel/src/commands/select-all-matches-in-project.coffee /^ compile: (project, buffer, range) ->$/;" f +compile src/extensions/command-panel/src/commands/select-all-matches.coffee /^ compile: (project, buffer, ranges) ->$/;" f +compile src/extensions/command-panel/src/commands/substitution.coffee /^ compile: (project, buffer, ranges) ->$/;" f +computeIntactRanges src/app/editor.coffee /^ computeIntactRanges: ->$/;" f +concat src/app/old-screen-line.coffee /^ concat: (other) ->$/;" f +confirm src/extensions/autocomplete/src/autocomplete.coffee /^ confirm: ->$/;" f +confirmSelection src/app/select-list.coffee /^ confirmSelection: ->$/;" f +confirmed src/extensions/event-palette/src/event-palette.coffee /^ confirmed: ({eventName}) ->$/;" f +confirmed src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ confirmed : (path) ->$/;" f +confirmed src/extensions/outline-view/src/outline-view.coffee /^ confirmed : ({position, name}) ->$/;" f +constructor src/app/anchor-range.coffee /^ constructor: (bufferRange, @buffer, @editSession) ->$/;" f +constructor src/app/anchor.coffee /^ constructor: (@buffer, options = {}) ->$/;" f +constructor src/app/binding-set.coffee /^ constructor: (@selector, commandsByKeystrokes, @index) ->$/;" f +constructor src/app/buffer-change-operation.coffee /^ constructor: ({@buffer, @oldRange, @newText}) ->$/;" f +constructor src/app/buffer.coffee /^ constructor: (path, @project) ->$/;" f +constructor src/app/cursor.coffee /^ constructor: ({@editSession, screenPosition, bufferPosition}) ->$/;" f +constructor src/app/directory.coffee /^ constructor: (@path) ->$/;" f +constructor src/app/display-buffer.coffee /^ constructor: (@buffer, options={}) ->$/;" f +constructor src/app/edit-session.coffee /^ constructor: ({@project, @buffer, tabLength, @autoIndent, softTabs, @softWrap }) ->$/;" f +constructor src/app/file.coffee /^ constructor: (@path) ->$/;" f +constructor src/app/fold.coffee /^ constructor: (@displayBuffer, @startRow, @endRow) ->$/;" f +constructor src/app/git.coffee /^ constructor: (path) ->$/;" f +constructor src/app/keymap.coffee /^ constructor: ->$/;" f +constructor src/app/language-mode.coffee /^ constructor: (@editSession) ->$/;" f +constructor src/app/line-map.coffee /^ constructor: ->$/;" f +constructor src/app/old-line-map.coffee /^ constructor: ->$/;" f +constructor src/app/old-screen-line.coffee /^ constructor: (@tokens, @text, screenDelta, bufferDelta, extraFields) ->$/;" f +constructor src/app/point.coffee /^ constructor: (@row=0, @column=0) ->$/;" f +constructor src/app/project.coffee /^ constructor: (path) ->$/;" f +constructor src/app/screen-line.coffee /^ constructor: ({tokens, @ruleStack, @bufferRows, @startBufferColumn, @fold, tabLength}) ->$/;" f +constructor src/app/selection.coffee /^ constructor: ({@cursor, @editSession}) ->$/;" f +constructor src/app/text-mate-bundle.coffee /^ constructor: (@path) ->$/;" f +constructor src/app/text-mate-grammar.coffee /^ constructor: (@grammar, { name, contentName, @include, match, begin, end, captures, beginCaptures, endCaptures, patterns, @popRule, hasBackReferences}) ->$/;" f +constructor src/app/text-mate-grammar.coffee /^ constructor: (@grammar, {@scopeName, patterns, @endPattern}) ->$/;" f +constructor src/app/text-mate-grammar.coffee /^ constructor: ({ @name, @fileTypes, @scopeName, patterns, repository, @foldingStopMarker, firstLineMatch}) ->$/;" f +constructor src/app/text-mate-theme.coffee /^ constructor: ({@name, settings}) ->$/;" f +constructor src/app/token.coffee /^ constructor: ({@value, @scopes, @isAtomic, @bufferDelta, @isHardTab}) ->$/;" f +constructor src/app/tokenized-buffer.coffee /^ constructor: (@buffer, { @languageMode, @tabLength }) ->$/;" f +constructor src/app/undo-manager.coffee /^ constructor: ->$/;" f +constructor src/extensions/command-panel/src/command-interpreter.coffee /^ constructor: (@project) ->$/;" f +constructor src/extensions/command-panel/src/commands/address-range.coffee /^ constructor: (@startAddress, @endAddress) ->$/;" f +constructor src/extensions/command-panel/src/commands/composite-command.coffee /^ constructor: (@subcommands) ->$/;" f +constructor src/extensions/command-panel/src/commands/line-address.coffee /^ constructor: (lineNumber) ->$/;" f +constructor src/extensions/command-panel/src/commands/regex-address.coffee /^ constructor: (@pattern, isReversed, options) ->$/;" f +constructor src/extensions/command-panel/src/commands/select-all-matches-in-project.coffee /^ constructor: (pattern) ->$/;" f +constructor src/extensions/command-panel/src/commands/select-all-matches.coffee /^ constructor: (pattern) ->$/;" f +constructor src/extensions/command-panel/src/commands/substitution.coffee /^ constructor: (pattern, replacementText, options) ->$/;" f +constructor src/extensions/command-panel/src/operation.coffee /^ constructor: ({@project, @buffer, bufferRange, @newText, @preserveSelection, @errorMessage}) ->$/;" f +constructor src/extensions/outline-view/src/tag-generator.coffee /^ constructor: (@path, @callback) ->$/;" f +constructor src/extensions/snippets/src/snippet-expansion.coffee /^ constructor: (snippet, @editSession) ->$/;" f +constructor src/extensions/snippets/src/snippet.coffee /^ constructor: ({@bodyPosition, @prefix, @description, body}) ->$/;" f +containsBufferPosition src/app/anchor-range.coffee /^ containsBufferPosition: (bufferPosition) ->$/;" f +containsPoint src/app/range.coffee /^ containsPoint: (point, { exclusive } = {}) ->$/;" f +containsRow src/app/range.coffee /^ containsRow: (row) ->$/;" f +context native/v8_extensions/native_linux.h /^ CefRefPtr context;$/;" m struct:v8_extensions::CallbackContext +copy src/app/edit-session.coffee /^ copy: ->$/;" f +copy src/app/editor.coffee /^ copy: ->$/;" f +copy src/app/old-screen-line.coffee /^ copy: ->$/;" f +copy src/app/point.coffee /^ copy: ->$/;" f +copy src/app/range.coffee /^ copy: ->$/;" f +copy src/app/screen-line.coffee /^ copy: ->$/;" f +copy src/app/selection.coffee /^ copy: (maintainPasteboard=false) ->$/;" f +copyName native/v8_extensions/readtags.c /^static void copyName (tagFile *const file)$/;" f file: +copySelectedText src/app/edit-session.coffee /^ copySelectedText: ->$/;" f +copySelection src/app/editor.coffee /^ copySelection: -> @activeEditSession.copySelectedText()$/;" f +count native/v8_extensions/readtags.h /^ unsigned short count;$/;" m struct:__anon33::__anon35 +coversSameRows src/app/range.coffee /^ coversSameRows: (other) ->$/;" f +createCefSettings native/atom_application.h /^+ (CefSettings)createCefSettings;$/;" v +createFold src/app/display-buffer.coffee /^ createFold: (startRow, endRow) ->$/;" f +createFold src/app/edit-session.coffee /^ createFold: (startRow, endRow) ->$/;" f +createFold src/app/editor.coffee /^ createFold: (startRow, endRow) -> @activeEditSession.createFold(startRow, endRow)$/;" f +creates a root view when the project path is created src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "creates a root view when the project path is created", ->$/;" f +creates a tab for each edit session on the editor to which the tab-strip belongs src/extensions/tabs/spec/tabs-spec.coffee /^ it "creates a tab for each edit session on the editor to which the tab-strip belongs", ->$/;" f +creates the target directory before moving the file src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "creates the target directory before moving the file", ->$/;" f +cursorIsInsideTabStops src/extensions/snippets/src/snippet-expansion.coffee /^ cursorIsInsideTabStops: ->$/;" f +cut src/app/selection.coffee /^ cut: (maintainPasteboard=false) ->$/;" f +cutSelectedText src/app/edit-session.coffee /^ cutSelectedText: ->$/;" f +cutSelection src/app/editor.coffee /^ cutSelection: -> @activeEditSession.cutSelectedText()$/;" f +cutToEndOfLine src/app/edit-session.coffee /^ cutToEndOfLine: ->$/;" f +cutToEndOfLine src/app/editor.coffee /^ cutToEndOfLine: -> @activeEditSession.cutToEndOfLine()$/;" f +cutToEndOfLine src/app/selection.coffee /^ cutToEndOfLine: (maintainPasteboard) ->$/;" f +d #initialize() src/extensions/tabs/spec/tabs-spec.coffee /^ describe "#initialize()", ->$/;" f +d $ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "$", ->$/;" f +d . src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe ".", ->$/;" f +d .attach() src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe ".attach()", ->$/;" f +d .detach() src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe ".detach()", ->$/;" f +d .initialize(project) src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe ".initialize(project)", ->$/;" f +d .loadSnippetsFile(path) src/extensions/snippets/spec/snippets-spec.coffee /^ describe ".loadSnippetsFile(path)", ->$/;" f +d /regex/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "\/regex\/", ->$/;" f +d /regex/ /regex src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "\/regex\/ \/regex", ->$/;" f +d 0 src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "0", ->$/;" f +d @activate src/extensions/tabs/spec/tabs-spec.coffee /^ describe "@activate", ->$/;" f +d @activate(rootView) src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "@activate(rootView)", ->$/;" f +d @initialize src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "@initialize", ->$/;" f +d @updateGuide src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "@updateGuide", ->$/;" f +d Autocomplete src/extensions/autocomplete/spec/autocomplete-spec.coffee /^describe "Autocomplete", ->$/;" f +d CommandInterpreter src/extensions/command-panel/spec/command-interpreter-spec.coffee /^describe "CommandInterpreter", ->$/;" f +d CommandPanel src/extensions/command-panel/spec/command-panel-spec.coffee /^describe "CommandPanel", ->$/;" f +d EventPalette src/extensions/event-palette/spec/event-palette-spec.coffee /^describe "EventPalette", ->$/;" f +d MarkdownPreview src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^describe "MarkdownPreview", ->$/;" f +d OutlineView src/extensions/outline-view/spec/outline-view-spec.coffee /^describe "OutlineView", ->$/;" f +d Snippets extension src/extensions/snippets/spec/snippets-spec.coffee /^describe "Snippets extension", ->$/;" f +d Snippets parser src/extensions/snippets/spec/snippets-spec.coffee /^ describe "Snippets parser", ->$/;" f +d StripTrailingWhitespace src/extensions/strip-trailing-whitespace/spec/strip-trailing-whitespace-spec.coffee /^describe "StripTrailingWhitespace", ->$/;" f +d Tabs src/extensions/tabs/spec/tabs-spec.coffee /^describe "Tabs", ->$/;" f +d TagGenerator src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "TagGenerator", ->$/;" f +d TreeView src/extensions/tree-view/spec/tree-view-spec.coffee /^describe "TreeView", ->$/;" f +d WrapGuide src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^describe "WrapGuide", ->$/;" f +d X x/regex/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "X x\/regex\/", ->$/;" f +d a line address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "a line address", ->$/;" f +d address range src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "address range", ->$/;" f +d addresses src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "addresses", ->$/;" f +d buffer-finder behavior src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "buffer-finder behavior", ->$/;" f +d cached file paths src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "cached file paths", ->$/;" f +d common behavior between file and buffer finder src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "common behavior between file and buffer finder", ->$/;" f +d core:cancel event src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ describe "core:cancel event", ->$/;" f +d core:move-down src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-down", ->$/;" f +d core:move-to-bottom src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-to-bottom", ->$/;" f +d core:move-to-top src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-to-top", ->$/;" f +d core:move-up src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-up", ->$/;" f +d core:page-down src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:page-down", ->$/;" f +d core:page-up src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:page-up", ->$/;" f +d file modification src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "file modification", ->$/;" f +d file system events src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "file system events", ->$/;" f +d file-finder behavior src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "file-finder behavior", ->$/;" f +d font-size-change src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "font-size-change", ->$/;" f +d if the command has an immediate effect src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "if the command has an immediate effect", ->$/;" f +d if the command is malformed src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "if the command is malformed", ->$/;" f +d if the command returns an error message src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "if the command returns an error message", ->$/;" f +d if the current file has a path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "if the current file has a path", ->$/;" f +d if the current file has no path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "if the current file has no path", ->$/;" f +d if there is no editor open src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "if there is no editor open", ->$/;" f +d ignored files src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "ignored files", ->$/;" f +d jump to declaration src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "jump to declaration", ->$/;" f +d keyboard navigation src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "keyboard navigation", ->$/;" f +d markdown-preview:toggle event src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ describe "markdown-preview:toggle event", ->$/;" f +d movement outside of viewable region src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "movement outside of viewable region", ->$/;" f +d nested commands src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "nested commands", ->$/;" f +d overriding getGuideColumn src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "overriding getGuideColumn", ->$/;" f +d serialization src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "serialization", ->$/;" f +d serialization src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "serialization", ->$/;" f +d substitution src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "substitution", ->$/;" f +d toggling src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "toggling", ->$/;" f +d tree-view:add src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:add", ->$/;" f +d tree-view:collapse-directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:collapse-directory", ->$/;" f +d tree-view:expand-directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:expand-directory", ->$/;" f +d tree-view:move src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:move", ->$/;" f +d tree-view:open-selected-entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:open-selected-entry", ->$/;" f +d tree-view:remove src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:remove", ->$/;" f +d when 'core:cancel' is triggered on the add dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when 'core:cancel' is triggered on the add dialog", ->$/;" f +d when 'core:cancel' is triggered on the move dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when 'core:cancel' is triggered on the move dialog", ->$/;" f +d when 'tab' is triggered on the editor src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when 'tab' is triggered on the editor", ->$/;" f +d when a collapsed directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a collapsed directory is selected", ->$/;" f +d when a different editor becomes active src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a different editor becomes active", ->$/;" f +d when a directory entry is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory entry is selected", ->$/;" f +d when a directory is double-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory is double-clicked", ->$/;" f +d when a directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory is selected", ->$/;" f +d when a directory is single-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory is single-clicked", ->$/;" f +d when a directory's disclosure arrow is clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory's disclosure arrow is clicked", ->$/;" f +d when a file already exists at that location src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file already exists at that location", ->$/;" f +d when a file entry is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file entry is selected", ->$/;" f +d when a file is added or removed in an expanded directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is added or removed in an expanded directory", ->$/;" f +d when a file is double-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is double-clicked", ->$/;" f +d when a file is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is selected", ->$/;" f +d when a file is single-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is single-clicked", ->$/;" f +d when a file name associated with a tab changes src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when a file name associated with a tab changes", ->$/;" f +d when a file or directory already exists at the given path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file or directory already exists at the given path", ->$/;" f +d when a file or directory already exists at the target path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file or directory already exists at the target path", ->$/;" f +d when a match is clicked in the match list src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when a match is clicked in the match list", ->$/;" f +d when a new edit session is created src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when a new edit session is created", ->$/;" f +d when a new file is opened in the active editor src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a new file is opened in the active editor", ->$/;" f +d when a non-word character is typed in the mini-editor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when a non-word character is typed in the mini-editor", ->$/;" f +d when a path selection is confirmed src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when a path selection is confirmed", ->$/;" f +d when a previous snippet expansion has just been undone src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when a previous snippet expansion has just been undone", ->$/;" f +d when a single selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when a single selection", ->$/;" f +d when a snippet expansion is undone and redone src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when a snippet expansion is undone and redone", ->$/;" f +d when a tab is clicked src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when a tab is clicked", ->$/;" f +d when a the start of the snippet is indented src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when a the start of the snippet is indented", ->$/;" f +d when all the directories along the new path exist src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when all the directories along the new path exist", ->$/;" f +d when an edit session is removed src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when an edit session is removed", ->$/;" f +d when an event selection is confirmed src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when an event selection is confirmed", ->$/;" f +d when an expanded directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when an expanded directory is selected", ->$/;" f +d when an operation in the preview list is clicked src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when an operation in the preview list is clicked", ->$/;" f +d when collapsed root directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when collapsed root directory is selected", ->$/;" f +d when command-panel:find-in-file is triggered on an editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:find-in-file is triggered on an editor", ->$/;" f +d when command-panel:find-in-project is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:find-in-project is triggered on the root view", ->$/;" f +d when command-panel:repeat-relative-address is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:repeat-relative-address is triggered on the root view", ->$/;" f +d when command-panel:repeat-relative-address-in-reverse is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:repeat-relative-address-in-reverse is triggered on the root view", ->$/;" f +d when command-panel:set-selection-as-regex-address is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:set-selection-as-regex-address is triggered on the root view", ->$/;" f +d when command-panel:toggle is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:toggle is triggered on the root view", ->$/;" f +d when command-panel:toggle-preview is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:toggle-preview is triggered on the root view", ->$/;" f +d when core:close is triggered on the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when core:close is triggered on the command panel", ->$/;" f +d when core:close is triggered on the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when core:close is triggered on the tree view", ->$/;" f +d when core:confirm is triggered on the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when core:confirm is triggered on the preview list", ->$/;" f +d when event-palette:toggle is triggered on the open event palette src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when event-palette:toggle is triggered on the open event palette", ->$/;" f +d when event-palette:toggle is triggered on the root view src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when event-palette:toggle is triggered on the root view", ->$/;" f +d when global src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when global", ->$/;" f +d when matching $ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when matching $", ->$/;" f +d when matching /$/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when matching \/$\/", ->$/;" f +d when matching ^ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when matching ^", ->$/;" f +d when move-down and move-up are triggered on the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when move-down and move-up are triggered on the preview list", ->$/;" f +d when move-up and move-down are triggerred on the editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when move-up and move-down are triggerred on the editor", ->$/;" f +d when no file exists at that location src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when no file exists at that location", ->$/;" f +d when no file or directory exists at the given path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when no file or directory exists at the given path", ->$/;" f +d when no match is found src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when no match is found", ->$/;" f +d when no text is selected src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when no text is selected", ->$/;" f +d when not global src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when not global", ->$/;" f +d when nothing is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when nothing is selected", ->$/;" f +d when parent directory of the selected file changes src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when parent directory of the selected file changes", ->$/;" f +d when prefixed with an address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when prefixed with an address", ->$/;" f +d when return is pressed on the panel's editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when return is pressed on the panel's editor", ->$/;" f +d when root view's project has no path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when root view's project has no path", ->$/;" f +d when tags can be generated for a file src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "when tags can be generated for a file", ->$/;" f +d when tags can't be generated for a file src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "when tags can't be generated for a file", ->$/;" f +d when text is initially selected src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when text is initially selected", ->$/;" f +d when text is removed from the mini-editor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when text is removed from the mini-editor", ->$/;" f +d when text is selected src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when text is selected", ->$/;" f +d when text is selected src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when text is selected", ->$/;" f +d when the active edit session changes src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when the active edit session changes", ->$/;" f +d when the active editor contains edit sessions for buffers with paths src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the active editor contains edit sessions for buffers with paths", ->$/;" f +d when the active editor only contains edit sessions for anonymous buffers src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the active editor only contains edit sessions for anonymous buffers", ->$/;" f +d when the add dialog's editor loses focus src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the add dialog's editor loses focus", ->$/;" f +d when the autocomplete view does not fit below the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the autocomplete view does not fit below the cursor", ->$/;" f +d when the autocomplete view fits below the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the autocomplete view fits below the cursor", ->$/;" f +d when the close icon is clicked src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when the close icon is clicked", ->$/;" f +d when the command contains an escaped charachter src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command contains an escaped charachter", ->$/;" f +d when the command panel is not visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is not visible", ->$/;" f +d when the command panel is not visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is not visible", ->$/;" f +d when the command panel is visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is visible", ->$/;" f +d when the command panel is visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is visible", ->$/;" f +d when the command returns operations to be previewed src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command returns operations to be previewed", ->$/;" f +d when the cursor is moved beyond the bounds of a tab stop src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the cursor is moved beyond the bounds of a tab stop", ->$/;" f +d when the directories along the new path don't exist src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the directories along the new path don't exist", ->$/;" f +d when the directory is collapsed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the directory is collapsed", ->$/;" f +d when the directory is expanded src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the directory is expanded", ->$/;" f +d when the edit session's buffer has an undefined path src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when the edit session's buffer has an undefined path", ->$/;" f +d when the editor is scrolled to the right src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the editor is scrolled to the right", ->$/;" f +d when the event palette is cancelled src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when the event palette is cancelled", ->$/;" f +d when the fuzzy finder is cancelled src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the fuzzy finder is cancelled", ->$/;" f +d when the last directory of another last directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the last directory of another last directory is selected", ->$/;" f +d when the last entry of an expanded directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the last entry of an expanded directory is selected", ->$/;" f +d when the last entry of the last directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the last entry of the last directory is selected", ->$/;" f +d when the left address is unspecified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when the left address is unspecified", ->$/;" f +d when the letters preceding the cursor don't match a snippet src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the letters preceding the cursor don't match a snippet", ->$/;" f +d when the letters preceding the cursor trigger a snippet src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the letters preceding the cursor trigger a snippet", ->$/;" f +d when the mini editor is focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is focused", ->$/;" f +d when the mini editor is focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is focused", ->$/;" f +d when the mini editor is not focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is not focused", ->$/;" f +d when the mini editor is not focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is not focused", ->$/;" f +d when the mini-editor receives keyboard input src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the mini-editor receives keyboard input", ->$/;" f +d when the move dialog's editor loses focus src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the move dialog's editor loses focus", ->$/;" f +d when the neither address is specified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when the neither address is specified", ->$/;" f +d when the path is changed and confirmed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the path is changed and confirmed", ->$/;" f +d when the path with a trailing '/' is changed and confirmed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the path with a trailing '\/' is changed and confirmed", ->$/;" f +d when the path without a trailing '/' is changed and confirmed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the path without a trailing '\/' is changed and confirmed", ->$/;" f +d when the preview list has never been opened src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list has never been opened", ->$/;" f +d when the preview list is focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is focused", ->$/;" f +d when the preview list is focused with search operations src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is focused with search operations", ->$/;" f +d when the preview list is not focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is not focused", ->$/;" f +d when the preview list is not visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is not visible", ->$/;" f +d when the preview list is visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is visible", ->$/;" f +d when the preview list is/was previously visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is\/was previously visible", ->$/;" f +d when the project has no path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the project has no path", ->$/;" f +d when the prototypes deactivate method is called src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the prototypes deactivate method is called", ->$/;" f +d when the right address is unspecified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when the right address is unspecified", ->$/;" f +d when the root directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the root directory is selected", ->$/;" f +d when the root view's project has a path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the root view's project has a path", ->$/;" f +d when the snippet contains no tab stops src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet contains no tab stops", ->$/;" f +d when the snippet contains tab stops src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet contains tab stops", ->$/;" f +d when the snippet spans a single line src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet spans a single line", ->$/;" f +d when the snippet spans multiple lines src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet spans multiple lines", ->$/;" f +d when the tab stops have placeholder text src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the tab stops have placeholder text", ->$/;" f +d when the text contains only word characters src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the text contains only word characters", ->$/;" f +d when the tree view is focused src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is focused", ->$/;" f +d when the tree view is hidden src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is hidden", ->$/;" f +d when the tree view is not focused src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is not focused", ->$/;" f +d when the tree view is visible src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is visible", ->$/;" f +d when there are multiple selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there are multiple selections", ->$/;" f +d when there are no matches src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when there are no matches", ->$/;" f +d when there is NO edit session for the confirmed path on the active editor, but there is one on another editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when there is NO edit session for the confirmed path on the active editor, but there is one on another editor", ->$/;" f +d when there is a single selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there is a single selection", ->$/;" f +d when there is an edit session for the confirmed path in the active editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when there is an edit session for the confirmed path in the active editor", ->$/;" f +d when there is an entry before the currently selected entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is an entry before the currently selected entry", ->$/;" f +d when there is an expanded directory before the currently selected entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is an expanded directory before the currently selected entry", ->$/;" f +d when there is no active editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when there is no active editor", ->$/;" f +d when there is no address range is given src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there is no address range is given", ->$/;" f +d when there is no entry before the currently selected entry, but there is a parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is no entry before the currently selected entry, but there is a parent directory", ->$/;" f +d when there is no parent directory or previous entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is no parent directory or previous entry", ->$/;" f +d when there is no text selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there is no text selection", ->$/;" f +d when tool-panel:unfocus is triggered on the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when tool-panel:unfocus is triggered on the command panel", ->$/;" f +d when tool-panel:unfocus is triggered on the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when tool-panel:unfocus is triggered on the tree view", ->$/;" f +d when tree-view:reveal-current-file is triggered on the root view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when tree-view:reveal-current-file is triggered on the root view", ->$/;" f +d when tree-view:toggle is triggered on the root view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when tree-view:toggle is triggered on the root view", ->$/;" f +d when two addresses are specified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when two addresses are specified", ->$/;" f +d where there are matches src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "where there are matches", ->$/;" f +d where there is no selection src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "where there is no selection", ->$/;" f +d with multiple selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "with multiple selections", ->$/;" f +d x/regex/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "x\/regex\/", ->$/;" f +deactivate src/app/root-view.coffee /^ deactivate: ->$/;" f +deactivate src/extensions/tree-view/src/tree-view.coffee /^ deactivate: ->$/;" f +deactivateExtension src/app/root-view.coffee /^ deactivateExtension: (extension) ->$/;" f +defaultEditSessionOptions src/app/project.coffee /^ defaultEditSessionOptions: ->$/;" f +define src/stdlib/require.coffee /^define = (cb) ->$/;" f +delete src/app/buffer.coffee /^ delete: (range) ->$/;" f +delete src/app/edit-session.coffee /^ delete: ->$/;" f +delete src/app/editor.coffee /^ delete: -> @activeEditSession.delete()$/;" f +delete src/app/selection.coffee /^ delete: ->$/;" f +deleteLine src/app/edit-session.coffee /^ deleteLine: ->$/;" f +deleteLine src/app/editor.coffee /^ deleteLine: -> @activeEditSession.deleteLine()$/;" f +deleteLine src/app/selection.coffee /^ deleteLine: ->$/;" f +deleteRow src/app/buffer.coffee /^ deleteRow: (row) ->$/;" f +deleteRows src/app/buffer.coffee /^ deleteRows: (start, end) ->$/;" f +deleteSelectedText src/app/selection.coffee /^ deleteSelectedText: ->$/;" f +deleteToEndOfWord src/app/edit-session.coffee /^ deleteToEndOfWord: ->$/;" f +deleteToEndOfWord src/app/editor.coffee /^ deleteToEndOfWord: -> @activeEditSession.deleteToEndOfWord()$/;" f +deleteToEndOfWord src/app/selection.coffee /^ deleteToEndOfWord: ->$/;" f +descriptor native/v8_extensions/native_linux.h /^ int descriptor;$/;" m struct:v8_extensions::NotifyContext +deserializeEntryExpansionStates src/extensions/tree-view/src/directory-view.coffee /^ deserializeEntryExpansionStates: (entryStates) ->$/;" f +deserializeView src/app/root-view.coffee /^ deserializeView: (viewState) ->$/;" f +destroy native/atom_gtk.cpp /^void destroy(void) {$/;" f +destroy native/linux/atom_app.cpp /^void destroy(void) {$/;" f +destroy src/app/anchor-range.coffee /^ destroy: ->$/;" f +destroy src/app/anchor.coffee /^ destroy: ->$/;" f +destroy src/app/buffer.coffee /^ destroy: ->$/;" f +destroy src/app/cursor.coffee /^ destroy: ->$/;" f +destroy src/app/display-buffer.coffee /^ destroy: ->$/;" f +destroy src/app/edit-session.coffee /^ destroy: ->$/;" f +destroy src/app/fold.coffee /^ destroy: ->$/;" f +destroy src/app/project.coffee /^ destroy: ->$/;" f +destroy src/app/selection.coffee /^ destroy: ->$/;" f +destroy src/app/tokenized-buffer.coffee /^ destroy: ->$/;" f +destroy src/extensions/command-panel/src/command-panel.coffee /^ destroy: ->$/;" f +destroy src/extensions/command-panel/src/operation.coffee /^ destroy: ->$/;" f +destroy src/extensions/command-panel/src/preview-list.coffee /^ destroy: ->$/;" f +destroy src/extensions/snippets/src/snippet-expansion.coffee /^ destroy: ->$/;" f +destroyActiveEditSession src/app/editor.coffee /^ destroyActiveEditSession: ->$/;" f +destroyEditSessionIndex src/app/editor.coffee /^ destroyEditSessionIndex: (index) ->$/;" f +destroyEditSessions src/app/editor.coffee /^ destroyEditSessions: ->$/;" f +destroyFold src/app/display-buffer.coffee /^ destroyFold: (fold) ->$/;" f +destroyFold src/app/edit-session.coffee /^ destroyFold: (foldId) ->$/;" f +destroyFold src/app/editor.coffee /^ destroyFold: (foldId) -> @activeEditSession.destroyFold(foldId)$/;" f +destroyFoldsContainingBufferRow src/app/display-buffer.coffee /^ destroyFoldsContainingBufferRow: (bufferRow) ->$/;" f +destroyFoldsContainingBufferRow src/app/edit-session.coffee /^ destroyFoldsContainingBufferRow: (bufferRow) ->$/;" f +destroyFoldsContainingBufferRow src/app/editor.coffee /^ destroyFoldsContainingBufferRow: (bufferRow) -> @activeEditSession.destroyFoldsContainingBufferRow(bufferRow)$/;" f +destroyFoldsIntersectingBufferRange src/app/edit-session.coffee /^ destroyFoldsIntersectingBufferRange: (bufferRange) ->$/;" f +destroyOperations src/extensions/command-panel/src/preview-list.coffee /^ destroyOperations: ->$/;" f +destroys previously previewed operations if there are any src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "destroys previously previewed operations if there are any", ->$/;" f +detach src/extensions/autocomplete/src/autocomplete.coffee /^ detach: ->$/;" f +detach src/extensions/command-panel/src/command-panel.coffee /^ detach: ->$/;" f +detach src/extensions/markdown-preview/src/markdown-preview.coffee /^ detach: ->$/;" f +detach src/extensions/tree-view/src/tree-view.coffee /^ detach: ->$/;" f +detaches the TreeView, focuses the RootView and does not bubble the core:close event src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "detaches the TreeView, focuses the RootView and does not bubble the core:close event", ->$/;" f +detaches the command panel, focuses the RootView and does not bubble the core:close event src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "detaches the command panel, focuses the RootView and does not bubble the core:close event", ->$/;" f +detaches the finder and focuses the previously focused element src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "detaches the finder and focuses the previously focused element", ->$/;" f +detaches the palette, then focuses the previously focused element and emits the selected event on it src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "detaches the palette, then focuses the previously focused element and emits the selected event on it", ->$/;" f +detectResurrection src/app/file.coffee /^ detectResurrection: ->$/;" f +detectResurrectionAfterDelay src/app/file.coffee /^ detectResurrectionAfterDelay: ->$/;" f +devToolsView native/atom_window_controller.h /^@property (nonatomic, retain) IBOutlet NSView *devToolsView;$/;" v +devToolsView native/atom_window_controller.mm /^@synthesize devToolsView=_devToolsView;$/;" v +directory src/stdlib/fs.coffee /^ directory: (path) ->$/;" f +displays a preview for a .markdown file src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "displays a preview for a .markdown file", ->$/;" f +displays and focuses the operation preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "displays and focuses the operation preview list", ->$/;" f +displays error when no tags match text in mini-editor src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "displays error when no tags match text in mini-editor", ->$/;" f +dmax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance dmax; \/* max-distance of exact or map *\/$/;" m struct:re_pattern_buffer +dmax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance dmax; \/* max-distance of exact or map *\/$/;" m struct:re_pattern_buffer +dmax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance dmax; \/* max-distance of exact or map *\/$/;" m struct:re_pattern_buffer +dmin native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance dmin; \/* min-distance of exact or map *\/$/;" m struct:re_pattern_buffer +dmin native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance dmin; \/* min-distance of exact or map *\/$/;" m struct:re_pattern_buffer +dmin native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance dmin; \/* min-distance of exact or map *\/$/;" m struct:re_pattern_buffer +do src/app/buffer-change-operation.coffee /^ do: ->$/;" f +does not change the selection src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does not change the selection", ->$/;" f +does not clear out a previously confirmed selection when canceling with an empty list src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "does not clear out a previously confirmed selection when canceling with an empty list", ->$/;" f +does not create a root node src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does not create a root node", ->$/;" f +does not display a preview for non-markdown file src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "does not display a preview for non-markdown file", ->$/;" f +does not indent the next line src/extensions/snippets/spec/snippets-spec.coffee /^ it "does not indent the next line", ->$/;" f +does not open src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "does not open", ->$/;" f +does not open the FuzzyFinder src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "does not open the FuzzyFinder", ->$/;" f +does not push to the undo stack (since the buffer is not modified) src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "does not push to the undo stack (since the buffer is not modified)", ->$/;" f +does not raise an error src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does not raise an error", ->$/;" f +does not scroll it to the left src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "does not scroll it to the left", ->$/;" f +does nothing src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does nothing", ->$/;" f +does nothing if there are no matches src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "does nothing if there are no matches", ->$/;" f +doesBufferRowStartFold src/app/language-mode.coffee /^ doesBufferRowStartFold: (bufferRow) ->$/;" f +doesn't move the cursor when no declaration is found src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "doesn't move the cursor when no declaration is found", ->$/;" f +duplicate native/v8_extensions/readtags.c /^static char *duplicate (const char *str)$/;" f file: +edit src/app/editor.coffee /^ edit: (editSession) ->$/;" f +editor src/app/gutter.coffee /^ editor: ->$/;" f +editorFocused src/app/root-view.coffee /^ editorFocused: (editor) ->$/;" f +enableSnippetsInEditor src/extensions/snippets/src/snippets.coffee /^ enableSnippetsInEditor: (editor) ->$/;" f +enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:re_pattern_buffer +enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:__anon5 +enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:re_pattern_buffer +enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:__anon12 +enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:re_pattern_buffer +enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:__anon19 +end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int end;$/;" m struct:OnigCaptureTreeNodeStruct +end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int* end;$/;" m struct:re_registers +end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int end;$/;" m struct:OnigCaptureTreeNodeStruct +end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int* end;$/;" m struct:re_registers +end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int end;$/;" m struct:OnigCaptureTreeNodeStruct +end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int* end;$/;" m struct:re_registers +ensureValidTabStops src/extensions/snippets/src/snippet-expansion.coffee /^ ensureValidTabStops: ->$/;" f +entryClicked src/extensions/tree-view/src/tree-view.coffee /^ entryClicked: (e) ->$/;" f +entryForPath src/extensions/tree-view/src/tree-view.coffee /^ entryForPath: (path) ->$/;" f +error src/extensions/markdown-preview/src/markdown-preview.coffee /^ error: (jqXhr, error) => @setHtml(@getErrorHtml(error))$/;" f +errorMessagesForOperations src/extensions/command-panel/src/commands/composite-command.coffee /^ errorMessagesForOperations: (operations) ->$/;" f +error_number native/v8_extensions/readtags.h /^ int error_number;$/;" m struct:__anon28::__anon29 +esc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint esc;$/;" m struct:__anon3 +esc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint esc;$/;" m struct:__anon10 +esc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint esc;$/;" m struct:__anon17 +escapeRegExp src/stdlib/underscore-extensions.coffee /^ escapeRegExp: (string) ->$/;" f +escapedCommand src/extensions/command-panel/src/command-panel.coffee /^ escapedCommand: ->$/;" f +eval src/extensions/command-panel/src/command-interpreter.coffee /^ eval: (string, activeEditSession) ->$/;" f +evalSnippets src/extensions/snippets/src/snippets.coffee /^ evalSnippets: (extension, text) ->$/;" f +eventTypes native/v8_extensions/native_linux.h /^ CefRefPtr eventTypes;$/;" m struct:v8_extensions::CallbackContext +exact native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char *exact;$/;" m struct:re_pattern_buffer +exact native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char *exact;$/;" m struct:re_pattern_buffer +exact native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char *exact;$/;" m struct:re_pattern_buffer +exact_end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char *exact_end;$/;" m struct:re_pattern_buffer +exact_end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char *exact_end;$/;" m struct:re_pattern_buffer +exact_end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char *exact_end;$/;" m struct:re_pattern_buffer +execute src/extensions/command-panel/src/commands/composite-command.coffee /^ execute: (project, editSession) ->$/;" f +execute src/extensions/command-panel/src/operation.coffee /^ execute: (editSession) ->$/;" f +executeCommands src/extensions/command-panel/src/commands/composite-command.coffee /^ executeCommands: (commands, project, editSession, ranges) ->$/;" f +executeOperations src/extensions/command-panel/src/commands/composite-command.coffee /^ executeOperations = ->$/;" f +executeSelectedOperation src/extensions/command-panel/src/preview-list.coffee /^ executeSelectedOperation: ->$/;" f +executes it immediately on the current buffer src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "executes it immediately on the current buffer", ->$/;" f +executes the command with the escaped character (instead of as a backslash followed by the character) src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "executes the command with the escaped character (instead of as a backslash followed by the character)", ->$/;" f +exists native/v8_extensions/git.mm /^ bool exists;$/;" m class:v8_extensions::GitRepository file: +exists src/app/file.coffee /^ exists: ->$/;" f +exists src/stdlib/fs.coffee /^ exists: (path) ->$/;" f +expand src/extensions/tree-view/src/directory-view.coffee /^ expand: ->$/;" f +expandBufferRangeToLineEnds src/app/display-buffer.coffee /^ expandBufferRangeToLineEnds: (bufferRange) ->$/;" f +expandDirectory src/extensions/tree-view/src/tree-view.coffee /^ expandDirectory: ->$/;" f +expandLastSelectionOverLine src/app/edit-session.coffee /^ expandLastSelectionOverLine: ->$/;" f +expandLastSelectionOverWord src/app/edit-session.coffee /^ expandLastSelectionOverWord: ->$/;" f +expandOverLine src/app/selection.coffee /^ expandOverLine: ->$/;" f +expandOverWord src/app/selection.coffee /^ expandOverWord: ->$/;" f +expandScreenRangeToLineEnds src/app/display-buffer.coffee /^ expandScreenRangeToLineEnds: (screenRange) ->$/;" f +expandSelectionsBackward src/app/edit-session.coffee /^ expandSelectionsBackward: (fn) ->$/;" f +expandSelectionsForward src/app/edit-session.coffee /^ expandSelectionsForward: (fn) ->$/;" f +expands / collapses the associated directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "expands \/ collapses the associated directory", ->$/;" f +expands or collapses the directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "expands or collapses the directory", ->$/;" f +expands the current directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "expands the current directory", ->$/;" f +expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop src/extensions/snippets/spec/snippets-spec.coffee /^ it "expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop", ->$/;" f +extension src/stdlib/fs.coffee /^ extension: (path) ->$/;" f +extensionFields native/v8_extensions/readtags.c /^static int extensionFields;$/;" v file: +extname src/stdlib/path.coffee /^ extname: (filepath) ->$/;" f +extractTabStops src/extensions/snippets/src/snippet.coffee /^ extractTabStops: (bodyLines) ->$/;" f +fields native/v8_extensions/readtags.c /^ } fields;$/;" m struct:sTagFile typeref:struct:sTagFile::__anon24 file: +fields native/v8_extensions/readtags.h /^ } fields;$/;" m struct:__anon33 typeref:struct:__anon33::__anon35 +file native/v8_extensions/readtags.h /^ const char *file;$/;" m struct:__anon33 +file native/v8_extensions/readtags.h /^ } file;$/;" m struct:__anon28 typeref:struct:__anon28::__anon30 +fileExists src/app/buffer.coffee /^ fileExists: ->$/;" f +fileScope native/v8_extensions/readtags.h /^ short fileScope;$/;" m struct:__anon33 +fillDirtyRanges src/app/editor.coffee /^ fillDirtyRanges: (intactRanges, renderFrom, renderTo) ->$/;" f +filterMatches src/extensions/autocomplete/src/autocomplete.coffee /^ filterMatches: ->$/;" f +finalize src/app/selection.coffee /^ finalize: ->$/;" f +finalizeSelections src/app/edit-session.coffee /^ finalizeSelections: ->$/;" f +find native/v8_extensions/readtags.c /^static tagResult find (tagFile *const file, tagEntry *const entry,$/;" f file: +find src/extensions/outline-view/src/tag-reader.coffee /^find: (editor) ->$/;" f +findBinary native/v8_extensions/readtags.c /^static tagResult findBinary (tagFile *const file)$/;" f file: +findClosingBracket src/app/tokenized-buffer.coffee /^ findClosingBracket: (startBufferPosition) ->$/;" f +findFirstMatchBefore native/v8_extensions/readtags.c /^static tagResult findFirstMatchBefore (tagFile *const file)$/;" f file: +findFirstNonMatchBefore native/v8_extensions/readtags.c /^static void findFirstNonMatchBefore (tagFile *const file)$/;" f file: +findMatchesForCurrentSelection src/extensions/autocomplete/src/autocomplete.coffee /^ findMatchesForCurrentSelection: ->$/;" f +findNext native/v8_extensions/readtags.c /^static tagResult findNext (tagFile *const file, tagEntry *const entry)$/;" f file: +findOpeningBracket src/app/tokenized-buffer.coffee /^ findOpeningBracket: (startBufferPosition) ->$/;" f +findSequential native/v8_extensions/readtags.c /^static tagResult findSequential (tagFile *const file)$/;" f file: +findTag native/v8_extensions/readtags.c /^static void findTag (const char *const name, const int options)$/;" f file: +findWrapColumn src/app/display-buffer.coffee /^ findWrapColumn: (line, softWrapColumn) ->$/;" f +firstInvalidRow src/app/tokenized-buffer.coffee /^ firstInvalidRow: ->$/;" f +fn src/extensions/tree-view/src/tree-view.coffee /^ fn = (bestMatchEntry, element) ->$/;" f +focus the root view and detaches the event palette src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "focus the root view and detaches the event palette", ->$/;" f +focusNextPane src/app/root-view.coffee /^ focusNextPane: ->$/;" f +focuses the editor that contains an edit session for the selected path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "focuses the editor that contains an edit session for the selected path", ->$/;" f +focuses the mini editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "focuses the mini editor", ->$/;" f +focuses the mini editor and does not show the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "focuses the mini editor and does not show the preview list", ->$/;" f +focuses the mini-editor and selects the first event src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "focuses the mini-editor and selects the first event", ->$/;" f +focuses the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "focuses the preview list", ->$/;" f +focuses the root view and detaches the event palette src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "focuses the root view and detaches the event palette", ->$/;" f +fold src/app/selection.coffee /^ fold: ->$/;" f +foldAll src/app/display-buffer.coffee /^ foldAll: ->$/;" f +foldAll src/app/edit-session.coffee /^ foldAll: ->$/;" f +foldAll src/app/editor.coffee /^ foldAll: -> @activeEditSession.foldAll()$/;" f +foldBufferRow src/app/display-buffer.coffee /^ foldBufferRow: (bufferRow) ->$/;" f +foldBufferRow src/app/edit-session.coffee /^ foldBufferRow: (bufferRow) ->$/;" f +foldCurrentRow src/app/edit-session.coffee /^ foldCurrentRow: ->$/;" f +foldCurrentRow src/app/editor.coffee /^ foldCurrentRow: -> @activeEditSession.foldCurrentRow()$/;" f +foldFor src/app/display-buffer.coffee /^ foldFor: (startRow, endRow) ->$/;" f +foldSelection src/app/edit-session.coffee /^ foldSelection: ->$/;" f +foldSelection src/app/editor.coffee /^ foldSelection: -> @activeEditSession.foldSelection()$/;" f +format native/v8_extensions/readtags.c /^ short format;$/;" m struct:sTagFile file: +format native/v8_extensions/readtags.h /^ short format;$/;" m struct:__anon28::__anon30 +fp native/v8_extensions/readtags.c /^ FILE* fp;$/;" m struct:sTagFile file: +function native/v8_extensions/native_linux.h /^ CefRefPtr function;$/;" m struct:v8_extensions::CallbackContext +gPathWatchers native/path_watcher.mm /^static NSMutableArray *gPathWatchers;$/;" v file: +g_handler native/linux/atom_app.cpp /^CefRefPtr g_handler;$/;" v +generate src/extensions/outline-view/src/tag-generator.coffee /^ generate: ->$/;" f +generates no tags for text file src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "generates no tags for text file", ->$/;" f +generates tags for all JavaScript functions src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "generates tags for all JavaScript functions", ->$/;" f +get src/stdlib/storage.coffee /^ get: (key, defaultValue=null) ->$/;" f +getActiveEditSession src/app/root-view.coffee /^ getActiveEditSession: ->$/;" f +getActiveEditSessionIndex src/app/editor.coffee /^ getActiveEditSessionIndex: ->$/;" f +getActiveEditor src/app/root-view.coffee /^ getActiveEditor: ->$/;" f +getActivePath src/extensions/markdown-preview/src/markdown-preview.coffee /^ getActivePath: ->$/;" f +getActiveText src/extensions/markdown-preview/src/markdown-preview.coffee /^ getActiveText: ->$/;" f +getAllFilePathsAsync src/stdlib/fs.coffee /^ getAllFilePathsAsync: (rootPath, callback) ->$/;" f +getAnchorRanges src/app/edit-session.coffee /^ getAnchorRanges: ->$/;" f +getAnchors src/app/buffer.coffee /^ getAnchors: -> new Array(@anchors...)$/;" f +getAnchors src/app/edit-session.coffee /^ getAnchors: ->$/;" f +getAutoIndent src/app/project.coffee /^ getAutoIndent: -> @autoIndent$/;" f +getBaseName src/app/buffer.coffee /^ getBaseName: ->$/;" f +getBaseName src/app/directory.coffee /^ getBaseName: ->$/;" f +getBaseName src/app/file.coffee /^ getBaseName: ->$/;" f +getBeginningOfCurrentWordBufferPosition src/app/cursor.coffee /^ getBeginningOfCurrentWordBufferPosition: (options = {}) ->$/;" f +getBuffer src/app/editor.coffee /^ getBuffer: -> @activeEditSession.buffer$/;" f +getBufferColumn src/app/cursor.coffee /^ getBufferColumn: ->$/;" f +getBufferPosition src/app/anchor.coffee /^ getBufferPosition: ->$/;" f +getBufferPosition src/app/cursor-view.coffee /^ getBufferPosition: ->$/;" f +getBufferPosition src/app/cursor.coffee /^ getBufferPosition: ->$/;" f +getBufferRange src/app/anchor-range.coffee /^ getBufferRange: ->$/;" f +getBufferRange src/app/fold.coffee /^ getBufferRange: ({includeNewline}={}) ->$/;" f +getBufferRange src/app/selection-view.coffee /^ getBufferRange: ->$/;" f +getBufferRange src/app/selection.coffee /^ getBufferRange: ->$/;" f +getBufferRange src/extensions/command-panel/src/operation.coffee /^ getBufferRange: ->$/;" f +getBufferRow src/app/cursor.coffee /^ getBufferRow: ->$/;" f +getBufferRowCount src/app/fold.coffee /^ getBufferRowCount: ->$/;" f +getBufferRowRange src/app/selection.coffee /^ getBufferRowRange: ->$/;" f +getBuffers src/app/project.coffee /^ getBuffers: ->$/;" f +getCenterPixelPosition src/app/selection-view.coffee /^ getCenterPixelPosition: ->$/;" f +getCurrentBufferLine src/app/cursor.coffee /^ getCurrentBufferLine: ->$/;" f +getCurrentLineBufferRange src/app/cursor.coffee /^ getCurrentLineBufferRange: (options) ->$/;" f +getCurrentWordBufferRange src/app/cursor.coffee /^ getCurrentWordBufferRange: ->$/;" f +getCurrentWordPrefix src/app/cursor.coffee /^ getCurrentWordPrefix: ->$/;" f +getCursor src/app/edit-session.coffee /^ getCursor: (index=0) ->$/;" f +getCursor src/app/editor.coffee /^ getCursor: (index) -> @activeEditSession.getCursor(index)$/;" f +getCursorBufferPosition src/app/edit-session.coffee /^ getCursorBufferPosition: ->$/;" f +getCursorBufferPosition src/app/editor.coffee /^ getCursorBufferPosition: -> @activeEditSession.getCursorBufferPosition()$/;" f +getCursorScreenPosition src/app/edit-session.coffee /^ getCursorScreenPosition: ->$/;" f +getCursorScreenPosition src/app/editor.coffee /^ getCursorScreenPosition: -> @activeEditSession.getCursorScreenPosition()$/;" f +getCursorScreenRow src/app/edit-session.coffee /^ getCursorScreenRow: ->$/;" f +getCursorScreenRow src/app/editor.coffee /^ getCursorScreenRow: -> @activeEditSession.getCursorScreenRow()$/;" f +getCursorView src/app/editor.coffee /^ getCursorView: (index) ->$/;" f +getCursorViews src/app/editor.coffee /^ getCursorViews: ->$/;" f +getCursors src/app/edit-session.coffee /^ getCursors: -> new Array(@cursors...)$/;" f +getCursors src/app/editor.coffee /^ getCursors: -> @activeEditSession.getCursors()$/;" f +getEditSessions src/app/editor.coffee /^ getEditSessions: ->$/;" f +getEditSessions src/app/project.coffee /^ getEditSessions: ->$/;" f +getEditors src/app/root-view.coffee /^ getEditors: ->$/;" f +getEndOfCurrentWordBufferPosition src/app/cursor.coffee /^ getEndOfCurrentWordBufferPosition: (options = {}) ->$/;" f +getEntries src/app/directory.coffee /^ getEntries: ->$/;" f +getEofBufferPosition src/app/edit-session.coffee /^ getEofBufferPosition: -> @buffer.getEofPosition()$/;" f +getEofPosition src/app/buffer.coffee /^ getEofPosition: ->$/;" f +getEofPosition src/app/editor.coffee /^ getEofPosition: -> @getBuffer().getEofPosition()$/;" f +getErrorHtml src/extensions/markdown-preview/src/markdown-preview.coffee /^ getErrorHtml: (error) ->$/;" f +getExtension src/app/buffer.coffee /^ getExtension: ->$/;" f +getFileExtension src/app/edit-session.coffee /^ getFileExtension: -> @buffer.getExtension()$/;" f +getFilePaths src/app/project.coffee /^ getFilePaths: ->$/;" f +getFirstVisibleScreenRow src/app/editor.coffee /^ getFirstVisibleScreenRow: ->$/;" f +getFocusedPane src/app/root-view.coffee /^ getFocusedPane: ->$/;" f +getFontSize src/app/root-view.coffee /^ getFontSize: -> @fontSize$/;" f +getGit src/app/buffer.coffee /^ getGit: -> @git$/;" f +getGuideColumn src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ getGuideColumn: ->$/;" f +getHead src/app/git.coffee /^ getHead: ->$/;" f +getHideIgnoredFiles src/app/project.coffee /^ getHideIgnoredFiles: -> @hideIgnoredFiles$/;" f +getIncludedPatterns src/app/text-mate-grammar.coffee /^ getIncludedPatterns: (included) ->$/;" f +getIncludedPatterns src/app/text-mate-grammar.coffee /^ getIncludedPatterns: (included=[]) ->$/;" f +getIndentLevel src/app/cursor.coffee /^ getIndentLevel: ->$/;" f +getInvertedPairedCharacters src/app/language-mode.coffee /^ getInvertedPairedCharacters: ->$/;" f +getInvisibles src/app/root-view.coffee /^ getInvisibles: -> @invisibles$/;" f +getLastBufferRow src/app/edit-session.coffee /^ getLastBufferRow: -> @buffer.getLastRow()$/;" f +getLastBufferRow src/app/editor.coffee /^ getLastBufferRow: -> @getBuffer().getLastRow()$/;" f +getLastCursor src/app/edit-session.coffee /^ getLastCursor: ->$/;" f +getLastCursor src/app/editor.coffee /^ getLastCursor: -> @activeEditSession.getLastCursor()$/;" f +getLastLine src/app/buffer.coffee /^ getLastLine: ->$/;" f +getLastRow src/app/buffer.coffee /^ getLastRow: ->$/;" f +getLastRow src/app/display-buffer.coffee /^ getLastRow: ->$/;" f +getLastRow src/app/tokenized-buffer.coffee /^ getLastRow: ->$/;" f +getLastScreenRow src/app/edit-session.coffee /^ getLastScreenRow: -> @displayBuffer.getLastRow()$/;" f +getLastScreenRow src/app/editor.coffee /^ getLastScreenRow: -> @activeEditSession.getLastScreenRow()$/;" f +getLastSelection src/app/edit-session.coffee /^ getLastSelection: ->$/;" f +getLastSelectionInBuffer src/app/edit-session.coffee /^ getLastSelectionInBuffer: ->$/;" f +getLastSelectionInBuffer src/app/editor.coffee /^ getLastSelectionInBuffer: -> @activeEditSession.getLastSelectionInBuffer()$/;" f +getLastVisibleScreenRow src/app/editor.coffee /^ getLastVisibleScreenRow: ->$/;" f +getLineCount src/app/buffer.coffee /^ getLineCount: ->$/;" f +getLineCount src/app/editor.coffee /^ getLineCount: -> @getBuffer().getLineCount()$/;" f +getLines src/app/buffer.coffee /^ getLines: ->$/;" f +getLines src/app/display-buffer.coffee /^ getLines: ->$/;" f +getMaxBufferColumn src/app/screen-line.coffee /^ getMaxBufferColumn: ->$/;" f +getMaxScreenColumn src/app/screen-line.coffee /^ getMaxScreenColumn: ->$/;" f +getModifiedBuffers src/app/root-view.coffee /^ getModifiedBuffers: ->$/;" f +getNextTokens src/app/text-mate-grammar.coffee /^ getNextTokens: (stack, line, position) ->$/;" f +getOpenBufferPaths src/app/editor.coffee /^ getOpenBufferPaths: ->$/;" f +getOpenBufferPaths src/app/root-view.coffee /^ getOpenBufferPaths: ->$/;" f +getOperations src/extensions/command-panel/src/preview-list.coffee /^ getOperations: ->$/;" f +getPageRows src/app/editor.coffee /^ getPageRows: ->$/;" f +getPath src/app/buffer.coffee /^ getPath: ->$/;" f +getPath src/app/directory.coffee /^ getPath: -> @path$/;" f +getPath src/app/edit-session.coffee /^ getPath: -> @buffer.getPath()$/;" f +getPath src/app/editor.coffee /^ getPath: -> @getBuffer().getPath()$/;" f +getPath src/app/file.coffee /^ getPath: -> @path$/;" f +getPath src/app/git.coffee /^ getPath: -> @repo.getPath()$/;" f +getPath src/app/project.coffee /^ getPath: ->$/;" f +getPath src/extensions/command-panel/src/operation.coffee /^ getPath: ->$/;" f +getPath src/extensions/tree-view/src/directory-view.coffee /^ getPath: ->$/;" f +getPath src/extensions/tree-view/src/file-view.coffee /^ getPath: ->$/;" f +getPathStatus src/app/git.coffee /^ getPathStatus: (path) ->$/;" f +getPixelPosition src/app/cursor-view.coffee /^ getPixelPosition: ->$/;" f +getPreferencesByScopeSelector src/app/text-mate-bundle.coffee /^ getPreferencesByScopeSelector: ->$/;" f +getPreferencesPath src/app/text-mate-bundle.coffee /^ getPreferencesPath: ->$/;" f +getRange src/app/buffer.coffee /^ getRange: ->$/;" f +getRange src/extensions/command-panel/src/commands/address-range.coffee /^ getRange: (buffer, range) ->$/;" f +getRange src/extensions/command-panel/src/commands/current-selection-address.coffee /^ getRange: (buffer, range) ->$/;" f +getRange src/extensions/command-panel/src/commands/default-address-range.coffee /^ getRange: (buffer, range)->$/;" f +getRange src/extensions/command-panel/src/commands/eof-address.coffee /^ getRange: (buffer, range) ->$/;" f +getRange src/extensions/command-panel/src/commands/line-address.coffee /^ getRange: ->$/;" f +getRange src/extensions/command-panel/src/commands/regex-address.coffee /^ getRange: (buffer, range) ->$/;" f +getRange src/extensions/command-panel/src/commands/zero-address.coffee /^ getRange: ->$/;" f +getRootDirectory src/app/project.coffee /^ getRootDirectory: ->$/;" f +getRowCount src/app/range.coffee /^ getRowCount: ->$/;" f +getRuleToPush src/app/text-mate-grammar.coffee /^ getRuleToPush: (line, beginPatternCaptureIndices) ->$/;" f +getRulesets src/app/text-mate-theme.coffee /^ getRulesets: -> @rulesets$/;" f +getScanner src/app/text-mate-grammar.coffee /^ getScanner: ->$/;" f +getScreenColumn src/app/cursor.coffee /^ getScreenColumn: ->$/;" f +getScreenPosition src/app/anchor.coffee /^ getScreenPosition: ->$/;" f +getScreenPosition src/app/cursor-view.coffee /^ getScreenPosition: ->$/;" f +getScreenPosition src/app/cursor.coffee /^ getScreenPosition: ->$/;" f +getScreenRange src/app/anchor-range.coffee /^ getScreenRange: ->$/;" f +getScreenRange src/app/selection-view.coffee /^ getScreenRange: ->$/;" f +getScreenRange src/app/selection.coffee /^ getScreenRange: ->$/;" f +getScreenRow src/app/anchor.coffee /^ getScreenRow: ->$/;" f +getScreenRow src/app/cursor.coffee /^ getScreenRow: ->$/;" f +getScrollLeft src/app/edit-session.coffee /^ getScrollLeft: -> @scrollLeft$/;" f +getScrollTop src/app/edit-session.coffee /^ getScrollTop: -> @scrollTop$/;" f +getSelectedBufferRange src/app/edit-session.coffee /^ getSelectedBufferRange: ->$/;" f +getSelectedBufferRange src/app/editor.coffee /^ getSelectedBufferRange: -> @activeEditSession.getSelectedBufferRange()$/;" f +getSelectedBufferRanges src/app/edit-session.coffee /^ getSelectedBufferRanges: ->$/;" f +getSelectedBufferRanges src/app/editor.coffee /^ getSelectedBufferRanges: -> @activeEditSession.getSelectedBufferRanges()$/;" f +getSelectedItem src/app/select-list.coffee /^ getSelectedItem: ->$/;" f +getSelectedOperation src/extensions/command-panel/src/preview-list.coffee /^ getSelectedOperation: ->$/;" f +getSelectedScreenRange src/app/edit-session.coffee /^ getSelectedScreenRange: ->$/;" f +getSelectedText src/app/edit-session.coffee /^ getSelectedText: ->$/;" f +getSelectedText src/app/editor.coffee /^ getSelectedText: -> @activeEditSession.getSelectedText()$/;" f +getSelection src/app/edit-session.coffee /^ getSelection: (index) ->$/;" f +getSelection src/app/editor.coffee /^ getSelection: (index) -> @activeEditSession.getSelection(index)$/;" f +getSelectionView src/app/editor.coffee /^ getSelectionView: (index) ->$/;" f +getSelectionViews src/app/editor.coffee /^ getSelectionViews: ->$/;" f +getSelections src/app/edit-session.coffee /^ getSelections: -> new Array(@selections...)$/;" f +getSelections src/app/editor.coffee /^ getSelections: -> @activeEditSession.getSelections()$/;" f +getSelectionsOrderedByBufferPosition src/app/edit-session.coffee /^ getSelectionsOrderedByBufferPosition: ->$/;" f +getSelectionsOrderedByBufferPosition src/app/editor.coffee /^ getSelectionsOrderedByBufferPosition: -> @activeEditSession.getSelectionsOrderedByBufferPosition()$/;" f +getShortHead src/app/git.coffee /^ getShortHead: ->$/;" f +getSoftTabs src/app/project.coffee /^ getSoftTabs: -> @softTabs$/;" f +getSoftWrap src/app/edit-session.coffee /^ getSoftWrap: -> @softWrap$/;" f +getSoftWrap src/app/project.coffee /^ getSoftWrap: -> @softWrap$/;" f +getStylesheet src/app/text-mate-theme.coffee /^ getStylesheet: ->$/;" f +getSyntaxesPath src/app/text-mate-bundle.coffee /^ getSyntaxesPath: ->$/;" f +getTabLength src/app/display-buffer.coffee /^ getTabLength: ->$/;" f +getTabLength src/app/edit-session.coffee /^ getTabLength: -> @displayBuffer.getTabLength()$/;" f +getTabLength src/app/tokenized-buffer.coffee /^ getTabLength: ->$/;" f +getTabText src/app/edit-session.coffee /^ getTabText: -> @buildIndentString(1)$/;" f +getText src/app/buffer.coffee /^ getText: ->$/;" f +getText src/app/editor.coffee /^ getText: -> @getBuffer().getText()$/;" f +getText src/app/selection.coffee /^ getText: ->$/;" f +getTextInBufferRange src/app/edit-session.coffee /^ getTextInBufferRange: (range) ->$/;" f +getTextInRange src/app/buffer.coffee /^ getTextInRange: (range) ->$/;" f +getTextInRange src/app/editor.coffee /^ getTextInRange: (range) -> @getBuffer().getTextInRange(range)$/;" f +getTitle src/app/root-view.coffee /^ getTitle: ->$/;" f +getTokensForCaptureIndices src/app/text-mate-grammar.coffee /^ getTokensForCaptureIndices: (line, captureIndices, scopes) ->$/;" f +getValueAsHtml src/app/token.coffee /^ getValueAsHtml: ({invisibles, hasLeadingWhitespace, hasTrailingWhitespace})->$/;" f +getWorkingDirectory src/app/git.coffee /^ getWorkingDirectory: ->$/;" f +get_case_fold_codes_by_str native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);$/;" m struct:OnigEncodingTypeST +get_case_fold_codes_by_str native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);$/;" m struct:OnigEncodingTypeST +get_case_fold_codes_by_str native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);$/;" m struct:OnigEncodingTypeST +get_ctype_code_range native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);$/;" m struct:OnigEncodingTypeST +get_ctype_code_range native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);$/;" m struct:OnigEncodingTypeST +get_ctype_code_range native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);$/;" m struct:OnigEncodingTypeST +goToNextTabStop src/extensions/snippets/src/snippet-expansion.coffee /^ goToNextTabStop: ->$/;" f +goToPreviousTabStop src/extensions/snippets/src/snippet-expansion.coffee /^ goToPreviousTabStop: ->$/;" f +gotoFirstLogicalTag native/v8_extensions/readtags.c /^static void gotoFirstLogicalTag (tagFile *const file)$/;" f file: +group native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int group; \/* group number *\/$/;" m struct:OnigCaptureTreeNodeStruct +group native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int group; \/* group number *\/$/;" m struct:OnigCaptureTreeNodeStruct +group native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int group; \/* group number *\/$/;" m struct:OnigCaptureTreeNodeStruct +growFields native/v8_extensions/readtags.c /^static tagResult growFields (tagFile *const file)$/;" f file: +growString native/v8_extensions/readtags.c /^static int growString (vstring *s)$/;" f file: +hInst native/atom_win.cpp /^HINSTANCE hInst; \/\/ current instance$/;" v +handleBeingOpenedAgain native/main_mac.mm /^void handleBeingOpenedAgain(int argc, char* argv[]) {$/;" f +handleBufferChange src/app/anchor.coffee /^ handleBufferChange: (e) ->$/;" f +handleBufferChange src/app/display-buffer.coffee /^ handleBufferChange: (e) ->$/;" f +handleBufferChange src/app/fold.coffee /^ handleBufferChange: (event) ->$/;" f +handleBufferChange src/app/tokenized-buffer.coffee /^ handleBufferChange: (e) ->$/;" f +handleEvents src/app/editor.coffee /^ handleEvents: ->$/;" f +handleEvents src/app/root-view.coffee /^ handleEvents: ->$/;" f +handleEvents src/extensions/autocomplete/src/autocomplete.coffee /^ handleEvents: ->$/;" f +handleKeyEvent src/app/keymap.coffee /^ handleKeyEvent: (event) ->$/;" f +handleMatch src/app/text-mate-grammar.coffee /^ handleMatch: (stack, line, captureIndices) ->$/;" f +handleNativeChangeEvent src/app/file.coffee /^ handleNativeChangeEvent: (eventType, path) ->$/;" f +handleScreenLinesChange src/app/editor.coffee /^ handleScreenLinesChange: (change) ->$/;" f +handleTokenizedBufferChange src/app/display-buffer.coffee /^ handleTokenizedBufferChange: (tokenizedBufferChange) ->$/;" f +hasFocus src/extensions/tree-view/src/tree-view.coffee /^ hasFocus: ->$/;" f +hasMultipleCursors src/app/edit-session.coffee /^ hasMultipleCursors: ->$/;" f +hasOperations src/extensions/command-panel/src/preview-list.coffee /^ hasOperations: -> @operations?$/;" f +hides the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "hides the command panel", ->$/;" f +hides the guide when the column is less than 1 src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "hides the guide when the column is less than 1", ->$/;" f +hides the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "hides the tree view", ->$/;" f +highlight src/app/selection-view.coffee /^ highlight: ->$/;" f +highlightCursorLine src/app/editor.coffee /^ highlightCursorLine: ->$/;" f +highlightCursorLine src/app/gutter.coffee /^ highlightCursorLine = => @highlightCursorLine()$/;" f +highlightCursorLine src/app/gutter.coffee /^ highlightCursorLine: ->$/;" f +highlightFoldsContainingBufferRange src/app/editor.coffee /^ highlightFoldsContainingBufferRange: (bufferRange) ->$/;" f +highlights the next match and replaces the selection with it src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "highlights the next match and replaces the selection with it", ->$/;" f +highlights the previous match and replaces the selection with it src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "highlights the previous match and replaces the selection with it", ->$/;" f +highlights the tab for the current active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "highlights the tab for the current active edit session", ->$/;" f +highlights the tab for the newly-active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "highlights the tab for the newly-active edit session", ->$/;" f +history_root native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCaptureTreeNode* history_root; \/* capture history tree root *\/$/;" m struct:re_registers +history_root native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCaptureTreeNode* history_root; \/* capture history tree root *\/$/;" m struct:re_registers +history_root native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCaptureTreeNode* history_root; \/* capture history tree root *\/$/;" m struct:re_registers +horizontalChildUnits src/app/pane-grid.coffee /^ horizontalChildUnits: ->$/;" f +horizontalGridUnits src/app/pane-column.coffee /^ horizontalGridUnits: ->$/;" f +horizontalGridUnits src/app/pane-row.coffee /^ horizontalGridUnits: ->$/;" f +horizontalGridUnits src/app/pane.coffee /^ horizontalGridUnits: ->$/;" f +humanizeEventName src/stdlib/underscore-extensions.coffee /^ humanizeEventName: (eventName) ->$/;" f +idCounter native/v8_extensions/native_linux.h /^ unsigned long int idCounter;$/;" m class:v8_extensions::NativeHandler +ignoreRepositoryPath src/app/project.coffee /^ ignoreRepositoryPath: (path) ->$/;" f +ignorecase native/v8_extensions/readtags.c /^ short ignorecase;$/;" m struct:sTagFile::__anon23 file: +immediately confirms the current completion choice and inserts that character into the buffer src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "immediately confirms the current completion choice and inserts that character into the buffer", ->$/;" f +indent src/app/edit-session.coffee /^ indent: ->$/;" f +indent src/app/editor.coffee /^ indent: -> @activeEditSession.indent()$/;" f +indent src/app/selection.coffee /^ indent: ->$/;" f +indentLevelForLine src/app/edit-session.coffee /^ indentLevelForLine: (line) ->$/;" f +indentSelectedRows src/app/edit-session.coffee /^ indentSelectedRows: ->$/;" f +indentSelectedRows src/app/editor.coffee /^ indentSelectedRows: -> @activeEditSession.indentSelectedRows()$/;" f +indentSelectedRows src/app/selection.coffee /^ indentSelectedRows: ->$/;" f +indentSubsequentLines src/extensions/snippets/src/snippet-expansion.coffee /^ indentSubsequentLines: (startRow, snippet) ->$/;" f +indentationForBufferRow src/app/edit-session.coffee /^ indentationForBufferRow: (bufferRow) ->$/;" f +indents the subsequent lines of the snippet to be even with the start of the first line src/extensions/snippets/spec/snippets-spec.coffee /^ it "indents the subsequent lines of the snippet to be even with the start of the first line", ->$/;" f +initialize native/v8_extensions/readtags.c /^static tagFile *initialize (const char *const filePath, tagFileInfo *const info)$/;" f file: +initialize src/app/cursor-view.coffee /^ initialize: (@cursor, @editor) ->$/;" f +initialize src/app/editor.coffee /^ initialize: ({editSession, @mini, @showInvisibles} = {}) ->$/;" f +initialize src/app/pane-grid.coffee /^ initialize: (children=[]) ->$/;" f +initialize src/app/root-view.coffee /^ initialize: (pathToOpen, { @extensionStates, suppressOpen } = {}) ->$/;" f +initialize src/app/scroll-view.coffee /^ initialize: ->$/;" f +initialize src/app/select-list.coffee /^ initialize: ->$/;" f +initialize src/app/selection-view.coffee /^ initialize: ({@editor, @selection} = {}) ->$/;" f +initialize src/app/status-bar.coffee /^ initialize: (@rootView, @editor) ->$/;" f +initialize src/extensions/autocomplete/src/autocomplete.coffee /^ initialize: (@editor) ->$/;" f +initialize src/extensions/command-panel/src/command-panel.coffee /^ initialize: (@rootView, @history) ->$/;" f +initialize src/extensions/command-panel/src/preview-list.coffee /^ initialize: (@rootView) ->$/;" f +initialize src/extensions/event-palette/src/event-palette.coffee /^ initialize: (@rootView) ->$/;" f +initialize src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ initialize: (@rootView) ->$/;" f +initialize src/extensions/markdown-preview/src/markdown-preview.coffee /^ initialize: (@rootView) ->$/;" f +initialize src/extensions/outline-view/src/outline-view.coffee /^ initialize: (@rootView) ->$/;" f +initialize src/extensions/tabs/src/tab.coffee /^ initialize: (@editSession) ->$/;" f +initialize src/extensions/tabs/src/tabs.coffee /^ initialize: (@editor) ->$/;" f +initialize src/extensions/tree-view/src/dialog.coffee /^ initialize: ({path, @onConfirm, select} = {}) ->$/;" f +initialize src/extensions/tree-view/src/directory-view.coffee /^ initialize: ({@directory, isExpanded, @project, parent} = {}) ->$/;" f +initialize src/extensions/tree-view/src/file-view.coffee /^ initialize: (@file) ->$/;" f +initialize src/extensions/tree-view/src/tree-view.coffee /^ initialize: (@rootView) ->$/;" f +initialize src/extensions/wrap-guide/src/wrap-guide.coffee /^ initialize: (@rootView, @editor, config = {}) =>$/;" f +initialized native/v8_extensions/readtags.c /^ short initialized;$/;" m struct:sTagFile file: +initially displays all JavaScript functions with line numbers src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "initially displays all JavaScript functions with line numbers", ->$/;" f +insert src/app/buffer.coffee /^ insert: (point, text) ->$/;" f +insertAtBufferRow src/app/old-line-map.coffee /^ insertAtBufferRow: (bufferRow, lineFragments) ->$/;" f +insertAtScreenRow src/app/line-map.coffee /^ insertAtScreenRow: (bufferRow, screenLines) ->$/;" f +insertNewline src/app/edit-session.coffee /^ insertNewline: ->$/;" f +insertNewline src/app/editor.coffee /^ insertNewline: -> @activeEditSession.insertNewline()$/;" f +insertNewlineBelow src/app/edit-session.coffee /^ insertNewlineBelow: ->$/;" f +insertNewlineBelow src/app/editor.coffee /^ insertNewlineBelow: -> @activeEditSession.insertNewlineBelow()$/;" f +insertText src/app/edit-session.coffee /^ insertText: (text, options) ->$/;" f +insertText src/app/editor.coffee /^ insertText: (text, options) -> @activeEditSession.insertText(text, options)$/;" f +insertText src/app/selection.coffee /^ insertText: (text, options={}) ->$/;" f +inserts a tab as normal src/extensions/snippets/spec/snippets-spec.coffee /^ it "inserts a tab as normal", ->$/;" f +inspect src/app/edit-session.coffee /^ inspect: ->$/;" f +inspect src/app/fold.coffee /^ inspect: ->$/;" f +inspect src/app/point.coffee /^ inspect: ->$/;" f +inspect src/app/range.coffee /^ inspect: ->$/;" f +int_map native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int *int_map; \/* BM skip for exact_len > 255 *\/$/;" m struct:re_pattern_buffer +int_map native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int *int_map; \/* BM skip for exact_len > 255 *\/$/;" m struct:re_pattern_buffer +int_map native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int *int_map; \/* BM skip for exact_len > 255 *\/$/;" m struct:re_pattern_buffer +int_map_backward native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int *int_map_backward; \/* BM skip for backward search *\/$/;" m struct:re_pattern_buffer +int_map_backward native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int *int_map_backward; \/* BM skip for backward search *\/$/;" m struct:re_pattern_buffer +int_map_backward native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int *int_map_backward; \/* BM skip for backward search *\/$/;" m struct:re_pattern_buffer +intersectsBufferRange src/app/selection.coffee /^ intersectsBufferRange: (bufferRange) ->$/;" f +intersectsWith src/app/range.coffee /^ intersectsWith: (otherRange) ->$/;" f +intersectsWith src/app/selection.coffee /^ intersectsWith: (otherSelection) ->$/;" f +invalidateRow src/app/tokenized-buffer.coffee /^ invalidateRow: (row) ->$/;" f +invokes the callback with a default value src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "invokes the callback with a default value", ->$/;" f +invokes the callback with the editor path src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "invokes the callback with the editor path", ->$/;" f +io_util_app_directory native/linux/io_utils.cpp /^string io_util_app_directory() {$/;" f +io_utils_read native/linux/io_utils.cpp /^int io_utils_read(string path, string* output) {$/;" f +io_utils_real_app_path native/linux/io_utils.cpp /^string io_utils_real_app_path(string relativePath) {$/;" f +is case-insentive when the pattern contains no non-escaped uppercase letters (behavior copied from vim) src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "is case-insentive when the pattern contains no non-escaped uppercase letters (behavior copied from vim)", ->$/;" f +is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "is selected", ->$/;" f +is selected in the tree view if the file's entry visible src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "is selected in the tree view if the file's entry visible", ->$/;" f +isAddress src/extensions/command-panel/src/commands/address.coffee /^ isAddress: -> true$/;" f +isAddress src/extensions/command-panel/src/commands/command.coffee /^ isAddress: -> false$/;" f +isAppAlreadyOpen native/main_mac.mm /^BOOL isAppAlreadyOpen() {$/;" f +isAtBeginningOfLine src/app/cursor.coffee /^ isAtBeginningOfLine: ->$/;" f +isAtEndOfLine src/app/cursor.coffee /^ isAtEndOfLine: ->$/;" f +isBracket src/app/token.coffee /^ isBracket: ->$/;" f +isBufferRowBlank src/app/edit-session.coffee /^ isBufferRowBlank: (bufferRow) -> @buffer.isRowBlank(bufferRow)$/;" f +isClosingBracket src/app/language-mode.coffee /^ isClosingBracket: (string) ->$/;" f +isContainedByFold src/app/fold.coffee /^ isContainedByFold: (fold) ->$/;" f +isContainedByRange src/app/fold.coffee /^ isContainedByRange: (range) ->$/;" f +isDirectory src/stdlib/fs.coffee /^ isDirectory: (path) ->$/;" f +isEmpty src/app/buffer.coffee /^ isEmpty: -> @lines.length is 1 and @lines[0].length is 0$/;" f +isEmpty src/app/range.coffee /^ isEmpty: ->$/;" f +isEmpty src/app/selection.coffee /^ isEmpty: ->$/;" f +isEqual src/app/edit-session.coffee /^ isEqual: (other) ->$/;" f +isEqual src/app/old-screen-line.coffee /^ isEqual: (other) ->$/;" f +isEqual src/app/point.coffee /^ isEqual: (other) ->$/;" f +isEqual src/app/range.coffee /^ isEqual: (other) ->$/;" f +isEqual src/app/token.coffee /^ isEqual: (other) ->$/;" f +isFile src/stdlib/fs.coffee /^ isFile: (path) ->$/;" f +isFoldContainedByActiveFold src/app/display-buffer.coffee /^ isFoldContainedByActiveFold: (fold) ->$/;" f +isFoldedAtScreenRow src/app/edit-session.coffee /^ isFoldedAtScreenRow: (screenRow) ->$/;" f +isFoldedAtScreenRow src/app/editor.coffee /^ isFoldedAtScreenRow: (screenRow) -> @activeEditSession.isFoldedAtScreenRow(screenRow)$/;" f +isGreaterThan src/app/point.coffee /^ isGreaterThan: (other) ->$/;" f +isGreaterThanOrEqual src/app/point.coffee /^ isGreaterThanOrEqual: (other) ->$/;" f +isInConflict src/app/buffer.coffee /^ isInConflict: -> @conflict$/;" f +isLastCursor src/app/cursor.coffee /^ isLastCursor: ->$/;" f +isLessThan src/app/point.coffee /^ isLessThan: (other) ->$/;" f +isLessThanOrEqual src/app/point.coffee /^ isLessThanOrEqual: (other) ->$/;" f +isMarkdownFile src/extensions/markdown-preview/src/markdown-preview.coffee /^ isMarkdownFile: (path) ->$/;" f +isModified src/app/buffer.coffee /^ isModified: ->$/;" f +isOnlyWhitespace src/app/token.coffee /^ isOnlyWhitespace: ->$/;" f +isOpeningBracket src/app/language-mode.coffee /^ isOpeningBracket: (string) ->$/;" f +isPathIgnored src/app/git.coffee /^ isPathIgnored: (path) ->$/;" f +isPathIgnored src/app/project.coffee /^ isPathIgnored: (path) ->$/;" f +isPathIgnored src/extensions/tree-view/src/directory-view.coffee /^ isPathIgnored: (path) ->$/;" f +isPathModified src/app/git.coffee /^ isPathModified: (path) ->$/;" f +isPathNew src/app/git.coffee /^ isPathNew: (path) ->$/;" f +isQuote src/app/language-mode.coffee /^ isQuote: (string) ->$/;" f +isRelative src/extensions/command-panel/src/commands/address-range.coffee /^ isRelative: ->$/;" f +isRelative src/extensions/command-panel/src/commands/current-selection-address.coffee /^ isRelative: -> true$/;" f +isRelative src/extensions/command-panel/src/commands/default-address-range.coffee /^ isRelative: -> false$/;" f +isRelative src/extensions/command-panel/src/commands/eof-address.coffee /^ isRelative: -> false$/;" f +isRelative src/extensions/command-panel/src/commands/line-address.coffee /^ isRelative: -> false$/;" f +isRelative src/extensions/command-panel/src/commands/regex-address.coffee /^ isRelative: -> true$/;" f +isRelative src/extensions/command-panel/src/commands/zero-address.coffee /^ isRelative: -> false$/;" f +isRelativeAddress src/extensions/command-panel/src/commands/composite-command.coffee /^ isRelativeAddress: ->$/;" f +isReversed src/app/selection.coffee /^ isReversed: ->$/;" f +isRowBlank src/app/buffer.coffee /^ isRowBlank: (row) ->$/;" f +isScreenRowVisible src/app/editor.coffee /^ isScreenRowVisible: (row) ->$/;" f +isSingleLine src/app/range.coffee /^ isSingleLine: ->$/;" f +isSingleScreenLine src/app/selection.coffee /^ isSingleScreenLine: ->$/;" f +isSoftWrapped src/app/old-screen-line.coffee /^ isSoftWrapped: ->$/;" f +isSoftWrapped src/app/screen-line.coffee /^ isSoftWrapped: ->$/;" f +isVisible src/app/cursor.coffee /^ isVisible: -> @visible$/;" f +is_allowed_reverse_match native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +is_allowed_reverse_match native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +is_allowed_reverse_match native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +is_code_ctype native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);$/;" m struct:OnigEncodingTypeST +is_code_ctype native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);$/;" m struct:OnigEncodingTypeST +is_code_ctype native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);$/;" m struct:OnigEncodingTypeST +is_mbc_newline native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +is_mbc_newline native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +is_mbc_newline native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +it repeats the last relative address in the reverse direction src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "it repeats the last relative address in the reverse direction", ->$/;" f +it returns an error messages src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "it returns an error messages", ->$/;" f +itemForElement src/extensions/event-palette/src/event-palette.coffee /^ itemForElement: ({eventName, eventDescription}) ->$/;" f +itemForElement src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ itemForElement: (path) ->$/;" f +itemForElement src/extensions/outline-view/src/outline-view.coffee /^ itemForElement: ({position, name}) ->$/;" f +iterateTokensInBufferRange src/app/tokenized-buffer.coffee /^ iterateTokensInBufferRange: (bufferRange, iterator) ->$/;" f +join src/stdlib/fs.coffee /^ join: (paths...) ->$/;" f +js src/stdlib/require.coffee /^ js: (file, code) ->$/;" f +jumpToDeclaration src/extensions/outline-view/src/outline-view.coffee /^ jumpToDeclaration: ->$/;" f +key native/v8_extensions/readtags.h /^ const char *key;$/;" m struct:__anon32 +keyFromCharCode src/app/keymap.coffee /^ keyFromCharCode: (charCode) ->$/;" f +keystrokeStringForEvent src/app/keymap.coffee /^ keystrokeStringForEvent: (event) ->$/;" f +killLine src/app/editor.coffee /^ killLine = (line) ->$/;" f +kind native/v8_extensions/readtags.h /^ const char *kind;$/;" m struct:__anon33 +largestFoldContainingBufferRow src/app/display-buffer.coffee /^ largestFoldContainingBufferRow: (bufferRow) ->$/;" f +largestFoldContainingBufferRow src/app/edit-session.coffee /^ largestFoldContainingBufferRow: (bufferRow) ->$/;" f +largestFoldStartingAtBufferRow src/app/display-buffer.coffee /^ largestFoldStartingAtBufferRow: (bufferRow) ->$/;" f +largestFoldStartingAtScreenRow src/app/display-buffer.coffee /^ largestFoldStartingAtScreenRow: (screenRow) ->$/;" f +largestFoldStartingAtScreenRow src/app/edit-session.coffee /^ largestFoldStartingAtScreenRow: (screenRow) ->$/;" f +lastMatchedString native/v8_extensions/onig_scanner.mm /^ std::string lastMatchedString;$/;" m class:v8_extensions::OnigScannerUserData file: +lastModified src/stdlib/fs.coffee /^ lastModified: (path) ->$/;" f +lastScreenRow src/app/line-map.coffee /^ lastScreenRow: ->$/;" f +lastScreenRow src/app/old-line-map.coffee /^ lastScreenRow: ->$/;" f +lastScreenRowForBufferRow src/app/display-buffer.coffee /^ lastScreenRowForBufferRow: (bufferRow) ->$/;" f +lastStartLocation native/v8_extensions/onig_scanner.mm /^ int lastStartLocation;$/;" m class:v8_extensions::OnigScannerUserData file: +left_adjust_char_head native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);$/;" m struct:OnigEncodingTypeST +left_adjust_char_head native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);$/;" m struct:OnigEncodingTypeST +left_adjust_char_head native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);$/;" m struct:OnigEncodingTypeST +line native/v8_extensions/readtags.c /^ vstring line;$/;" m struct:sTagFile file: +lineCount src/app/display-buffer.coffee /^ lineCount: ->$/;" f +lineCountByDelta src/app/old-line-map.coffee /^ lineCountByDelta: (deltaType) ->$/;" f +lineElementForScreenRow src/app/editor.coffee /^ lineElementForScreenRow: (screenRow) ->$/;" f +lineForBufferRow src/app/edit-session.coffee /^ lineForBufferRow: (row) -> @buffer.lineForRow(row)$/;" f +lineForBufferRow src/app/editor.coffee /^ lineForBufferRow: (row) -> @getBuffer().lineForRow(row)$/;" f +lineForBufferRow src/app/old-line-map.coffee /^ lineForBufferRow: (row) ->$/;" f +lineForRow src/app/buffer.coffee /^ lineForRow: (row) ->$/;" f +lineForRow src/app/display-buffer.coffee /^ lineForRow: (row) ->$/;" f +lineForScreenRow src/app/edit-session.coffee /^ lineForScreenRow: (row) -> @displayBuffer.lineForRow(row)$/;" f +lineForScreenRow src/app/editor.coffee /^ lineForScreenRow: (screenRow) -> @activeEditSession.lineForScreenRow(screenRow)$/;" f +lineForScreenRow src/app/line-map.coffee /^ lineForScreenRow: (row) ->$/;" f +lineForScreenRow src/app/old-line-map.coffee /^ lineForScreenRow: (row) ->$/;" f +lineForScreenRow src/app/tokenized-buffer.coffee /^ lineForScreenRow: (row) ->$/;" f +lineLengthForBufferRow src/app/editor.coffee /^ lineLengthForBufferRow: (row) -> @getBuffer().lineLengthForRow(row)$/;" f +lineLengthForRow src/app/buffer.coffee /^ lineLengthForRow: (row) ->$/;" f +lineNumber native/v8_extensions/readtags.h /^ unsigned long lineNumber;$/;" m struct:__anon33::__anon34 +linesByDelta src/app/old-line-map.coffee /^ linesByDelta: (deltaType, startRow, endRow) ->$/;" f +linesForBufferRows src/app/old-line-map.coffee /^ linesForBufferRows: (startRow, endRow) ->$/;" f +linesForRows src/app/display-buffer.coffee /^ linesForRows: (startRow, endRow) ->$/;" f +linesForScreenRows src/app/edit-session.coffee /^ linesForScreenRows: (start, end) -> @displayBuffer.linesForRows(start, end)$/;" f +linesForScreenRows src/app/editor.coffee /^ linesForScreenRows: (start, end) -> @activeEditSession.linesForScreenRows(start, end)$/;" f +linesForScreenRows src/app/line-map.coffee /^ linesForScreenRows: (startRow, endRow) ->$/;" f +linesForScreenRows src/app/old-line-map.coffee /^ linesForScreenRows: (startRow, endRow) ->$/;" f +linesForScreenRows src/app/tokenized-buffer.coffee /^ linesForScreenRows: (startRow, endRow) ->$/;" f +list native/v8_extensions/readtags.c /^ tagExtensionField *list;$/;" m struct:sTagFile::__anon24 file: +list native/v8_extensions/readtags.h /^ tagExtensionField *list;$/;" m struct:__anon33::__anon35 +list src/stdlib/fs.coffee /^ list: (rootPath) ->$/;" f +listTags native/v8_extensions/readtags.c /^static void listTags (void)$/;" f file: +listTree src/stdlib/fs.coffee /^ listTree: (rootPath) ->$/;" f +listenForPathToOpen native/main_mac.mm /^void listenForPathToOpen(int fd, NSString *socketPath) {$/;" f +lists the paths of the current open buffers src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "lists the paths of the current open buffers", ->$/;" f +load src/stdlib/settings.coffee /^ load: (path) ->$/;" f +loadHtml src/extensions/markdown-preview/src/markdown-preview.coffee /^ loadHtml: (text) ->$/;" f +loadNextEditSession src/app/editor.coffee /^ loadNextEditSession: ->$/;" f +loadPreviousEditSession src/app/editor.coffee /^ loadPreviousEditSession: ->$/;" f +loadSnippets src/extensions/snippets/src/snippets.coffee /^ loadSnippets: ->$/;" f +loadSnippetsFile src/extensions/snippets/src/snippets.coffee /^ loadSnippetsFile: (path) ->$/;" f +loadUserConfiguration src/app/root-view.coffee /^ loadUserConfiguration: ->$/;" f +loads the snippets in the given file src/extensions/snippets/spec/snippets-spec.coffee /^ it "loads the snippets in the given file", ->$/;" f +logCursorScope src/app/editor.coffee /^ logCursorScope: ->$/;" f +logLines src/app/display-buffer.coffee /^ logLines: (start, end) ->$/;" f +logRenderedLines src/app/editor.coffee /^ logRenderedLines: ->$/;" f +logScreenLines src/app/edit-session.coffee /^ logScreenLines: (start, end) -> @displayBuffer.logLines(start, end)$/;" f +logScreenLines src/app/editor.coffee /^ logScreenLines: (start, end) ->$/;" f +loops through current selections and selects text matching the regex src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "loops through current selections and selects text matching the regex", ->$/;" f +losslessInvert src/stdlib/underscore-extensions.coffee /^ losslessInvert: (hash) ->$/;" f +lower native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int lower;$/;" m struct:__anon6 +lower native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int lower;$/;" m struct:__anon13 +lower native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int lower;$/;" m struct:__anon20 +m_Browser native/atom_cef_client.h /^ CefRefPtr m_Browser;$/;" m class:AtomCefClient +m_Browser native/linux/client_handler.h /^ CefRefPtr m_Browser;$/;" m class:ClientHandler +m_BrowserHwnd native/linux/client_handler.h /^ CefWindowHandle m_BrowserHwnd;$/;" m class:ClientHandler +m_BrowserId native/linux/client_handler.h /^ int m_BrowserId;$/;" m class:ClientHandler +m_HandlePasteboardCommands native/atom_cef_client.h /^ bool m_HandlePasteboardCommands = false;$/;" m class:AtomCefClient +m_MainHwnd native/linux/client_handler.h /^ CefWindowHandle m_MainHwnd;$/;" m class:ClientHandler +m_regex native/v8_extensions/onig_reg_exp.mm /^ OnigRegexp *m_regex;$/;" m class:v8_extensions::OnigRegExpUserData file: +main native/atom_gtk.cpp /^int main(int argc, char* argv[]) {$/;" f +main native/linux/atom_app.cpp /^int main(int argc, char *argv[]) {$/;" f +main native/main_helper_mac.mm /^int main(int argc, char* argv[]) {$/;" f +main native/main_mac.mm /^int main(int argc, char* argv[]) {$/;" f +main native/v8_extensions/readtags.c /^extern int main (int argc, char **argv)$/;" f +maintains the current selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "maintains the current selections", ->$/;" f +makeDirectory src/stdlib/fs.coffee /^ makeDirectory: (path) ->$/;" f +makeEditorActive src/app/root-view.coffee /^ makeEditorActive: (editor, focus) ->$/;" f +makeTree src/stdlib/fs.coffee /^ makeTree: (path) ->$/;" f +makes the tab text 'untitled' src/extensions/tabs/spec/tabs-spec.coffee /^ it "makes the tab text 'untitled'", ->$/;" f +map native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char map[ONIG_CHAR_TABLE_SIZE]; \/* used as BM skip or char-map *\/$/;" m struct:re_pattern_buffer +map native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char map[ONIG_CHAR_TABLE_SIZE]; \/* used as BM skip or char-map *\/$/;" m struct:re_pattern_buffer +map native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char map[ONIG_CHAR_TABLE_SIZE]; \/* used as BM skip or char-map *\/$/;" m struct:re_pattern_buffer +matches the beginning of each line and avoids infinitely looping on a zero-width match src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "matches the beginning of each line and avoids infinitely looping on a zero-width match", ->$/;" f +matches the end of each line and avoids infinitely looping on a zero-width match src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "matches the end of each line and avoids infinitely looping on a zero-width match", ->$/;" f +matches the end of each line in the selected region src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "matches the end of each line in the selected region", ->$/;" f +matchesInCharacterRange src/app/buffer.coffee /^ matchesInCharacterRange: (regex, startIndex, endIndex) ->$/;" f +matchesKeystrokePrefix src/app/binding-set.coffee /^ matchesKeystrokePrefix: (event) ->$/;" f +max native/v8_extensions/readtags.c /^ unsigned short max;$/;" m struct:sTagFile::__anon24 file: +maxCachedIndex native/v8_extensions/onig_scanner.mm /^ int maxCachedIndex;$/;" m class:v8_extensions::OnigScannerUserData file: +maxLineLength src/app/display-buffer.coffee /^ maxLineLength: ->$/;" f +maxScreenLineLength src/app/edit-session.coffee /^ maxScreenLineLength: -> @displayBuffer.maxLineLength()$/;" f +maxScreenLineLength src/app/editor.coffee /^ maxScreenLineLength: -> @activeEditSession.maxScreenLineLength()$/;" f +maxScreenLineLength src/app/old-line-map.coffee /^ maxScreenLineLength: ->$/;" f +max_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int max_enc_len;$/;" m struct:OnigEncodingTypeST +max_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int max_enc_len;$/;" m struct:OnigEncodingTypeST +max_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int max_enc_len;$/;" m struct:OnigEncodingTypeST +mbc_case_fold native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);$/;" m struct:OnigEncodingTypeST +mbc_case_fold native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);$/;" m struct:OnigEncodingTypeST +mbc_case_fold native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);$/;" m struct:OnigEncodingTypeST +mbc_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*mbc_enc_len)(const OnigUChar* p);$/;" m struct:OnigEncodingTypeST +mbc_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*mbc_enc_len)(const OnigUChar* p);$/;" m struct:OnigEncodingTypeST +mbc_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*mbc_enc_len)(const OnigUChar* p);$/;" m struct:OnigEncodingTypeST +mbc_to_code native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +mbc_to_code native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +mbc_to_code native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST +measure src/app/window.coffee /^ measure: (description, fn) ->$/;" f +merge src/app/selection.coffee /^ merge: (otherSelection, options) ->$/;" f +mergeCursors src/app/edit-session.coffee /^ mergeCursors: ->$/;" f +mergeIntersectingSelections src/app/edit-session.coffee /^ mergeIntersectingSelections: (options) ->$/;" f +meta_char_table native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigMetaCharTableType meta_char_table;$/;" m struct:__anon4 +meta_char_table native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigMetaCharTableType meta_char_table;$/;" m struct:__anon11 +meta_char_table native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigMetaCharTableType meta_char_table;$/;" m struct:__anon18 +min_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int min_enc_len;$/;" m struct:OnigEncodingTypeST +min_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int min_enc_len;$/;" m struct:OnigEncodingTypeST +min_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int min_enc_len;$/;" m struct:OnigEncodingTypeST +modifySelection src/app/selection.coffee /^ modifySelection: (fn) ->$/;" f +move src/stdlib/fs.coffee /^ move: (source, target) ->$/;" f +moveCursorDown src/app/edit-session.coffee /^ moveCursorDown: (lineCount) ->$/;" f +moveCursorDown src/app/editor.coffee /^ moveCursorDown: -> @activeEditSession.moveCursorDown()$/;" f +moveCursorLeft src/app/edit-session.coffee /^ moveCursorLeft: ->$/;" f +moveCursorLeft src/app/editor.coffee /^ moveCursorLeft: -> @activeEditSession.moveCursorLeft()$/;" f +moveCursorRight src/app/edit-session.coffee /^ moveCursorRight: ->$/;" f +moveCursorRight src/app/editor.coffee /^ moveCursorRight: -> @activeEditSession.moveCursorRight()$/;" f +moveCursorToBeginningOfLine src/app/edit-session.coffee /^ moveCursorToBeginningOfLine: ->$/;" f +moveCursorToBeginningOfLine src/app/editor.coffee /^ moveCursorToBeginningOfLine: -> @activeEditSession.moveCursorToBeginningOfLine()$/;" f +moveCursorToBeginningOfWord src/app/edit-session.coffee /^ moveCursorToBeginningOfWord: ->$/;" f +moveCursorToBeginningOfWord src/app/editor.coffee /^ moveCursorToBeginningOfWord: -> @activeEditSession.moveCursorToBeginningOfWord()$/;" f +moveCursorToBottom src/app/edit-session.coffee /^ moveCursorToBottom: ->$/;" f +moveCursorToBottom src/app/editor.coffee /^ moveCursorToBottom: -> @activeEditSession.moveCursorToBottom()$/;" f +moveCursorToEndOfLine src/app/edit-session.coffee /^ moveCursorToEndOfLine: ->$/;" f +moveCursorToEndOfLine src/app/editor.coffee /^ moveCursorToEndOfLine: -> @activeEditSession.moveCursorToEndOfLine()$/;" f +moveCursorToEndOfWord src/app/edit-session.coffee /^ moveCursorToEndOfWord: ->$/;" f +moveCursorToEndOfWord src/app/editor.coffee /^ moveCursorToEndOfWord: -> @activeEditSession.moveCursorToEndOfWord()$/;" f +moveCursorToFirstCharacterOfLine src/app/edit-session.coffee /^ moveCursorToFirstCharacterOfLine: ->$/;" f +moveCursorToFirstCharacterOfLine src/app/editor.coffee /^ moveCursorToFirstCharacterOfLine: -> @activeEditSession.moveCursorToFirstCharacterOfLine()$/;" f +moveCursorToTop src/app/edit-session.coffee /^ moveCursorToTop: ->$/;" f +moveCursorToTop src/app/editor.coffee /^ moveCursorToTop: -> @activeEditSession.moveCursorToTop()$/;" f +moveCursorUp src/app/edit-session.coffee /^ moveCursorUp: (lineCount) ->$/;" f +moveCursorUp src/app/editor.coffee /^ moveCursorUp: -> @activeEditSession.moveCursorUp()$/;" f +moveCursors src/app/edit-session.coffee /^ moveCursors: (fn) ->$/;" f +moveDown src/app/cursor.coffee /^ moveDown: (rowCount = 1) ->$/;" f +moveDown src/extensions/tree-view/src/tree-view.coffee /^ moveDown: ->$/;" f +moveHandler src/app/editor.coffee /^ moveHandler = (event = lastMoveEvent) =>$/;" f +moveLeft src/app/cursor.coffee /^ moveLeft: ->$/;" f +moveRight src/app/cursor.coffee /^ moveRight: ->$/;" f +moveSelectedEntry src/extensions/tree-view/src/tree-view.coffee /^ moveSelectedEntry: ->$/;" f +moveToBeginningOfLine src/app/cursor.coffee /^ moveToBeginningOfLine: ->$/;" f +moveToBeginningOfWord src/app/cursor.coffee /^ moveToBeginningOfWord: ->$/;" f +moveToBottom src/app/cursor.coffee /^ moveToBottom: ->$/;" f +moveToEndOfLine src/app/cursor.coffee /^ moveToEndOfLine: ->$/;" f +moveToEndOfWord src/app/cursor.coffee /^ moveToEndOfWord: ->$/;" f +moveToFirstCharacterOfLine src/app/cursor.coffee /^ moveToFirstCharacterOfLine: ->$/;" f +moveToPosition src/extensions/outline-view/src/outline-view.coffee /^ moveToPosition: (position) ->$/;" f +moveToTop src/app/cursor.coffee /^ moveToTop: ->$/;" f +moveUp src/app/cursor.coffee /^ moveUp: (rowCount = 1) ->$/;" f +moveUp src/extensions/tree-view/src/tree-view.coffee /^ moveUp: ->$/;" f +moves the cursor to the declaration src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "moves the cursor to the declaration", ->$/;" f +moves the cursor to the selected function src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "moves the cursor to the selected function", ->$/;" f +moves the file, updates the tree view, and closes the dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "moves the file, updates the tree view, and closes the dialog", ->$/;" f +multiKeystrokeStringForEvent src/app/keymap.coffee /^ multiKeystrokeStringForEvent: (event) ->$/;" f +multiplyString src/stdlib/underscore-extensions.coffee /^ multiplyString: (string, n) ->$/;" f +mutateSelectedText src/app/edit-session.coffee /^ mutateSelectedText: (fn) ->$/;" f +nakedLoad src/stdlib/require.coffee /^nakedLoad = (file) ->$/;" f +name native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ const char* name;$/;" m struct:OnigEncodingTypeST +name native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ const char* name;$/;" m struct:OnigEncodingTypeST +name native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ const char* name;$/;" m struct:OnigEncodingTypeST +name native/v8_extensions/readtags.c /^ char *name;$/;" m struct:sTagFile::__anon23 file: +name native/v8_extensions/readtags.c /^ char *name;$/;" m struct:sTagFile::__anon25 file: +name native/v8_extensions/readtags.c /^ vstring name;$/;" m struct:sTagFile file: +name native/v8_extensions/readtags.h /^ const char *name;$/;" m struct:__anon28::__anon31 +name native/v8_extensions/readtags.h /^ const char *name;$/;" m struct:__anon33 +nameComparison native/v8_extensions/readtags.c /^static int nameComparison (tagFile *const file)$/;" f file: +nameLength native/v8_extensions/readtags.c /^ size_t nameLength;$/;" m struct:sTagFile::__anon23 file: +name_table native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ void* name_table;$/;" m struct:re_pattern_buffer +name_table native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ void* name_table;$/;" m struct:re_pattern_buffer +name_table native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ void* name_table;$/;" m struct:re_pattern_buffer +narrows the list of completions with the fuzzy match algorithm src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "narrows the list of completions with the fuzzy match algorithm", ->$/;" f +navigateBackwardInHistory src/extensions/command-panel/src/command-panel.coffee /^ navigateBackwardInHistory: ->$/;" f +navigateForwardInHistory src/extensions/command-panel/src/command-panel.coffee /^ navigateForwardInHistory: ->$/;" f +navigates forward and backward through the command history src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "navigates forward and backward through the command history", ->$/;" f +needsAutoscroll src/app/cursor-view.coffee /^ needsAutoscroll: ->$/;" f +needsAutoscroll src/app/selection-view.coffee /^ needsAutoscroll: ->$/;" f +newSplitEditor src/app/editor.coffee /^ newSplitEditor: ->$/;" f +nextNonBlankBufferRow src/app/edit-session.coffee /^ nextNonBlankBufferRow: (bufferRow) -> @buffer.nextNonBlankRow(bufferRow)$/;" f +nextNonBlankRow src/app/buffer.coffee /^ nextNonBlankRow: (startRow) ->$/;" f +nextTick src/stdlib/underscore-extensions.coffee /^ nextTick: (fn) ->$/;" f +normalizeCommandsByKeystrokes src/app/binding-set.coffee /^ normalizeCommandsByKeystrokes: (commandsByKeystrokes) ->$/;" f +normalizeIndent src/app/selection.coffee /^ normalizeIndent: (text, options) ->$/;" f +normalizeKeystroke src/app/binding-set.coffee /^ normalizeKeystroke: (keystroke) ->$/;" f +normalizeKeystrokes src/app/binding-set.coffee /^ normalizeKeystrokes: (keystrokes) ->$/;" f +notifyFd native/v8_extensions/native_linux.h /^ int notifyFd;$/;" m class:v8_extensions::NativeHandler +num_call native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_call; \/* number of subexp call *\/$/;" m struct:re_pattern_buffer +num_call native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_call; \/* number of subexp call *\/$/;" m struct:re_pattern_buffer +num_call native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_call; \/* number of subexp call *\/$/;" m struct:re_pattern_buffer +num_childs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_childs;$/;" m struct:OnigCaptureTreeNodeStruct +num_childs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_childs;$/;" m struct:OnigCaptureTreeNodeStruct +num_childs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_childs;$/;" m struct:OnigCaptureTreeNodeStruct +num_comb_exp_check native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_comb_exp_check; \/* combination explosion check *\/$/;" m struct:re_pattern_buffer +num_comb_exp_check native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_comb_exp_check; \/* combination explosion check *\/$/;" m struct:re_pattern_buffer +num_comb_exp_check native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_comb_exp_check; \/* combination explosion check *\/$/;" m struct:re_pattern_buffer +num_mem native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_mem; \/* used memory(...) num counted from 1 *\/$/;" m struct:re_pattern_buffer +num_mem native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_mem; \/* used memory(...) num counted from 1 *\/$/;" m struct:re_pattern_buffer +num_mem native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_mem; \/* used memory(...) num counted from 1 *\/$/;" m struct:re_pattern_buffer +num_null_check native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_null_check; \/* OP_NULL_CHECK_START\/END id counter *\/$/;" m struct:re_pattern_buffer +num_null_check native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_null_check; \/* OP_NULL_CHECK_START\/END id counter *\/$/;" m struct:re_pattern_buffer +num_null_check native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_null_check; \/* OP_NULL_CHECK_START\/END id counter *\/$/;" m struct:re_pattern_buffer +num_of_elements native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_of_elements;$/;" m struct:__anon7 +num_of_elements native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_of_elements;$/;" m struct:__anon14 +num_of_elements native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_of_elements;$/;" m struct:__anon21 +num_regs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_regs;$/;" m struct:re_registers +num_regs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_regs;$/;" m struct:re_registers +num_regs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_regs;$/;" m struct:re_registers +num_repeat native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_repeat; \/* OP_REPEAT\/OP_REPEAT_NG id-counter *\/$/;" m struct:re_pattern_buffer +num_repeat native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_repeat; \/* OP_REPEAT\/OP_REPEAT_NG id-counter *\/$/;" m struct:re_pattern_buffer +num_repeat native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_repeat; \/* OP_REPEAT\/OP_REPEAT_NG id-counter *\/$/;" m struct:re_pattern_buffer +off src/app/event-emitter.coffee /^ off: (eventName='', handler) ->$/;" f +off src/stdlib/event.coffee /^ off: (name, callback) ->$/;" f +on src/app/event-emitter.coffee /^ on: (eventName, handler) ->$/;" f +on src/stdlib/event.coffee /^ on: (name, callback) ->$/;" f +onConfirm src/extensions/tree-view/src/tree-view.coffee /^ onConfirm: (newPath) =>$/;" f +onConfirm src/extensions/tree-view/src/tree-view.coffee /^ onConfirm: (relativePath) =>$/;" f +onPath src/stdlib/fs.coffee /^ onPath = (path) =>$/;" f +one src/app/event-emitter.coffee /^ one: (eventName, handler) ->$/;" f +oneShotHandler src/app/event-emitter.coffee /^ oneShotHandler = (args...) =>$/;" f +one_or_more_time native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint one_or_more_time;$/;" m struct:__anon3 +one_or_more_time native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint one_or_more_time;$/;" m struct:__anon10 +one_or_more_time native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint one_or_more_time;$/;" m struct:__anon17 +onerror src/app/window.coffee /^ onerror: ->$/;" f +onig_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define onig_enc_len(/;" d +onig_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define onig_enc_len(/;" d +onig_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define onig_enc_len(/;" d +only makes substitutions within given lines src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "only makes substitutions within given lines", ->$/;" f +only retains the configured max serialized history size src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "only retains the configured max serialized history size", ->$/;" f +op native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int op;$/;" m struct:__anon4 +op native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int op;$/;" m struct:__anon11 +op native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int op;$/;" m struct:__anon18 +op2 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int op2;$/;" m struct:__anon4 +op2 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int op2;$/;" m struct:__anon11 +op2 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int op2;$/;" m struct:__anon18 +open src/app/root-view.coffee /^ open: (path, options = {}) ->$/;" f +openInExistingEditor src/app/root-view.coffee /^ openInExistingEditor: (path, allowActiveEditorChange, changeFocus) ->$/;" f +openSelectedEntry src/extensions/tree-view/src/tree-view.coffee /^ openSelectedEntry: (changeFocus) ->$/;" f +opened native/v8_extensions/readtags.h /^ int opened;$/;" m struct:__anon28::__anon29 +opens a move dialog with the file's current path (excluding extension) populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens a move dialog with the file's current path (excluding extension) populated", ->$/;" f +opens an add dialog with no path populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens an add dialog with no path populated", ->$/;" f +opens an add dialog with the directory's path populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens an add dialog with the directory's path populated", ->$/;" f +opens an add dialog with the file's current directory path populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens an add dialog with the file's current directory path populated", ->$/;" f +opens the file associated with that path in the editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "opens the file associated with that path in the editor", ->$/;" f +opens the file in the editor and focuses it src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens the file in the editor and focuses it", ->$/;" f +opens the operation's buffer, selects and scrolls to the search result, and focuses the active editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "opens the operation's buffer, selects and scrolls to the search result, and focuses the active editor", ->$/;" f +opens the operation's buffer, selects the search result, and focuses the active editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "opens the operation's buffer, selects the search result, and focuses the active editor", ->$/;" f +optimize native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int optimize; \/* optimize flag *\/$/;" m struct:re_pattern_buffer +optimize native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int optimize; \/* optimize flag *\/$/;" m struct:re_pattern_buffer +optimize native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int optimize; \/* optimize flag *\/$/;" m struct:re_pattern_buffer +option native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigOptionType option;$/;" m struct:__anon7 +option native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigOptionType option;$/;" m struct:__anon14 +option native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigOptionType option;$/;" m struct:__anon21 +options native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigOptionType options;$/;" m struct:re_pattern_buffer +options native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigOptionType options; \/* default option *\/$/;" m struct:__anon4 +options native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigOptionType options;$/;" m struct:re_pattern_buffer +options native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigOptionType options; \/* default option *\/$/;" m struct:__anon11 +options native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigOptionType options;$/;" m struct:re_pattern_buffer +options native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigOptionType options; \/* default option *\/$/;" m struct:__anon18 +outdentSelectedRows src/app/edit-session.coffee /^ outdentSelectedRows: ->$/;" f +outdentSelectedRows src/app/editor.coffee /^ outdentSelectedRows: -> @activeEditSession.outdentSelectedRows()$/;" f +outdentSelectedRows src/app/selection.coffee /^ outdentSelectedRows: ->$/;" f +p native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char* p; \/* compiled pattern *\/$/;" m struct:re_pattern_buffer +p native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char* p; \/* compiled pattern *\/$/;" m struct:re_pattern_buffer +p native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char* p; \/* compiled pattern *\/$/;" m struct:re_pattern_buffer +pageDown src/app/editor.coffee /^ pageDown: ->$/;" f +pageUp src/app/editor.coffee /^ pageUp: ->$/;" f +pane src/app/editor.coffee /^ pane: ->$/;" f +par native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigUChar* par;$/;" m struct:__anon5 +par native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigUChar* par;$/;" m struct:__anon12 +par native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigUChar* par;$/;" m struct:__anon19 +par_end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigUChar* par_end;$/;" m struct:__anon5 +par_end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigUChar* par_end;$/;" m struct:__anon12 +par_end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigUChar* par_end;$/;" m struct:__anon19 +parseExtensionFields native/v8_extensions/readtags.c /^static void parseExtensionFields (tagFile *const file, tagEntry *const entry,$/;" f file: +parsePrefix src/extensions/outline-view/src/tag-generator.coffee /^ parsePrefix: (section = "") ->$/;" f +parseTagLine native/v8_extensions/readtags.c /^static void parseTagLine (tagFile *file, tagEntry *const entry)$/;" f file: +parseTagLine src/extensions/outline-view/src/tag-generator.coffee /^ parseTagLine: (line) ->$/;" f +partial native/v8_extensions/readtags.c /^ short partial;$/;" m struct:sTagFile::__anon23 file: +paste src/app/editor.coffee /^ paste: -> @activeEditSession.pasteText()$/;" f +pasteText src/app/edit-session.coffee /^ pasteText: ->$/;" f +path native/v8_extensions/native_linux.h /^ std::string path;$/;" m class:v8_extensions::NativeHandler +pathCallbacks native/v8_extensions/native_linux.h /^ std::map > pathCallbacks;$/;" m class:v8_extensions::NativeHandler +pathDescriptors native/v8_extensions/native_linux.h /^ std::map pathDescriptors;$/;" m class:v8_extensions::NativeHandler +pattern native/v8_extensions/readtags.h /^ const char *pattern;$/;" m struct:__anon33::__anon34 +pattern_enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding pattern_enc;$/;" m struct:__anon7 +pattern_enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding pattern_enc;$/;" m struct:__anon14 +pattern_enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding pattern_enc;$/;" m struct:__anon21 +pauseEvents src/app/event-emitter.coffee /^ pauseEvents: ->$/;" f +performs a multiple substitutions within each of the selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a multiple substitutions within each of the selections", ->$/;" f +performs a multiple substitutions within the current selection as a batch that can be undone in a single operation src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a multiple substitutions within the current selection as a batch that can be undone in a single operation", ->$/;" f +performs a single substitution within the current selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a single substitution within the current selection", ->$/;" f +performs a single substitutions within each of the selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a single substitutions within each of the selections", ->$/;" f +pixelOffsetForScreenPosition src/app/editor.coffee /^ pixelOffsetForScreenPosition: (position) ->$/;" f +pixelPositionForBufferPosition src/app/editor.coffee /^ pixelPositionForBufferPosition: (position) ->$/;" f +pixelPositionForScreenPosition src/app/editor.coffee /^ pixelPositionForScreenPosition: (position) ->$/;" f +placeAnchor src/app/selection.coffee /^ placeAnchor: ->$/;" f +placeTabStopAnchorRanges src/extensions/snippets/src/snippet-expansion.coffee /^ placeTabStopAnchorRanges: (startPosition, tabStopRanges) ->$/;" f +places the cursor at the first tab-stop, and moves the cursor in response to 'next-tab-stop' events src/extensions/snippets/spec/snippets-spec.coffee /^ it "places the cursor at the first tab-stop, and moves the cursor in response to 'next-tab-stop' events", ->$/;" f +popScope src/app/editor.coffee /^ popScope = ->$/;" f +populate src/extensions/command-panel/src/preview-list.coffee /^ populate: (operations) ->$/;" f +populate src/extensions/outline-view/src/outline-view.coffee /^ populate: ->$/;" f +populateList src/app/select-list.coffee /^ populateList: ->$/;" f +populateOpenBufferPaths src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ populateOpenBufferPaths: ->$/;" f +populateProjectPaths src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ populateProjectPaths: ->$/;" f +pos native/v8_extensions/readtags.c /^ off_t pos;$/;" m struct:sTagFile::__anon23 file: +pos native/v8_extensions/readtags.c /^ off_t pos;$/;" m struct:sTagFile file: +positionForCharacterIndex src/app/buffer.coffee /^ positionForCharacterIndex: (index) ->$/;" f +positions the guide at the configured column src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "positions the guide at the configured column", ->$/;" f +pre-populates the command panel's editor with / and moves the cursor to the last column src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "pre-populates the command panel's editor with \/ and moves the cursor to the last column", ->$/;" f +pre-populates the command panel's editor with Xx/ and moves the cursor to the last column src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "pre-populates the command panel's editor with Xx\/ and moves the cursor to the last column", ->$/;" f +prefixAndSuffixForRange src/app/buffer.coffee /^ prefixAndSuffixForRange: (range) ->$/;" f +prefixAndSuffixOfSelection src/extensions/autocomplete/src/autocomplete.coffee /^ prefixAndSuffixOfSelection: (selection) ->$/;" f +preserves the command panel's mini-editor text, visibility, focus, and history across reloads src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "preserves the command panel's mini-editor text, visibility, focus, and history across reloads", ->$/;" f +preview src/extensions/command-panel/src/operation.coffee /^ preview: ->$/;" f +previousNonBlankRow src/app/buffer.coffee /^ previousNonBlankRow: (startRow) ->$/;" f +printTag native/v8_extensions/readtags.c /^static void printTag (const tagEntry *entry)$/;" f file: +program native/v8_extensions/readtags.c /^ } program;$/;" m struct:sTagFile typeref:struct:sTagFile::__anon25 file: +program native/v8_extensions/readtags.h /^ } program;$/;" m struct:__anon28 typeref:struct:__anon28::__anon31 +properly handles escaped text in the replacement text src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "properly handles escaped text in the replacement text", ->$/;" f +property_name_to_ctype native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);$/;" m struct:OnigEncodingTypeST +property_name_to_ctype native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);$/;" m struct:OnigEncodingTypeST +property_name_to_ctype native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);$/;" m struct:OnigEncodingTypeST +pushOperation src/app/buffer.coffee /^ pushOperation: (operation, editSession) ->$/;" f +pushOperation src/app/edit-session.coffee /^ pushOperation: (operation) ->$/;" f +pushOperation src/app/undo-manager.coffee /^ pushOperation: (operation, editSession) ->$/;" f +pushScope src/app/editor.coffee /^ pushScope = (scope) ->$/;" f +rangeForAllLines src/app/display-buffer.coffee /^ rangeForAllLines: ->$/;" f +rangeForBufferRow src/app/editor.coffee /^ rangeForBufferRow: (row) -> @getBuffer().rangeForRow(row)$/;" f +rangeForRow src/app/buffer.coffee /^ rangeForRow: (row, { includeNewline } = {}) ->$/;" f +re_pattern_buffer native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct re_pattern_buffer {$/;" s +re_pattern_buffer native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct re_pattern_buffer {$/;" s +re_pattern_buffer native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct re_pattern_buffer {$/;" s +re_registers native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^struct re_registers {$/;" s +re_registers native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^struct re_registers {$/;" s +re_registers native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^struct re_registers {$/;" s +read src/app/file.coffee /^ read: (flushCache)->$/;" f +read src/app/pasteboard.coffee /^ read: ->$/;" f +read src/stdlib/fs.coffee /^ read: (path) ->$/;" f +readFieldValue native/v8_extensions/readtags.c /^static const char *readFieldValue ($/;" f file: +readLine src/app/project.coffee /^ readLine = (line) ->$/;" f +readMatches src/app/project.coffee /^ readMatches = (matchInfo, lineText) ->$/;" f +readNext native/v8_extensions/readtags.c /^static tagResult readNext (tagFile *const file, tagEntry *const entry)$/;" f file: +readPath src/app/project.coffee /^ readPath = (line) ->$/;" f +readPseudoTags native/v8_extensions/readtags.c /^static void readPseudoTags (tagFile *const file, tagFileInfo *const info)$/;" f file: +readTagLine native/v8_extensions/readtags.c /^static int readTagLine (tagFile *const file)$/;" f file: +readTagLineRaw native/v8_extensions/readtags.c /^static int readTagLineRaw (tagFile *const file)$/;" f file: +readTagLineSeek native/v8_extensions/readtags.c /^static int readTagLineSeek (tagFile *const file, const off_t pos)$/;" f file: +recreates the snippet's tab stops src/extensions/snippets/spec/snippets-spec.coffee /^ it "recreates the snippet's tab stops", ->$/;" f +redo src/app/buffer.coffee /^ redo: (editSession) ->$/;" f +redo src/app/edit-session.coffee /^ redo: (editSession) ->$/;" f +redo src/app/edit-session.coffee /^ redo: ->$/;" f +redo src/app/editor.coffee /^ redo: -> @activeEditSession.redo()$/;" f +redo src/app/undo-manager.coffee /^ redo: (editSession) ->$/;" f +redo src/extensions/snippets/src/snippets.coffee /^ redo: (editSession) -> snippetExpansion.restore(editSession)$/;" f +refreshAnchorScreenPositions src/app/edit-session.coffee /^ refreshAnchorScreenPositions: ->$/;" f +refreshScreenPosition src/app/anchor.coffee /^ refreshScreenPosition: (options={}) ->$/;" f +refreshScreenPosition src/app/cursor.coffee /^ refreshScreenPosition: ->$/;" f +regExps native/v8_extensions/onig_scanner.mm /^ std::vector regExps;$/;" m class:v8_extensions::OnigScannerUserData file: +regex native/v8_extensions/onig_reg_exp_linux.cpp /^ regex_t* regex;$/;" m class:v8_extensions::OnigRegexpUserData file: +regex_t native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ typedef OnigRegexType regex_t;$/;" t +regex_t native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ typedef OnigRegexType regex_t;$/;" t +regex_t native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ typedef OnigRegexType regex_t;$/;" t +registerFold src/app/display-buffer.coffee /^ registerFold: (fold) ->$/;" f +relativize src/app/git.coffee /^ relativize: (path) ->$/;" f +relativize src/app/project.coffee /^ relativize: (fullPath) ->$/;" f +release src/app/buffer.coffee /^ release: ->$/;" f +reload src/app/buffer.coffee /^ reload: ->$/;" f +reload src/app/window.coffee /^ reload: ->$/;" f +reloads the match list based on the mini-editor's text src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "reloads the match list based on the mini-editor's text", ->$/;" f +remove src/app/cursor-view.coffee /^ remove: ->$/;" f +remove src/app/editor.coffee /^ remove: (selector, keepData) ->$/;" f +remove src/app/pane.coffee /^ remove: (selector, keepData) ->$/;" f +remove src/app/root-view.coffee /^ remove: ->$/;" f +remove src/app/selection-view.coffee /^ remove: ->$/;" f +remove src/stdlib/fs.coffee /^ remove: (path) ->$/;" f +remove src/stdlib/underscore-extensions.coffee /^ remove: (array, element) ->$/;" f +removeAllCursorAndSelectionViews src/app/editor.coffee /^ removeAllCursorAndSelectionViews: ->$/;" f +removeAnchor src/app/buffer.coffee /^ removeAnchor: (anchor) ->$/;" f +removeAnchor src/app/edit-session.coffee /^ removeAnchor: (anchor) ->$/;" f +removeAnchorRange src/app/buffer.coffee /^ removeAnchorRange: (anchorRange) ->$/;" f +removeAnchorRange src/app/edit-session.coffee /^ removeAnchorRange: (anchorRange) ->$/;" f +removeBuffer src/app/project.coffee /^ removeBuffer: (buffer) ->$/;" f +removeCursor src/app/edit-session.coffee /^ removeCursor: (cursor) ->$/;" f +removeCursorView src/app/editor.coffee /^ removeCursorView: (cursorView) ->$/;" f +removeEditSession src/app/project.coffee /^ removeEditSession: (editSession) ->$/;" f +removeErrorClass src/stdlib/jquery-extensions.coffee /^ removeErrorClass = => @removeClass 'error'$/;" f +removeIdleClassTemporarily src/app/cursor-view.coffee /^ removeIdleClassTemporarily: ->$/;" f +removeSelectedEntry src/extensions/tree-view/src/tree-view.coffee /^ removeSelectedEntry: ->$/;" f +removeSelection src/app/edit-session.coffee /^ removeSelection: (selection) ->$/;" f +removeSelectionView src/app/editor.coffee /^ removeSelectionView: (selectionView) ->$/;" f +removeTabAtIndex src/extensions/tabs/src/tabs.coffee /^ removeTabAtIndex: (index) ->$/;" f +removes folds that contain the selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "removes folds that contain the selections", ->$/;" f +removes markdown preview src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "removes markdown preview", ->$/;" f +removes the dialog and focuses root view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "removes the dialog and focuses root view", ->$/;" f +removes the dialog and focuses the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "removes the dialog and focuses the tree view", ->$/;" f +removes the error message when the command-panel is toggled src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "removes the error message when the command-panel is toggled", ->$/;" f +removes the tab for the removed edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "removes the tab for the removed edit session", ->$/;" f +renderLineNumbers src/app/gutter.coffee /^ renderLineNumbers: (startScreenRow, endScreenRow) ->$/;" f +renderMatchList src/extensions/autocomplete/src/autocomplete.coffee /^ renderMatchList: ->$/;" f +renders the root of the project and its contents alphabetically with subdirectories first in a collapsed state src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "renders the root of the project and its contents alphabetically with subdirectories first in a collapsed state", ->$/;" f +repeatRelativeAddress src/extensions/command-panel/src/command-interpreter.coffee /^ repeatRelativeAddress: (activeEditSession) ->$/;" f +repeatRelativeAddress src/extensions/command-panel/src/command-panel.coffee /^ repeatRelativeAddress: ->$/;" f +repeatRelativeAddressInReverse src/extensions/command-panel/src/command-interpreter.coffee /^ repeatRelativeAddressInReverse: (activeEditSession) ->$/;" f +repeatRelativeAddressInReverse src/extensions/command-panel/src/command-panel.coffee /^ repeatRelativeAddressInReverse: ->$/;" f +repeat_range native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigRepeatRange* repeat_range;$/;" m struct:re_pattern_buffer +repeat_range native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigRepeatRange* repeat_range;$/;" m struct:re_pattern_buffer +repeat_range native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigRepeatRange* repeat_range;$/;" m struct:re_pattern_buffer +repeat_range_alloc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int repeat_range_alloc;$/;" m struct:re_pattern_buffer +repeat_range_alloc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int repeat_range_alloc;$/;" m struct:re_pattern_buffer +repeat_range_alloc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int repeat_range_alloc;$/;" m struct:re_pattern_buffer +repeats the last search command if there is one src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "repeats the last search command if there is one", ->$/;" f +replace src/app/buffer.coffee /^ replace = (text) -> replacementText = text$/;" f +replaceBufferRows src/app/old-line-map.coffee /^ replaceBufferRows: (start, end, lineFragments) ->$/;" f +replaceLines src/app/buffer.coffee /^ replaceLines: (startRow, endRow, newLines) ->$/;" f +replaceScreenRows src/app/line-map.coffee /^ replaceScreenRows: (start, end, screenLines) ->$/;" f +replaceScreenRows src/app/old-line-map.coffee /^ replaceScreenRows: (start, end, lineFragments) ->$/;" f +replaceSelectedTextWithMatch src/extensions/autocomplete/src/autocomplete.coffee /^ replaceSelectedTextWithMatch: (match) ->$/;" f +replaces the prefix with the snippet text and places the cursor at its end src/extensions/snippets/spec/snippets-spec.coffee /^ it "replaces the prefix with the snippet text and places the cursor at its end", ->$/;" f +repo native/v8_extensions/git.mm /^ git_repository *repo;$/;" m class:v8_extensions::GitRepository file: +requestDisplayUpdate src/app/editor.coffee /^ requestDisplayUpdate: ()->$/;" f +require src/stdlib/require.coffee /^require = (path, cb) ->$/;" f +requireExtension src/app/window.coffee /^ requireExtension: (name, config) ->$/;" f +requireStylesheet src/app/window.coffee /^ requireStylesheet: (path) ->$/;" f +resetBlinking src/app/cursor-view.coffee /^ resetBlinking: ->$/;" f +resetCursorAnimation src/app/cursor-view.coffee /^ resetCursorAnimation: ->$/;" f +resetDisplay src/app/editor.coffee /^ resetDisplay: ->$/;" f +resolve src/app/project.coffee /^ resolve: (filePath) ->$/;" f +resolve src/stdlib/require.coffee /^resolve = (name, {verifyExistence}={}) ->$/;" f +resolveBackReferences src/app/text-mate-grammar.coffee /^ resolveBackReferences: (line, beginCaptureIndices) ->$/;" f +restore src/extensions/snippets/src/snippet-expansion.coffee /^ restore: (@editSession) ->$/;" f +restores expanded directories and selected file when deserialized src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores expanded directories and selected file when deserialized", ->$/;" f +restores tabs stops in active edit session even when the initial expansion was in a different edit session src/extensions/snippets/spec/snippets-spec.coffee /^ it "restores tabs stops in active edit session even when the initial expansion was in a different edit session", ->$/;" f +restores the expansion state of descendant directories src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores the expansion state of descendant directories", ->$/;" f +restores the focus state of the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores the focus state of the tree view", ->$/;" f +restores the original selections upon completion if it is the last command src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "restores the original selections upon completion if it is the last command", ->$/;" f +restores the scroll top when toggled src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores the scroll top when toggled", ->$/;" f +resumeEvents src/app/event-emitter.coffee /^ resumeEvents: ->$/;" f +retain src/app/buffer.coffee /^ retain: ->$/;" f +retains focus on the mini editor and does not show the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "retains focus on the mini editor and does not show the preview list", ->$/;" f +returns an error message if the last regex has no matches src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "returns an error message if the last regex has no matches", ->$/;" f +returns focus to the root view but does not hide the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "returns focus to the root view but does not hide the command panel", ->$/;" f +returns selection operations for all regex matches in all the project's files src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "returns selection operations for all regex matches in all the project's files", ->$/;" f +revealActiveFile src/extensions/tree-view/src/tree-view.coffee /^ revealActiveFile: ->$/;" f +reverse src/extensions/command-panel/src/commands/composite-command.coffee /^ reverse: ->$/;" f +reverse src/extensions/command-panel/src/commands/regex-address.coffee /^ reverse: ->$/;" f +rootView src/app/editor.coffee /^ rootView: ->$/;" f +rootView src/app/pane.coffee /^ rootView: ->$/;" f +rowRangeForFoldAtBufferRow src/app/language-mode.coffee /^ rowRangeForFoldAtBufferRow: (bufferRow) ->$/;" f +ruleForInclude src/app/text-mate-grammar.coffee /^ ruleForInclude: (name) ->$/;" f +sTagFile native/v8_extensions/readtags.c /^struct sTagFile {$/;" s file: +safeFn src/app/undo-manager.coffee /^ safeFn = ->$/;" f +save src/app/buffer.coffee /^ save: ->$/;" f +save src/app/edit-session.coffee /^ save: -> @buffer.save()$/;" f +save src/app/editor.coffee /^ save: (onSuccess) ->$/;" f +saveAll src/app/root-view.coffee /^ saveAll: ->$/;" f +saveAs src/app/buffer.coffee /^ saveAs: (path) ->$/;" f +saveAs src/app/edit-session.coffee /^ saveAs: (path) -> @buffer.saveAs(path)$/;" f +saveScrollPositionForActiveEditSession src/app/editor.coffee /^ saveScrollPositionForActiveEditSession: ->$/;" f +scan src/app/buffer.coffee /^ scan: (regex, iterator) ->$/;" f +scan src/app/project.coffee /^ scan: (regex, iterator) ->$/;" f +scanInRange src/app/buffer.coffee /^ scanInRange: (regex, range, iterator, reverse=false) ->$/;" f +scanInRange src/app/edit-session.coffee /^ scanInRange: (args...) -> @buffer.scanInRange(args...)$/;" f +scanInRange src/app/editor.coffee /^ scanInRange: (args...) -> @getBuffer().scanInRange(args...)$/;" f +schedulePopulateList src/app/select-list.coffee /^ schedulePopulateList: ->$/;" f +scheduleStoppedChangingEvent src/app/buffer.coffee /^ scheduleStoppedChangingEvent: ->$/;" f +scopesForBufferPosition src/app/display-buffer.coffee /^ scopesForBufferPosition: (bufferPosition) ->$/;" f +scopesForBufferPosition src/app/edit-session.coffee /^ scopesForBufferPosition: (bufferPosition) -> @displayBuffer.scopesForBufferPosition(bufferPosition)$/;" f +scopesForPosition src/app/tokenized-buffer.coffee /^ scopesForPosition: (position) ->$/;" f +scopesFromStack src/app/text-mate-grammar.coffee /^scopesFromStack = (stack) ->$/;" f +screenColumnForBufferColumn src/app/screen-line.coffee /^ screenColumnForBufferColumn: (bufferColumn, options) ->$/;" f +screenLineCount src/app/edit-session.coffee /^ screenLineCount: -> @displayBuffer.lineCount()$/;" f +screenLineCount src/app/editor.coffee /^ screenLineCount: -> @activeEditSession.screenLineCount()$/;" f +screenLineCount src/app/line-map.coffee /^ screenLineCount: ->$/;" f +screenLineCount src/app/old-line-map.coffee /^ screenLineCount: ->$/;" f +screenLineRangeForBufferRange src/app/display-buffer.coffee /^ screenLineRangeForBufferRange: (bufferRange) ->$/;" f +screenPositionForBufferPosition src/app/display-buffer.coffee /^ screenPositionForBufferPosition: (position, options) ->$/;" f +screenPositionForBufferPosition src/app/edit-session.coffee /^ screenPositionForBufferPosition: (bufferPosition, options) -> @displayBuffer.screenPositionForBufferPosition(bufferPosition, options)$/;" f +screenPositionForBufferPosition src/app/editor.coffee /^ screenPositionForBufferPosition: (position, options) -> @activeEditSession.screenPositionForBufferPosition(position, options)$/;" f +screenPositionForBufferPosition src/app/line-map.coffee /^ screenPositionForBufferPosition: (bufferPosition, options={}) ->$/;" f +screenPositionForBufferPosition src/app/old-line-map.coffee /^ screenPositionForBufferPosition: (bufferPosition, options) ->$/;" f +screenPositionFromMouseEvent src/app/editor.coffee /^ screenPositionFromMouseEvent: (e) ->$/;" f +screenPositionFromPixelPosition src/app/editor.coffee /^ screenPositionFromPixelPosition: ({top, left}) ->$/;" f +screenRangeChanged src/app/selection.coffee /^ screenRangeChanged: ->$/;" f +screenRangeForBufferRange src/app/display-buffer.coffee /^ screenRangeForBufferRange: (bufferRange) ->$/;" f +screenRangeForBufferRange src/app/edit-session.coffee /^ screenRangeForBufferRange: (range) -> @displayBuffer.screenRangeForBufferRange(range)$/;" f +screenRangeForBufferRange src/app/editor.coffee /^ screenRangeForBufferRange: (range) -> @activeEditSession.screenRangeForBufferRange(range)$/;" f +screenRangeForBufferRange src/app/line-map.coffee /^ screenRangeForBufferRange: (bufferRange) ->$/;" f +screenRangeForBufferRange src/app/old-line-map.coffee /^ screenRangeForBufferRange: (bufferRange) ->$/;" f +screenRowAndScreenLinesForBufferRow src/app/line-map.coffee /^ screenRowAndScreenLinesForBufferRow: (bufferRow) ->$/;" f +screenRowForBufferRow src/app/display-buffer.coffee /^ screenRowForBufferRow: (bufferRow) ->$/;" f +scrollBottom src/app/editor.coffee /^ scrollBottom: (scrollBottom) ->$/;" f +scrollHorizontally src/app/editor.coffee /^ scrollHorizontally: (pixelPosition) ->$/;" f +scrollToBottom src/app/editor.coffee /^ scrollToBottom: ->$/;" f +scrollToBufferPosition src/app/editor.coffee /^ scrollToBufferPosition: (bufferPosition, options) ->$/;" f +scrollToElement src/extensions/command-panel/src/preview-list.coffee /^ scrollToElement: (element) ->$/;" f +scrollToEntry src/extensions/tree-view/src/tree-view.coffee /^ scrollToEntry: (entry) ->$/;" f +scrollToItem src/app/select-list.coffee /^ scrollToItem: (item) ->$/;" f +scrollToPixelPosition src/app/editor.coffee /^ scrollToPixelPosition: (pixelPosition, options) ->$/;" f +scrollToScreenPosition src/app/editor.coffee /^ scrollToScreenPosition: (screenPosition, options) ->$/;" f +scrollTop src/app/editor.coffee /^ scrollTop: (scrollTop, options={}) ->$/;" f +scrollVertically src/app/editor.coffee /^ scrollVertically: (pixelPosition, {center}={}) ->$/;" f +scrolls down a page src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls down a page", ->$/;" f +scrolls the tree view to the selected item src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls the tree view to the selected item", ->$/;" f +scrolls to the bottom src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls to the bottom", ->$/;" f +scrolls to the selected match if it is out of view src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "scrolls to the selected match if it is out of view", ->$/;" f +scrolls to the top src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls to the top", ->$/;" f +scrolls up a page src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls up a page", ->$/;" f +search native/v8_extensions/readtags.c /^ } search;$/;" m struct:sTagFile typeref:struct:sTagFile::__anon23 file: +searches from the end of each selection in the buffer src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "searches from the end of each selection in the buffer", ->$/;" f +searches in reverse when prefixed with a - src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "searches in reverse when prefixed with a -", ->$/;" f +selectActiveFile src/extensions/tree-view/src/tree-view.coffee /^ selectActiveFile: ->$/;" f +selectAll src/app/edit-session.coffee /^ selectAll: ->$/;" f +selectAll src/app/editor.coffee /^ selectAll: -> @activeEditSession.selectAll()$/;" f +selectAll src/app/selection.coffee /^ selectAll: ->$/;" f +selectDown src/app/edit-session.coffee /^ selectDown: ->$/;" f +selectDown src/app/editor.coffee /^ selectDown: -> @activeEditSession.selectDown()$/;" f +selectDown src/app/selection.coffee /^ selectDown: ->$/;" f +selectEntry src/extensions/tree-view/src/tree-view.coffee /^ selectEntry: (entry) ->$/;" f +selectEntryForPath src/extensions/tree-view/src/tree-view.coffee /^ selectEntryForPath: (path) ->$/;" f +selectItem src/app/select-list.coffee /^ selectItem: (item) ->$/;" f +selectLeft src/app/edit-session.coffee /^ selectLeft: ->$/;" f +selectLeft src/app/editor.coffee /^ selectLeft: -> @activeEditSession.selectLeft()$/;" f +selectLeft src/app/selection.coffee /^ selectLeft: ->$/;" f +selectLine src/app/edit-session.coffee /^ selectLine: ->$/;" f +selectMatchAtIndex src/extensions/autocomplete/src/autocomplete.coffee /^ selectMatchAtIndex: (index) ->$/;" f +selectNextItem src/app/select-list.coffee /^ selectNextItem: ->$/;" f +selectNextMatch src/extensions/autocomplete/src/autocomplete.coffee /^ selectNextMatch: ->$/;" f +selectNextOperation src/extensions/command-panel/src/preview-list.coffee /^ selectNextOperation: ->$/;" f +selectOnMousemoveUntilMouseup src/app/editor.coffee /^ selectOnMousemoveUntilMouseup: ->$/;" f +selectPreviousItem src/app/select-list.coffee /^ selectPreviousItem: ->$/;" f +selectPreviousMatch src/extensions/autocomplete/src/autocomplete.coffee /^ selectPreviousMatch: ->$/;" f +selectPreviousOperation src/extensions/command-panel/src/preview-list.coffee /^ selectPreviousOperation: ->$/;" f +selectRight src/app/edit-session.coffee /^ selectRight: ->$/;" f +selectRight src/app/editor.coffee /^ selectRight: -> @activeEditSession.selectRight()$/;" f +selectRight src/app/selection.coffee /^ selectRight: ->$/;" f +selectToBeginningOfLine src/app/edit-session.coffee /^ selectToBeginningOfLine: ->$/;" f +selectToBeginningOfLine src/app/editor.coffee /^ selectToBeginningOfLine: -> @activeEditSession.selectToBeginningOfLine()$/;" f +selectToBeginningOfLine src/app/selection.coffee /^ selectToBeginningOfLine: ->$/;" f +selectToBeginningOfWord src/app/edit-session.coffee /^ selectToBeginningOfWord: ->$/;" f +selectToBeginningOfWord src/app/editor.coffee /^ selectToBeginningOfWord: -> @activeEditSession.selectToBeginningOfWord()$/;" f +selectToBeginningOfWord src/app/selection.coffee /^ selectToBeginningOfWord: ->$/;" f +selectToBottom src/app/edit-session.coffee /^ selectToBottom: ->$/;" f +selectToBottom src/app/editor.coffee /^ selectToBottom: -> @activeEditSession.selectToBottom()$/;" f +selectToBottom src/app/selection.coffee /^ selectToBottom: ->$/;" f +selectToBufferPosition src/app/selection.coffee /^ selectToBufferPosition: (position) ->$/;" f +selectToEndOfLine src/app/edit-session.coffee /^ selectToEndOfLine: ->$/;" f +selectToEndOfLine src/app/editor.coffee /^ selectToEndOfLine: -> @activeEditSession.selectToEndOfLine()$/;" f +selectToEndOfLine src/app/selection.coffee /^ selectToEndOfLine: ->$/;" f +selectToEndOfWord src/app/edit-session.coffee /^ selectToEndOfWord: ->$/;" f +selectToEndOfWord src/app/editor.coffee /^ selectToEndOfWord: -> @activeEditSession.selectToEndOfWord()$/;" f +selectToEndOfWord src/app/selection.coffee /^ selectToEndOfWord: ->$/;" f +selectToScreenPosition src/app/edit-session.coffee /^ selectToScreenPosition: (position) ->$/;" f +selectToScreenPosition src/app/editor.coffee /^ selectToScreenPosition: (position) -> @activeEditSession.selectToScreenPosition(position)$/;" f +selectToScreenPosition src/app/selection.coffee /^ selectToScreenPosition: (position) ->$/;" f +selectToTop src/app/edit-session.coffee /^ selectToTop: ->$/;" f +selectToTop src/app/editor.coffee /^ selectToTop: -> @activeEditSession.selectToTop()$/;" f +selectToTop src/app/selection.coffee /^ selectToTop: ->$/;" f +selectUp src/app/edit-session.coffee /^ selectUp: ->$/;" f +selectUp src/app/editor.coffee /^ selectUp: -> @activeEditSession.selectUp()$/;" f +selectUp src/app/selection.coffee /^ selectUp: ->$/;" f +selectWord src/app/edit-session.coffee /^ selectWord: ->$/;" f +selectWord src/app/editor.coffee /^ selectWord: -> @activeEditSession.selectWord()$/;" f +selectWord src/app/selection.coffee /^ selectWord: ->$/;" f +selected a file's parent dir if the file's entry is not visible src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selected a file's parent dir if the file's entry is not visible", ->$/;" f +selectedEntry src/extensions/tree-view/src/tree-view.coffee /^ selectedEntry: ->$/;" f +selectedMatch src/extensions/autocomplete/src/autocomplete.coffee /^ selectedMatch: ->$/;" f +selectionIntersectsBufferRange src/app/edit-session.coffee /^ selectionIntersectsBufferRange: (bufferRange) ->$/;" f +selects EOF src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects EOF", ->$/;" f +selects and confirms the match src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "selects and confirms the match", ->$/;" f +selects from the begining of buffer to the end of the right address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects from the begining of buffer to the end of the right address", ->$/;" f +selects from the begining of left address to the end file src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects from the begining of left address to the end file", ->$/;" f +selects from the begining of the left address to the end of the right address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects from the begining of the left address to the end of the right address", ->$/;" f +selects the created directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the created directory", ->$/;" f +selects the entire file src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects the entire file", ->$/;" f +selects the entry after its grandparent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the entry after its grandparent directory", ->$/;" f +selects the entry after its parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the entry after its parent directory", ->$/;" f +selects the file and opens it in the active editor on the first click, then changes focus to the active editor on the second src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the file and opens it in the active editor on the first click, then changes focus to the active editor on the second", ->$/;" f +selects the file in that is open in that editor src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the file in that is open in that editor", ->$/;" f +selects the files and opens it in the active editor, without changing focus src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the files and opens it in the active editor, without changing focus", ->$/;" f +selects the first entry of the directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the first entry of the directory", ->$/;" f +selects the last entry in the expanded directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the last entry in the expanded directory", ->$/;" f +selects the next/previous operation (if there is one), and scrolls the list if needed src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "selects the next\/previous operation (if there is one), and scrolls the list if needed", ->$/;" f +selects the parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the parent directory", ->$/;" f +selects the previous entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the previous entry", ->$/;" f +selects the rootview src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the rootview", ->$/;" f +selects the specified line src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects the specified line", ->$/;" f +selects the zero-length string at the start of the file src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects the zero-length string at the start of the file", ->$/;" f +sendPathToMainProcessAndExit native/main_mac.mm /^void sendPathToMainProcessAndExit(int fd, NSString *socketPath, NSString *path) {$/;" f +sep native/v8_extensions/readtags.c /^#define sep /;" d file: +sep native/v8_extensions/readtags.c /^#undef sep$/;" d file: +serialize src/app/edit-session.coffee /^ serialize: ->$/;" f +serialize src/app/editor.coffee /^ serialize: ->$/;" f +serialize src/app/pane-grid.coffee /^ serialize: ->$/;" f +serialize src/app/pane.coffee /^ serialize: ->$/;" f +serialize src/app/point.coffee /^ serialize: ->$/;" f +serialize src/app/root-view.coffee /^ serialize: ->$/;" f +serialize src/extensions/tree-view/src/tree-view.coffee /^ serialize: ->$/;" f +serializeEntryExpansionStates src/extensions/tree-view/src/directory-view.coffee /^ serializeEntryExpansionStates: ->$/;" f +serializeExtensions src/app/root-view.coffee /^ serializeExtensions: ->$/;" f +serializes without throwing an exception src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "serializes without throwing an exception", ->$/;" f +set src/stdlib/storage.coffee /^ set: (key, value) ->$/;" f +setActiveEditSessionIndex src/app/editor.coffee /^ setActiveEditSessionIndex: (index) ->$/;" f +setActiveTab src/extensions/tabs/src/tabs.coffee /^ setActiveTab: (index) ->$/;" f +setArray src/app/select-list.coffee /^ setArray: (@array) ->$/;" f +setAutoIndent src/app/edit-session.coffee /^ setAutoIndent: (@autoIndent) ->$/;" f +setAutoIndent src/app/project.coffee /^ setAutoIndent: (@autoIndent) ->$/;" f +setBufferPosition src/app/anchor.coffee /^ setBufferPosition: (position, options={}) ->$/;" f +setBufferPosition src/app/cursor.coffee /^ setBufferPosition: (bufferPosition, options) ->$/;" f +setBufferRange src/app/selection.coffee /^ setBufferRange: (bufferRange, options={}) ->$/;" f +setCurrentBuffer src/extensions/autocomplete/src/autocomplete.coffee /^ setCurrentBuffer: (@currentBuffer) ->$/;" f +setCursorBufferPosition src/app/edit-session.coffee /^ setCursorBufferPosition: (position, options) ->$/;" f +setCursorBufferPosition src/app/editor.coffee /^ setCursorBufferPosition: (position, options) -> @activeEditSession.setCursorBufferPosition(position, options)$/;" f +setCursorScreenPosition src/app/edit-session.coffee /^ setCursorScreenPosition: (position) ->$/;" f +setCursorScreenPosition src/app/editor.coffee /^ setCursorScreenPosition: (position) -> @activeEditSession.setCursorScreenPosition(position)$/;" f +setError src/app/select-list.coffee /^ setError: (message) ->$/;" f +setFontSize src/app/editor.coffee /^ setFontSize: (fontSize) ->$/;" f +setFontSize src/app/root-view.coffee /^ setFontSize: (newFontSize) ->$/;" f +setHideIgnoredFiles src/app/project.coffee /^ setHideIgnoredFiles: (@hideIgnoredFiles) ->$/;" f +setHtml src/extensions/markdown-preview/src/markdown-preview.coffee /^ setHtml: (html) ->$/;" f +setIndentationForBufferRow src/app/edit-session.coffee /^ setIndentationForBufferRow: (bufferRow, newLevel) ->$/;" f +setInvisibles src/app/editor.coffee /^ setInvisibles: (@invisibles={}) ->$/;" f +setInvisibles src/app/root-view.coffee /^ setInvisibles: (invisibles={}) ->$/;" f +setLoading src/app/select-list.coffee /^ setLoading: (message) ->$/;" f +setPath src/app/buffer.coffee /^ setPath: (path) ->$/;" f +setPath src/app/file.coffee /^ setPath: (@path) ->$/;" f +setPath src/app/project.coffee /^ setPath: (path) ->$/;" f +setPosition src/extensions/autocomplete/src/autocomplete.coffee /^ setPosition: (originalCursorPosition) ->$/;" f +setRootPane src/app/root-view.coffee /^ setRootPane: (pane) ->$/;" f +setScreenPosition src/app/anchor.coffee /^ setScreenPosition: (position, options={}) ->$/;" f +setScreenPosition src/app/cursor.coffee /^ setScreenPosition: (screenPosition, options) ->$/;" f +setScreenRange src/app/selection.coffee /^ setScreenRange: (screenRange, options) ->$/;" f +setScrollLeft src/app/edit-session.coffee /^ setScrollLeft: (@scrollLeft) ->$/;" f +setScrollPositionFromActiveEditSession src/app/editor.coffee /^ setScrollPositionFromActiveEditSession: ->$/;" f +setScrollTop src/app/edit-session.coffee /^ setScrollTop: (@scrollTop) ->$/;" f +setSelectedBufferRange src/app/edit-session.coffee /^ setSelectedBufferRange: (bufferRange, options) ->$/;" f +setSelectedBufferRange src/app/editor.coffee /^ setSelectedBufferRange: (bufferRange, options) -> @activeEditSession.setSelectedBufferRange(bufferRange, options)$/;" f +setSelectedBufferRanges src/app/edit-session.coffee /^ setSelectedBufferRanges: (bufferRanges, options={}) ->$/;" f +setSelectedBufferRanges src/app/editor.coffee /^ setSelectedBufferRanges: (bufferRanges, options) -> @activeEditSession.setSelectedBufferRanges(bufferRanges, options)$/;" f +setSelectedOperationIndex src/extensions/command-panel/src/preview-list.coffee /^ setSelectedOperationIndex: (index) ->$/;" f +setSelectionAsLastRelativeAddress src/extensions/command-panel/src/command-panel.coffee /^ setSelectionAsLastRelativeAddress: ->$/;" f +setShowInvisibles src/app/editor.coffee /^ setShowInvisibles: (showInvisibles) ->$/;" f +setShowInvisibles src/app/root-view.coffee /^ setShowInvisibles: (showInvisibles) ->$/;" f +setSoftTabs src/app/edit-session.coffee /^ setSoftTabs: (@softTabs) ->$/;" f +setSoftTabs src/app/project.coffee /^ setSoftTabs: (@softTabs) ->$/;" f +setSoftWrap src/app/edit-session.coffee /^ setSoftWrap: (@softWrap) ->$/;" f +setSoftWrap src/app/editor.coffee /^ setSoftWrap: (softWrap, softWrapColumn=undefined) ->$/;" f +setSoftWrap src/app/project.coffee /^ setSoftWrap: (@softWrap) ->$/;" f +setSoftWrapColumn src/app/display-buffer.coffee /^ setSoftWrapColumn: (@softWrapColumn) ->$/;" f +setSoftWrapColumn src/app/edit-session.coffee /^ setSoftWrapColumn: (@softWrapColumn) -> @displayBuffer.setSoftWrapColumn(@softWrapColumn)$/;" f +setSoftWrapColumn src/app/editor.coffee /^ setSoftWrapColumn: (softWrapColumn) ->$/;" f +setTabLength src/app/display-buffer.coffee /^ setTabLength: (tabLength) ->$/;" f +setTabLength src/app/edit-session.coffee /^ setTabLength: (tabLength) -> @displayBuffer.setTabLength(tabLength)$/;" f +setTabLength src/app/tokenized-buffer.coffee /^ setTabLength: (@tabLength) ->$/;" f +setTabStopIndex src/extensions/snippets/src/snippet-expansion.coffee /^ setTabStopIndex: (@tabStopIndex) ->$/;" f +setText src/app/buffer.coffee /^ setText: (text) ->$/;" f +setText src/app/editor.coffee /^ setText: (text) -> @getBuffer().setText(text)$/;" f +setTitle src/app/root-view.coffee /^ setTitle: (title) ->$/;" f +setUpKeymap src/app/window.coffee /^ setUpKeymap: ->$/;" f +setVisible src/app/cursor-view.coffee /^ setVisible: (visible) ->$/;" f +setVisible src/app/cursor.coffee /^ setVisible: (visible) ->$/;" f +setVisible src/app/display-buffer.coffee /^ setVisible: (visible) -> @tokenizedBuffer.setVisible(visible)$/;" f +setVisible src/app/edit-session.coffee /^ setVisible: (visible) -> @displayBuffer.setVisible(visible)$/;" f +setVisible src/app/tokenized-buffer.coffee /^ setVisible: (@visible) ->$/;" f +sets the @lastRelativeAddress to a RegexAddress of the current selection src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "sets the @lastRelativeAddress to a RegexAddress of the current selection", ->$/;" f +sets the current selection to every match of the regex in the current selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "sets the current selection to every match of the regex in the current selection", ->$/;" f +sharedApplication native/atom_application.h /^+ (AtomApplication *)sharedApplication;$/;" v +shiftCapture src/app/text-mate-grammar.coffee /^shiftCapture = (captureIndices) ->$/;" f +shifts focus to the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shifts focus to the tree view", ->$/;" f +show's that there are no matches found when there is no prefix or suffix src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "show's that there are no matches found when there is no prefix or suffix", ->$/;" f +showBufferConflictAlert src/app/editor.coffee /^ showBufferConflictAlert: (editSession) ->$/;" f +showError src/extensions/tree-view/src/dialog.coffee /^ showError: (message) ->$/;" f +shows a list of all valid event descriptions, names, and keybindings for the previously focused element src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "shows a list of all valid event descriptions, names, and keybindings for the previously focused element", ->$/;" f +shows all relative file paths for the current project and selects the first src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "shows all relative file paths for the current project and selects the first", ->$/;" f +shows an error message and does not close the dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows an error message and does not close the dialog", ->$/;" f +shows an error message when no matching tags are found src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "shows an error message when no matching tags are found", ->$/;" f +shows and focuses the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows and focuses the command panel", ->$/;" f +shows and focuses the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows and focuses the preview list", ->$/;" f +shows and focuses the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows and focuses the tree view", ->$/;" f +shows and focuses the tree view and selects the file src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows and focuses the tree view and selects the file", ->$/;" f +shows and focuses the tree view, but does not attempt to select a specific file src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows and focuses the tree view, but does not attempt to select a specific file", ->$/;" f +shows autocomplete view and focuses its mini-editor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "shows autocomplete view and focuses its mini-editor", ->$/;" f +shows the FuzzyFinder or hides it nad returns focus to the active editor if it already showing src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "shows the FuzzyFinder or hides it nad returns focus to the active editor if it already showing", ->$/;" f +shows the FuzzyFinder or hides it, returning focus to the active editor if src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "shows the FuzzyFinder or hides it, returning focus to the active editor if", ->$/;" f +shows the command panel and focuses the mini editor, but does not show the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows the command panel and focuses the mini editor, but does not show the preview list", ->$/;" f +shows the command panel and the preview list, and focuses the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows the command panel and the preview list, and focuses the preview list", ->$/;" f +shows the native alert dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows the native alert dialog", ->$/;" f +shutdown src/app/window.coffee /^ shutdown: ->$/;" f +simplifyClassName src/stdlib/settings.coffee /^ simplifyClassName: (className) ->$/;" f +size native/v8_extensions/readtags.c /^ off_t size;$/;" m struct:sTagFile file: +size native/v8_extensions/readtags.c /^ size_t size;$/;" m struct:__anon22 file: +skipLeadingWhitespace src/app/cursor.coffee /^ skipLeadingWhitespace: ->$/;" f +skips to the next directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "skips to the next directory", ->$/;" f +softWrapAt src/app/screen-line.coffee /^ softWrapAt: (column) ->$/;" f +sort native/v8_extensions/readtags.h /^ sortType sort;$/;" m struct:__anon28::__anon30 +sortMethod native/v8_extensions/readtags.c /^ sortType sortMethod;$/;" m struct:sTagFile file: +sortType native/v8_extensions/readtags.h /^} sortType ;$/;" t typeref:enum:__anon26 +spliceAtBufferRow src/app/old-line-map.coffee /^ spliceAtBufferRow: (startRow, rowCount, lineFragments) ->$/;" f +spliceAtScreenRow src/app/line-map.coffee /^ spliceAtScreenRow: (startRow, rowCount, screenLines) ->$/;" f +spliceAtScreenRow src/app/old-line-map.coffee /^ spliceAtScreenRow: (startRow, rowCount, lineFragments) ->$/;" f +spliceByDelta src/app/old-line-map.coffee /^ spliceByDelta: (deltaType, startRow, rowCount, lineFragments) ->$/;" f +split src/app/pane.coffee /^ split: (view, axis, side) ->$/;" f +split src/stdlib/fs.coffee /^ split: (path) ->$/;" f +splitAt src/app/old-screen-line.coffee /^ splitAt: (column) ->$/;" f +splitAt src/app/point.coffee /^ splitAt: (column) ->$/;" f +splitAt src/app/token.coffee /^ splitAt: (splitIndex) ->$/;" f +splitDown src/app/editor.coffee /^ splitDown: ->$/;" f +splitDown src/app/pane.coffee /^ splitDown: (view) ->$/;" f +splitLeft src/app/editor.coffee /^ splitLeft: ->$/;" f +splitLeft src/app/pane.coffee /^ splitLeft: (view) ->$/;" f +splitRight src/app/editor.coffee /^ splitRight: ->$/;" f +splitRight src/app/pane.coffee /^ splitRight: (view) ->$/;" f +splitUp src/app/editor.coffee /^ splitUp: ->$/;" f +splitUp src/app/pane.coffee /^ splitUp: (view) ->$/;" f +splitView native/atom_window_controller.h /^@property (nonatomic, retain) IBOutlet NSSplitView *splitView;$/;" v +splitView native/atom_window_controller.mm /^@synthesize splitView=_splitView;$/;" v +stackForRow src/app/tokenized-buffer.coffee /^ stackForRow: (row) ->$/;" f +stack_pop_level native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int stack_pop_level;$/;" m struct:re_pattern_buffer +stack_pop_level native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int stack_pop_level;$/;" m struct:re_pattern_buffer +stack_pop_level native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int stack_pop_level;$/;" m struct:re_pattern_buffer +startBlinking src/app/cursor-view.coffee /^ startBlinking: ->$/;" f +startup src/app/window.coffee /^ startup: ->$/;" f +state native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int state; \/* normal, searching, compiling *\/$/;" m struct:re_pattern_buffer +state native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int state; \/* normal, searching, compiling *\/$/;" m struct:re_pattern_buffer +state native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int state; \/* normal, searching, compiling *\/$/;" m struct:re_pattern_buffer +status native/v8_extensions/readtags.h /^ } status;$/;" m struct:__anon28 typeref:struct:__anon28::__anon29 +stdout src/extensions/outline-view/src/tag-generator.coffee /^ stdout: (data) =>$/;" f +stop src/app/buffer.coffee /^ stop = -> keepLooping = false$/;" f +stop src/app/tokenized-buffer.coffee /^ stop = -> keepLooping = false$/;" f +stopBlinking src/app/cursor-view.coffee /^ stopBlinking: ->$/;" f +stoppedChangingCallback src/app/buffer.coffee /^ stoppedChangingCallback = =>$/;" f +storage src/stdlib/storage.coffee /^ storage: ->$/;" f +stringFromCefV8Value native/v8_extensions/native.mm /^NSString *stringFromCefV8Value(const CefRefPtr& value) {$/;" f namespace:v8_extensions +stripTrailingWhitespaceBeforeSave src/extensions/strip-trailing-whitespace/src/strip-trailing-whitespace.coffee /^ stripTrailingWhitespaceBeforeSave: (buffer) ->$/;" f +strips trailing whitespace before an editor saves a buffer src/extensions/strip-trailing-whitespace/spec/strip-trailing-whitespace-spec.coffee /^ it "strips trailing whitespace before an editor saves a buffer", ->$/;" f +strnuppercmp native/v8_extensions/readtags.c /^static int strnuppercmp (const char *s1, const char *s2, size_t n)$/;" f file: +struppercmp native/v8_extensions/readtags.c /^static int struppercmp (const char *s1, const char *s2)$/;" f file: +sub_anchor native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int sub_anchor; \/* start-anchor for exact or map *\/$/;" m struct:re_pattern_buffer +sub_anchor native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int sub_anchor; \/* start-anchor for exact or map *\/$/;" m struct:re_pattern_buffer +sub_anchor native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int sub_anchor; \/* start-anchor for exact or map *\/$/;" m struct:re_pattern_buffer +subscribeToBuffer src/app/status-bar.coffee /^ subscribeToBuffer: ->$/;" f +subscribeToFile src/app/buffer.coffee /^ subscribeToFile: ->$/;" f +subscribeToFontSize src/app/editor.coffee /^ subscribeToFontSize: ->$/;" f +subscribeToNativeChangeEvents src/app/directory.coffee /^ subscribeToNativeChangeEvents: ->$/;" f +subscribeToNativeChangeEvents src/app/file.coffee /^ subscribeToNativeChangeEvents: ->$/;" f +subscriptionCount src/app/event-emitter.coffee /^ subscriptionCount: ->$/;" f +success src/extensions/markdown-preview/src/markdown-preview.coffee /^ success: (html) => @setHtml(html)$/;" f +suggestedIndentForBufferRow src/app/edit-session.coffee /^ suggestedIndentForBufferRow: (bufferRow) ->$/;" f +suggestedIndentForBufferRow src/app/language-mode.coffee /^ suggestedIndentForBufferRow: (bufferRow) ->$/;" f +sum src/stdlib/underscore-extensions.coffee /^ sum: (array) ->$/;" f +surrenders focus to the root view but remains open src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "surrenders focus to the root view but remains open", ->$/;" f +switches the active editor to the edit session for the selected path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "switches the active editor to the edit session for the selected path", ->$/;" f +syncCursorAnimations src/app/editor.coffee /^ syncCursorAnimations: ->$/;" f +syntax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:re_pattern_buffer +syntax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:__anon7 +syntax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:re_pattern_buffer +syntax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:__anon14 +syntax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:re_pattern_buffer +syntax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:__anon21 +szPath native/linux/atom_app.cpp /^const char* szPath; \/\/ The folder the application is in$/;" v +szPathToOpen native/linux/atom_app.cpp /^const char* szPathToOpen; \/\/ The file to open$/;" v +szTitle native/atom_win.cpp /^TCHAR szTitle[MAX_LOADSTRING]; \/\/ The title bar text$/;" v +szWindowClass native/atom_win.cpp /^TCHAR szWindowClass[MAX_LOADSTRING]; \/\/ the main window class name$/;" v +szWorkingDir native/atom_gtk.cpp /^char szWorkingDir[512]; \/\/ The current working directory$/;" v +szWorkingDir native/atom_win.cpp /^char szWorkingDir[MAX_PATH]; \/\/ The current working directory$/;" v +szWorkingDir native/linux/atom_app.cpp /^char* szWorkingDir; \/\/ The current working directory$/;" v +tabStopsForBufferPosition src/extensions/snippets/src/snippet-expansion.coffee /^ tabStopsForBufferPosition: (bufferPosition) ->$/;" f +tagEntry native/v8_extensions/readtags.h /^} tagEntry;$/;" t typeref:struct:__anon33 +tagExtensionField native/v8_extensions/readtags.h /^} tagExtensionField;$/;" t typeref:struct:__anon32 +tagFile native/v8_extensions/readtags.h /^typedef struct sTagFile tagFile;$/;" t typeref:struct:sTagFile +tagFileInfo native/v8_extensions/readtags.h /^} tagFileInfo;$/;" t typeref:struct:__anon28 +tagResult native/v8_extensions/readtags.h /^typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult;$/;" t typeref:enum:__anon27 +tagsClose native/v8_extensions/readtags.c /^extern tagResult tagsClose (tagFile *const file)$/;" f +tagsField native/v8_extensions/readtags.c /^extern const char *tagsField (const tagEntry *const entry, const char *const key)$/;" f +tagsFind native/v8_extensions/readtags.c /^extern tagResult tagsFind (tagFile *const file, tagEntry *const entry,$/;" f +tagsFindNext native/v8_extensions/readtags.c /^extern tagResult tagsFindNext (tagFile *const file, tagEntry *const entry)$/;" f +tagsFirst native/v8_extensions/readtags.c /^extern tagResult tagsFirst (tagFile *const file, tagEntry *const entry)$/;" f +tagsNext native/v8_extensions/readtags.c /^extern tagResult tagsNext (tagFile *const file, tagEntry *const entry)$/;" f +tagsOpen native/v8_extensions/readtags.c /^extern tagFile *tagsOpen (const char *const filePath, tagFileInfo *const info)$/;" f +tagsSetSortType native/v8_extensions/readtags.c /^extern tagResult tagsSetSortType (tagFile *const file, const sortType type)$/;" f +target_enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding target_enc;$/;" m struct:__anon7 +target_enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding target_enc;$/;" m struct:__anon14 +target_enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding target_enc;$/;" m struct:__anon21 +terminate native/v8_extensions/readtags.c /^static void terminate (tagFile *const file)$/;" f file: +terminates the snippet src/extensions/snippets/spec/snippets-spec.coffee /^ it "terminates the snippet", ->$/;" f +textLength src/app/old-screen-line.coffee /^ textLength: ->$/;" f +threshold_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int threshold_len; \/* search str-length for apply optimize *\/$/;" m struct:re_pattern_buffer +threshold_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int threshold_len; \/* search str-length for apply optimize *\/$/;" m struct:re_pattern_buffer +threshold_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int threshold_len; \/* search str-length for apply optimize *\/$/;" m struct:re_pattern_buffer +throwException native/v8_extensions/native.mm /^void throwException(const CefRefPtr& global, CefRefPtr exception, NSString *message) {$/;" f namespace:v8_extensions +toArray src/app/point.coffee /^ toArray: ->$/;" f +toDelta src/app/range.coffee /^ toDelta: ->$/;" f +toJS src/stdlib/storage.coffee /^ toJS: (value) ->$/;" f +toString src/app/point.coffee /^ toString: ->$/;" f +toggle src/extensions/command-panel/src/command-panel.coffee /^ toggle: ->$/;" f +toggle src/extensions/markdown-preview/src/markdown-preview.coffee /^ toggle: ->$/;" f +toggle src/extensions/outline-view/src/outline-view.coffee /^ toggle: ->$/;" f +toggle src/extensions/tree-view/src/tree-view.coffee /^ toggle: ->$/;" f +toggleBufferFinder src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ toggleBufferFinder: ->$/;" f +toggleExpansion src/extensions/tree-view/src/directory-view.coffee /^ toggleExpansion: ->$/;" f +toggleFileFinder src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ toggleFileFinder: ->$/;" f +toggleIgnoredFiles src/app/project.coffee /^ toggleIgnoredFiles: -> @setHideIgnoredFiles(not @hideIgnoredFiles)$/;" f +toggleIgnoredFiles src/app/root-view.coffee /^ toggleIgnoredFiles: ->$/;" f +toggleLineComments src/app/selection.coffee /^ toggleLineComments: ->$/;" f +toggleLineCommentsForBufferRows src/app/edit-session.coffee /^ toggleLineCommentsForBufferRows: (start, end) ->$/;" f +toggleLineCommentsForBufferRows src/app/language-mode.coffee /^ toggleLineCommentsForBufferRows: (start, end) ->$/;" f +toggleLineCommentsInSelection src/app/edit-session.coffee /^ toggleLineCommentsInSelection: ->$/;" f +toggleLineCommentsInSelection src/app/editor.coffee /^ toggleLineCommentsInSelection: ->$/;" f +togglePreview src/extensions/command-panel/src/command-panel.coffee /^ togglePreview: ->$/;" f +toggleSoftTabs src/app/editor.coffee /^ toggleSoftTabs: ->$/;" f +toggleSoftWrap src/app/editor.coffee /^ toggleSoftWrap: ->$/;" f +toggles display of ignored path when setting is toggled src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "toggles display of ignored path when setting is toggled", ->$/;" f +toggles on/off a preview for a .md file src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "toggles on\/off a preview for a .md file", ->$/;" f +toggles the directory expansion state and does not change the focus to the editor src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "toggles the directory expansion state and does not change the focus to the editor", ->$/;" f +tokenAtBufferColumn src/app/old-screen-line.coffee /^ tokenAtBufferColumn: (bufferColumn) ->$/;" f +tokenAtBufferColumn src/app/screen-line.coffee /^ tokenAtBufferColumn: (bufferColumn) ->$/;" f +tokenizeInBackground src/app/tokenized-buffer.coffee /^ tokenizeInBackground: ->$/;" f +tokenizeLine src/app/language-mode.coffee /^ tokenizeLine: (line, stack) ->$/;" f +tokenizeLine src/app/text-mate-grammar.coffee /^ tokenizeLine: (line, ruleStack=[@initialRule]) ->$/;" f +tokenizeNextChunk src/app/tokenized-buffer.coffee /^ tokenizeNextChunk: ->$/;" f +transact src/app/buffer.coffee /^ transact: (fn) ->$/;" f +transact src/app/edit-session.coffee /^ transact: (fn) ->$/;" f +transact src/app/undo-manager.coffee /^ transact: (fn) ->$/;" f +translateColor src/app/text-mate-theme.coffee /^ translateColor: (textmateColor) ->$/;" f +translateColumn src/app/old-screen-line.coffee /^ translateColumn: (sourceDeltaType, targetDeltaType, sourceColumn, options={}) ->$/;" f +translatePosition src/app/old-line-map.coffee /^ translatePosition: (sourceDeltaType, targetDeltaType, sourcePosition, options={}) ->$/;" f +translateScopeSelector src/app/text-mate-theme.coffee /^ translateScopeSelector: (textmateScopeSelector) ->$/;" f +translateScopeSelectorSettings src/app/text-mate-theme.coffee /^ translateScopeSelectorSettings: ({ foreground, background, fontStyle }) ->$/;" f +transpose src/app/edit-session.coffee /^ transpose: ->$/;" f +transpose src/app/editor.coffee /^ transpose: -> @activeEditSession.transpose()$/;" f +traverseByDelta src/app/old-line-map.coffee /^ traverseByDelta: (deltaType, startPosition, endPosition=startPosition, iterator=null) ->$/;" f +traverseTree src/stdlib/fs.coffee /^ traverseTree: (rootPath, onFile, onDirectory) ->$/;" f +trigger src/app/event-emitter.coffee /^ trigger: (eventName, args...) ->$/;" f +trigger src/stdlib/event.coffee /^ trigger: (name, data...) ->$/;" f +triggerCommandEvent src/app/keymap.coffee /^ triggerCommandEvent: (keyEvent, commandName) ->$/;" f +truncateIntactRanges src/app/editor.coffee /^ truncateIntactRanges: (intactRanges, renderFrom, renderTo) ->$/;" f +undo src/app/buffer-change-operation.coffee /^ undo: ->$/;" f +undo src/app/buffer.coffee /^ undo: (editSession) ->$/;" f +undo src/app/edit-session.coffee /^ undo: (editSession) ->$/;" f +undo src/app/edit-session.coffee /^ undo: ->$/;" f +undo src/app/editor.coffee /^ undo: -> @activeEditSession.undo()$/;" f +undo src/app/undo-manager.coffee /^ undo: (editSession) ->$/;" f +undo src/extensions/snippets/src/snippets.coffee /^ undo: -> snippetExpansion.destroy()$/;" f +unfoldAll src/app/display-buffer.coffee /^ unfoldAll: ->$/;" f +unfoldAll src/app/edit-session.coffee /^ unfoldAll: ->$/;" f +unfoldAll src/app/editor.coffee /^ unfoldAll: -> @activeEditSession.unfoldAll()$/;" f +unfoldBufferRow src/app/display-buffer.coffee /^ unfoldBufferRow: (bufferRow) ->$/;" f +unfoldBufferRow src/app/edit-session.coffee /^ unfoldBufferRow: (bufferRow) ->$/;" f +unfoldCurrentRow src/app/edit-session.coffee /^ unfoldCurrentRow: ->$/;" f +unfoldCurrentRow src/app/editor.coffee /^ unfoldCurrentRow: -> @activeEditSession.unfoldCurrentRow()$/;" f +unhighlight src/app/selection-view.coffee /^ unhighlight: ->$/;" f +union src/app/range.coffee /^ union: (otherRange) ->$/;" f +unregisterFold src/app/display-buffer.coffee /^ unregisterFold: (bufferRow, fold) ->$/;" f +unsubscribeFromNativeChangeEvents src/app/directory.coffee /^ unsubscribeFromNativeChangeEvents: ->$/;" f +unsubscribeFromNativeChangeEvents src/app/file.coffee /^ unsubscribeFromNativeChangeEvents: ->$/;" f +unwatchDescendantEntries src/extensions/tree-view/src/directory-view.coffee /^ unwatchDescendantEntries: ->$/;" f +unwatchEntries src/extensions/tree-view/src/directory-view.coffee /^ unwatchEntries: ->$/;" f +updateAnchors src/app/buffer.coffee /^ updateAnchors: (change) ->$/;" f +updateBranchText src/app/status-bar.coffee /^ updateBranchText: ->$/;" f +updateBufferHasModifiedText src/app/status-bar.coffee /^ updateBufferHasModifiedText: (differsFromDisk)->$/;" f +updateCachedDiskContents src/app/buffer.coffee /^ updateCachedDiskContents: ->$/;" f +updateCursorPositionText src/app/status-bar.coffee /^ updateCursorPositionText: ->$/;" f +updateCursorViews src/app/editor.coffee /^ updateCursorViews: ->$/;" f +updateDisplay src/app/cursor-view.coffee /^ updateDisplay: ->$/;" f +updateDisplay src/app/editor.coffee /^ updateDisplay: (options={}) ->$/;" f +updateDisplay src/app/selection-view.coffee /^ updateDisplay: ->$/;" f +updateEndRow src/app/fold.coffee /^ updateEndRow: (event) ->$/;" f +updateFileName src/extensions/tabs/src/tab.coffee /^ updateFileName: ->$/;" f +updateGuide src/extensions/wrap-guide/src/wrap-guide.coffee /^ updateGuide: (editor) ->$/;" f +updateInvalidRows src/app/tokenized-buffer.coffee /^ updateInvalidRows: (start, end, delta) ->$/;" f +updateLayerDimensions src/app/editor.coffee /^ updateLayerDimensions: ->$/;" f +updateLineNumbers src/app/gutter.coffee /^ updateLineNumbers: (changes, renderFrom, renderTo) ->$/;" f +updatePaddingOfRenderedLines src/app/editor.coffee /^ updatePaddingOfRenderedLines: ->$/;" f +updatePathText src/app/status-bar.coffee /^ updatePathText: ->$/;" f +updateRenderedLines src/app/editor.coffee /^ updateRenderedLines: ->$/;" f +updateRoot src/extensions/tree-view/src/tree-view.coffee /^ updateRoot: ->$/;" f +updateScopeStack src/app/editor.coffee /^ updateScopeStack = (desiredScopes) ->$/;" f +updateSelectionViews src/app/editor.coffee /^ updateSelectionViews: ->$/;" f +updateStartRow src/app/fold.coffee /^ updateStartRow: (event) ->$/;" f +updateStatusBar src/app/status-bar.coffee /^ updateStatusBar: ->$/;" f +updateStatusText src/app/status-bar.coffee /^ updateStatusText: ->$/;" f +updateWindowTitle src/app/root-view.coffee /^ updateWindowTitle: ->$/;" f +updates the directory view to display the directory's new contents src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "updates the directory view to display the directory's new contents", ->$/;" f +updates the file name in the tab src/extensions/tabs/spec/tabs-spec.coffee /^ it "updates the file name in the tab", ->$/;" f +updates the wrap guide position src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "updates the wrap guide position", ->$/;" f +upper native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int upper;$/;" m struct:__anon6 +upper native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int upper;$/;" m struct:__anon13 +upper native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int upper;$/;" m struct:__anon20 +url native/v8_extensions/readtags.c /^ char *url;$/;" m struct:sTagFile::__anon25 file: +url native/v8_extensions/readtags.h /^ const char *url;$/;" m struct:__anon28::__anon31 +used native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int used; \/* used space for p *\/$/;" m struct:re_pattern_buffer +used native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int used; \/* used space for p *\/$/;" m struct:re_pattern_buffer +used native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int used; \/* used space for p *\/$/;" m struct:re_pattern_buffer +uses the entire file as the address range src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "uses the entire file as the address range", ->$/;" f +uses the function from the config data src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "uses the function from the config data", ->$/;" f +uses the selection as the address range src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "uses the selection as the address range", ->$/;" f +usesSoftTabs src/app/buffer.coffee /^ usesSoftTabs: ->$/;" f +v8_extensions native/v8_extensions/atom.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/atom.mm /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/atom_linux.cpp /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/git.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/git.mm /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/native.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/native.mm /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/native_linux.cpp /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/native_linux.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/onig_reg_exp.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/onig_reg_exp.mm /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/onig_reg_exp_linux.cpp /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/onig_scanner.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/onig_scanner.mm /^namespace v8_extensions {$/;" n file: +v8_extensions native/v8_extensions/tags.h /^namespace v8_extensions {$/;" n +v8_extensions native/v8_extensions/tags.mm /^namespace v8_extensions {$/;" n file: +validateRow src/app/tokenized-buffer.coffee /^ validateRow: (row) ->$/;" f +value native/v8_extensions/readtags.h /^ const char *value;$/;" m struct:__anon32 +version native/v8_extensions/readtags.c /^ char *version;$/;" m struct:sTagFile::__anon25 file: +version native/v8_extensions/readtags.h /^ const char *version;$/;" m struct:__anon28::__anon31 +verticalChildUnits src/app/pane-grid.coffee /^ verticalChildUnits: ->$/;" f +verticalGridUnits src/app/pane-column.coffee /^ verticalGridUnits: ->$/;" f +verticalGridUnits src/app/pane-row.coffee /^ verticalGridUnits: ->$/;" f +verticalGridUnits src/app/pane.coffee /^ verticalGridUnits: ->$/;" f +vstring native/v8_extensions/readtags.c /^} vstring;$/;" t typeref:struct:__anon22 file: +wWinMain native/atom_win.cpp /^int APIENTRY wWinMain(HINSTANCE hInstance,$/;" f +watchEntries src/extensions/tree-view/src/directory-view.coffee /^ watchEntries: ->$/;" f +webView native/atom_window_controller.h /^@property (nonatomic, retain) IBOutlet NSView *webView;$/;" v +webView native/atom_window_controller.mm /^@synthesize webView=_webView;$/;" v +when collapsing a directory, removes change subscriptions from the collapsed directory and its descendants src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "when collapsing a directory, removes change subscriptions from the collapsed directory and its descendants", ->$/;" f +window native/linux/client_handler.h /^ GtkWidget* window;$/;" m class:ClientHandler +window native/v8_extensions/native_linux.h /^ GtkWidget* window;$/;" m class:v8_extensions::NativeHandler +wraps around to the beginning of the buffer, but doesn't infinitely loop if no matches are found src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "wraps around to the beginning of the buffer, but doesn't infinitely loop if no matches are found", ->$/;" f +write src/app/file.coffee /^ write: (text) ->$/;" f +write src/app/pasteboard.coffee /^ write: (text, metadata) ->$/;" f +write src/stdlib/fs.coffee /^ write: (path, content) ->$/;" f +zero_or_one_time native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint zero_or_one_time;$/;" m struct:__anon3 +zero_or_one_time native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint zero_or_one_time;$/;" m struct:__anon10 +zero_or_one_time native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint zero_or_one_time;$/;" m struct:__anon17 +~AtomCefClient native/atom_cef_client.cpp /^AtomCefClient::~AtomCefClient() {$/;" f class:AtomCefClient +~ClientHandler native/linux/client_handler.cpp /^ClientHandler::~ClientHandler() {$/;" f class:ClientHandler +~GitRepository native/v8_extensions/git.mm /^ ~GitRepository() {$/;" f class:v8_extensions::GitRepository +~OnigRegExpUserData native/v8_extensions/onig_reg_exp.mm /^ ~OnigRegExpUserData() {$/;" f class:v8_extensions::OnigRegExpUserData +~OnigRegexpUserData native/v8_extensions/onig_reg_exp_linux.cpp /^ ~OnigRegexpUserData() {$/;" f class:v8_extensions::OnigRegexpUserData +~OnigScannerUserData native/v8_extensions/onig_scanner.mm /^ ~OnigScannerUserData() {$/;" f class:v8_extensions::OnigScannerUserData From d8461641b9a6dd3373735d1d70347474f02e665e Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 16:28:59 -0800 Subject: [PATCH 19/23] Display matches when more than one tag is found --- spec/fixtures/tagged-duplicate.js | 3 ++ spec/fixtures/tagged.js | 6 ++- spec/fixtures/tags | 3 ++ .../spec/outline-view-spec.coffee | 15 ++++++- .../outline-view/src/outline-view.coffee | 40 ++++++++++++++----- .../outline-view/src/outline-view.css | 3 -- 6 files changed, 53 insertions(+), 17 deletions(-) create mode 100644 spec/fixtures/tagged-duplicate.js diff --git a/spec/fixtures/tagged-duplicate.js b/spec/fixtures/tagged-duplicate.js new file mode 100644 index 000000000..a4b6fbb8a --- /dev/null +++ b/spec/fixtures/tagged-duplicate.js @@ -0,0 +1,3 @@ + function duplicate() { + return false; + } diff --git a/spec/fixtures/tagged.js b/spec/fixtures/tagged.js index 4c6debdc9..4adaac609 100644 --- a/spec/fixtures/tagged.js +++ b/spec/fixtures/tagged.js @@ -4,4 +4,8 @@ function callMeMaybe() { return "here's my number"; } -var iJustMetYou = callMeMaybe() +var iJustMetYou = callMeMaybe(); + +function duplicate() { + return true; +} diff --git a/spec/fixtures/tags b/spec/fixtures/tags index e9fe9e46f..eed641589 100644 --- a/spec/fixtures/tags +++ b/spec/fixtures/tags @@ -5,3 +5,6 @@ !_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ !_TAG_PROGRAM_VERSION 5.8 // callMeMaybe tagged.js /^function callMeMaybe() {$/;" f +duplicate tagged-duplicate.js /^function duplicate() {$/;" f +duplicate tagged.js /^function duplicate() {$/;" f +thisIsCrazy tagged.js /^var thisIsCrazy = true;$/;" v diff --git a/src/extensions/outline-view/spec/outline-view-spec.coffee b/src/extensions/outline-view/spec/outline-view-spec.coffee index abccdfe16..518c43fe5 100644 --- a/src/extensions/outline-view/spec/outline-view-spec.coffee +++ b/src/extensions/outline-view/spec/outline-view-spec.coffee @@ -129,9 +129,9 @@ describe "OutlineView", -> it "doesn't move the cursor when no declaration is found", -> rootView.open("tagged.js") editor = rootView.getActiveEditor() - editor.setCursorBufferPosition([0,12]) + editor.setCursorBufferPosition([0,2]) editor.trigger 'outline-view:jump-to-declaration' - expect(editor.getCursorBufferPosition()).toEqual [0,12] + expect(editor.getCursorBufferPosition()).toEqual [0,2] it "moves the cursor to the declaration", -> rootView.open("tagged.js") @@ -139,3 +139,14 @@ describe "OutlineView", -> editor.setCursorBufferPosition([6,24]) editor.trigger 'outline-view:jump-to-declaration' expect(editor.getCursorBufferPosition()).toEqual [2,0] + + it "displays matches when more than one exists and opens the selected match", -> + rootView.open("tagged.js") + editor = rootView.getActiveEditor() + editor.setCursorBufferPosition([8,14]) + editor.trigger 'outline-view:jump-to-declaration' + expect(outlineView.list.children('li').length).toBe 2 + expect(outlineView).toBeVisible() + outlineView.confirmed(outlineView.array[0]) + expect(rootView.getActiveEditor().getPath()).toBe rootView.project.resolve("tagged-duplicate.js") + expect(rootView.getActiveEditor().getCursorBufferPosition()).toEqual [0,4] diff --git a/src/extensions/outline-view/src/outline-view.coffee b/src/extensions/outline-view/src/outline-view.coffee index 3cd4cfe6f..af15c2a2c 100644 --- a/src/extensions/outline-view/src/outline-view.coffee +++ b/src/extensions/outline-view/src/outline-view.coffee @@ -4,6 +4,8 @@ Editor = require 'editor' TagGenerator = require 'outline-view/src/tag-generator' TagReader = require 'outline-view/src/tag-reader' Point = require 'point' +fs = require 'fs' +$ = require 'jquery' module.exports = class OutlineView extends SelectList @@ -51,8 +53,12 @@ class OutlineView extends SelectList @setError("No symbols found") setTimeout (=> @detach()), 2000 - confirmed : ({position, name}) -> + confirmed : (tag) -> @cancel() + @openTag(tag) + + openTag: ({position, file}) -> + @rootView.openInExistingEditor(file, true, true) if file @moveToPosition(position) moveToPosition: (position) -> @@ -69,17 +75,29 @@ class OutlineView extends SelectList @rootView.append(this) @miniEditor.focus() + getTagLine: (tag) -> + pattern = tag.pattern?.replace(/(^^\/\^)|(\$\/$)/g, '') # Remove leading /^ and trailing $/ + return unless pattern + for line, index in fs.read(@rootView.project.resolve(tag.file)).split('\n') + return new Point(index, 0) if pattern is $.trim(line) + jumpToDeclaration: -> editor = @rootView.getActiveEditor() matches = TagReader.find(editor) - return unless matches.length is 1 + return unless matches.length - tag = matches[0] - return unless tag.pattern - pattern = tag.pattern.replace(/(^^\/\^)|(\$\/$)/g, '') # Remove leading /^ and trailing $/ - if pattern and @rootView.openInExistingEditor(tag.file, true, true) - buffer = editor.getBuffer() - for row in [0...buffer.getLineCount()] - continue unless pattern is buffer.lineForRow(row) - @moveToPosition(new Point(row, 0)) - break + if matches.length is 1 + position = @getTagLine(matches[0]) + @openTag(file: matches[0].file, position: position) if position + else + tags = [] + for match in matches + position = @getTagLine(match) + continue unless position + tags.push + file: match.file + name: fs.base(match.file) + position: position + @miniEditor.show() + @setArray(tags) + @attach() diff --git a/src/extensions/outline-view/src/outline-view.css b/src/extensions/outline-view/src/outline-view.css index 1b67d9139..7f3fda574 100644 --- a/src/extensions/outline-view/src/outline-view.css +++ b/src/extensions/outline-view/src/outline-view.css @@ -31,8 +31,5 @@ color: #ddd; -webkit-border-radius: 3px; padding: 0 4px; -} - -.outline-view ol .function-line { background: rgba(0, 0, 0, .2); } From 0f4d8bf51c8f49a1dd33cca848034e8cb3df630a Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 17:14:50 -0800 Subject: [PATCH 20/23] Use meta-. to jump to declaration --- src/extensions/outline-view/src/keymap.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/outline-view/src/keymap.coffee b/src/extensions/outline-view/src/keymap.coffee index 0a3440941..7dbf07894 100644 --- a/src/extensions/outline-view/src/keymap.coffee +++ b/src/extensions/outline-view/src/keymap.coffee @@ -1,3 +1,3 @@ window.keymap.bindKeys '.editor' 'meta-j': 'outline-view:toggle' - 'f3': 'outline-view:jump-to-declaration' + 'meta-.': 'outline-view:jump-to-declaration' From 74faacf22989d2e96065df0886377fe19beb97f7 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 13 Dec 2012 17:20:37 -0800 Subject: [PATCH 21/23] Trim tag pattern --- src/extensions/outline-view/src/outline-view.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/outline-view/src/outline-view.coffee b/src/extensions/outline-view/src/outline-view.coffee index af15c2a2c..0e068cacc 100644 --- a/src/extensions/outline-view/src/outline-view.coffee +++ b/src/extensions/outline-view/src/outline-view.coffee @@ -76,7 +76,7 @@ class OutlineView extends SelectList @miniEditor.focus() getTagLine: (tag) -> - pattern = tag.pattern?.replace(/(^^\/\^)|(\$\/$)/g, '') # Remove leading /^ and trailing $/ + pattern = $.trim(tag.pattern?.replace(/(^^\/\^)|(\$\/$)/g, '')) # Remove leading /^ and trailing $/ return unless pattern for line, index in fs.read(@rootView.project.resolve(tag.file)).split('\n') return new Point(index, 0) if pattern is $.trim(line) From 9c5214edec4f1a1b0b5ef10028cda12125e5b878 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 14 Dec 2012 09:14:22 -0800 Subject: [PATCH 22/23] Remove/ignore tags file and add rake task to generate --- .gitignore | 1 + Rakefile | 4 + tags | 3466 ---------------------------------------------------- 3 files changed, 5 insertions(+), 3466 deletions(-) delete mode 100644 tags diff --git a/.gitignore b/.gitignore index 708857da1..2d92c1880 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ build .xcodebuild-info node_modules npm-debug.log +/tags diff --git a/Rakefile b/Rakefile index 41daeb428..b2a8f3004 100644 --- a/Rakefile +++ b/Rakefile @@ -127,6 +127,10 @@ task :nof do system %{find . -name *spec.coffee | grep -v atom-build | xargs sed -E -i "" "s/f+(it|describe) +(['\\"])/\\1 \\2/g"} end +task :tags do + system %{ctags -R src/ native/} +end + def application_path applications = FileList["#{BUILD_DIR}/**/Atom.app"] if applications.size == 0 diff --git a/tags b/tags deleted file mode 100644 index 2336715ab..000000000 --- a/tags +++ /dev/null @@ -1,3466 +0,0 @@ -!_TAG_FILE_FORMAT 2 /extended format; --format=1 will not append ;" to lines/ -!_TAG_FILE_SORTED 1 /0=unsorted, 1=sorted, 2=foldcase/ -!_TAG_PROGRAM_AUTHOR Darren Hiebert /dhiebert@users.sourceforge.net/ -!_TAG_PROGRAM_NAME Exuberant Ctags // -!_TAG_PROGRAM_URL http://ctags.sourceforge.net /official site/ -!_TAG_PROGRAM_VERSION 5.8 // -@_handleKeyEvent src/app/window.coffee /^ @_handleKeyEvent = (e) => @keymap.handleKeyEvent(e)$/;" f -@_setSoftWrapColumn src/app/editor.coffee /^ @_setSoftWrapColumn = => @setSoftWrapColumn()$/;" f -@activate src/app/status-bar.coffee /^ @activate: (rootView) ->$/;" f -@activate src/app/text-mate-theme.coffee /^ @activate: (name) ->$/;" f -@activate src/extensions/autocomplete/src/autocomplete.coffee /^ @activate: (rootView) ->$/;" f -@activate src/extensions/command-panel/src/command-panel.coffee /^ @activate: (rootView, state) ->$/;" f -@activate src/extensions/event-palette/src/event-palette.coffee /^ @activate: (rootView) ->$/;" f -@activate src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ @activate: (rootView) ->$/;" f -@activate src/extensions/markdown-preview/src/markdown-preview.coffee /^ @activate: (rootView, state) ->$/;" f -@activate src/extensions/outline-view/src/outline-view.coffee /^ @activate: (rootView) ->$/;" f -@activate src/extensions/tabs/src/tabs.coffee /^ @activate: (rootView) ->$/;" f -@activate src/extensions/tree-view/src/tree-view.coffee /^ @activate: (rootView, state) ->$/;" f -@activate src/extensions/wrap-guide/src/wrap-guide.coffee /^ @activate: (rootView, state, config) ->$/;" f -@appendToEditorPane src/app/status-bar.coffee /^ @appendToEditorPane: (rootView, editor) ->$/;" f -@appendToEditorPane src/extensions/wrap-guide/src/wrap-guide.coffee /^ @appendToEditorPane: (rootView, editor, config) ->$/;" f -@bufferLines src/stdlib/child-process.coffee /^ @bufferLines: (callback) ->$/;" f -@classes src/app/editor.coffee /^ @classes: ({mini} = {}) ->$/;" f -@content src/app/cursor-view.coffee /^ @content: ->$/;" f -@content src/app/editor.coffee /^ @content: (params) ->$/;" f -@content src/app/gutter.coffee /^ @content: ->$/;" f -@content src/app/pane-column.coffee /^ @content: ->$/;" f -@content src/app/pane-row.coffee /^ @content: ->$/;" f -@content src/app/pane.coffee /^ @content: (wrappedView) ->$/;" f -@content src/app/root-view.coffee /^ @content: ->$/;" f -@content src/app/select-list.coffee /^ @content: ->$/;" f -@content src/app/selection-view.coffee /^ @content: ->$/;" f -@content src/app/status-bar.coffee /^ @content: ->$/;" f -@content src/extensions/autocomplete/src/autocomplete.coffee /^ @content: ->$/;" f -@content src/extensions/command-panel/src/command-panel.coffee /^ @content: (rootView) ->$/;" f -@content src/extensions/command-panel/src/preview-list.coffee /^ @content: ->$/;" f -@content src/extensions/markdown-preview/src/markdown-preview.coffee /^ @content: (rootView) ->$/;" f -@content src/extensions/tabs/src/tab.coffee /^ @content: (editSession) ->$/;" f -@content src/extensions/tabs/src/tabs.coffee /^ @content: ->$/;" f -@content src/extensions/tree-view/src/dialog.coffee /^ @content: ({prompt} = {}) ->$/;" f -@content src/extensions/tree-view/src/directory-view.coffee /^ @content: ({directory, isExpanded} = {}) ->$/;" f -@content src/extensions/tree-view/src/file-view.coffee /^ @content: (file) ->$/;" f -@content src/extensions/tree-view/src/tree-view.coffee /^ @content: (rootView) ->$/;" f -@content src/extensions/wrap-guide/src/wrap-guide.coffee /^ @content: ->$/;" f -@deactivate src/extensions/command-panel/src/command-panel.coffee /^ @deactivate: ->$/;" f -@deactivate src/extensions/tree-view/src/tree-view.coffee /^ @deactivate: () ->$/;" f -@deserialize src/app/edit-session.coffee /^ @deserialize: (state, project) ->$/;" f -@deserialize src/app/editor.coffee /^ @deserialize: (state, rootView) ->$/;" f -@deserialize src/app/pane-grid.coffee /^ @deserialize: ({children}, rootView) ->$/;" f -@deserialize src/app/pane.coffee /^ @deserialize: ({wrappedView}, rootView) ->$/;" f -@deserialize src/app/root-view.coffee /^ @deserialize: ({ projectPath, panesViewState, extensionStates, fontSize }) ->$/;" f -@deserialize src/extensions/command-panel/src/command-panel.coffee /^ @deserialize: (state, rootView) ->$/;" f -@deserialize src/extensions/tree-view/src/tree-view.coffee /^ @deserialize: (state, rootView) ->$/;" f -@exec src/stdlib/child-process.coffee /^ @exec: (command, options={}) ->$/;" f -@foldEndRegexForScope src/app/text-mate-bundle.coffee /^ @foldEndRegexForScope: (grammar, scope) ->$/;" f -@fromObject src/app/point.coffee /^ @fromObject: (object) ->$/;" f -@fromObject src/app/range.coffee /^ @fromObject: (object) ->$/;" f -@getGuideColumn src/extensions/wrap-guide/src/wrap-guide.coffee /^ @getGuideColumn = (path, defaultColumn) -> defaultColumn$/;" f -@getNames src/app/text-mate-theme.coffee /^ @getNames: ->$/;" f -@getPreferenceInScope src/app/text-mate-bundle.coffee /^ @getPreferenceInScope: (scopeSelector, preferenceName) ->$/;" f -@getTheme src/app/text-mate-theme.coffee /^ @getTheme: (name) ->$/;" f -@grammarByShebang src/app/text-mate-bundle.coffee /^ @grammarByShebang: (filePath) ->$/;" f -@grammarForFilePath src/app/text-mate-bundle.coffee /^ @grammarForFilePath: (filePath) ->$/;" f -@grammarForScopeName src/app/text-mate-bundle.coffee /^ @grammarForScopeName: (scopeName) ->$/;" f -@indentRegexForScope src/app/text-mate-bundle.coffee /^ @indentRegexForScope: (scope) ->$/;" f -@lineCommentStringForScope src/app/text-mate-bundle.coffee /^ @lineCommentStringForScope: (scope) ->$/;" f -@load src/app/text-mate-theme.coffee /^ @load: (path) ->$/;" f -@loadAll src/app/text-mate-bundle.coffee /^ @loadAll: ->$/;" f -@loadAll src/app/text-mate-theme.coffee /^ @loadAll: ->$/;" f -@loadFromPath src/app/text-mate-grammar.coffee /^ @loadFromPath: (path) ->$/;" f -@moveToTrash src/stdlib/native.coffee /^ @moveToTrash: (args...) -> $native.moveToTrash(args...)$/;" f -@outdentRegexForScope src/app/text-mate-bundle.coffee /^ @outdentRegexForScope: (scope) ->$/;" f -@prependToEditorPane src/extensions/tabs/src/tabs.coffee /^ @prependToEditorPane: (rootView, editor) ->$/;" f -@registerBundle src/app/text-mate-bundle.coffee /^ @registerBundle: (bundle)->$/;" f -@registerTheme src/app/text-mate-theme.coffee /^ @registerTheme: (theme) ->$/;" f -@reload src/stdlib/native.coffee /^ @reload: -> $native.reload()$/;" f -@serialize src/extensions/command-panel/src/command-panel.coffee /^ @serialize: ->$/;" f -@serialize src/extensions/tree-view/src/tree-view.coffee /^ @serialize: ->$/;" f -@setup src/stdlib/watcher.coffee /^ @setup: ->$/;" f -@unwatch src/stdlib/watcher.coffee /^ @unwatch: (path, callback=null) ->$/;" f -@viewClass src/app/select-list.coffee /^ @viewClass: -> 'select-list'$/;" f -@viewClass src/extensions/event-palette/src/event-palette.coffee /^ @viewClass: ->$/;" f -@viewClass src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ @viewClass: ->$/;" f -@viewClass src/extensions/outline-view/src/outline-view.coffee /^ @viewClass: -> "#{super} outline-view"$/;" f -@watch src/stdlib/watcher.coffee /^ @watch: (path, callback) ->$/;" f -@watcher_receivedNotification_forPath src/stdlib/watcher.coffee /^ @watcher_receivedNotification_forPath = (queue, notification, path) =>$/;" f -ASSERT native/linux/util.h /^#define ASSERT(/;" d -ATOM_APP_H_ native/linux/atom_app.h /^#define ATOM_APP_H_$/;" d -ATOM_CEF_APP_H_ native/atom_cef_app.h /^#define ATOM_CEF_APP_H_$/;" d -ATOM_CEF_CLIENT_H_ native/atom_cef_client.h /^#define ATOM_CEF_CLIENT_H_$/;" d -ATOM_CEF_CLIENT_H_ native/message_translation.h /^#define ATOM_CEF_CLIENT_H_$/;" d -ATOM_CEF_RENDER_PROCESS_HANDLER_H_ native/atom_cef_render_process_handler.h /^#define ATOM_CEF_RENDER_PROCESS_HANDLER_H_$/;" d -About native/atom_win.cpp /^INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam) {$/;" f -Absolute native/v8_extensions/native_linux.cpp /^void NativeHandler::Absolute(const CefString& name,$/;" f class:v8_extensions::NativeHandler -Accelerated2DCanvasActivated native/atom_gtk.cpp /^gboolean Accelerated2DCanvasActivated(GtkWidget* widget) {$/;" f -AcceleratedLayersActivated native/atom_gtk.cpp /^gboolean AcceleratedLayersActivated(GtkWidget* widget) {$/;" f -AddMenuEntry native/atom_gtk.cpp /^GtkWidget* AddMenuEntry(GtkWidget* menu_widget, const char* text,$/;" f -Alert native/v8_extensions/native_linux.cpp /^void NativeHandler::Alert(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -AppGetSettings native/linux/atom_app.cpp /^void AppGetSettings(CefSettings& settings, CefRefPtr& app) {$/;" f -AppGetWorkingDirectory native/atom_gtk.cpp /^std::string AppGetWorkingDirectory() {$/;" f -AppGetWorkingDirectory native/atom_win.cpp /^std::string AppGetWorkingDirectory() {$/;" f -AppGetWorkingDirectory native/linux/atom_app.cpp /^string AppGetWorkingDirectory() {$/;" f -AppPath native/linux/atom_app.cpp /^string AppPath() {$/;" f -AsyncList native/v8_extensions/native_linux.cpp /^void NativeHandler::AsyncList(const CefString& name,$/;" f class:v8_extensions::NativeHandler -Atom native/v8_extensions/atom.h /^ class Atom : public CefV8Handler {$/;" c namespace:v8_extensions -Atom native/v8_extensions/atom.mm /^ Atom::Atom() : CefV8Handler() {$/;" f class:v8_extensions::Atom -Atom native/v8_extensions/atom_linux.cpp /^Atom::Atom() :$/;" f class:v8_extensions::Atom -AtomCefApp native/atom_cef_app.h /^class AtomCefApp : public CefApp {$/;" c -AtomCefClient native/atom_cef_client.cpp /^AtomCefClient::AtomCefClient(){$/;" f class:AtomCefClient -AtomCefClient native/atom_cef_client.cpp /^AtomCefClient::AtomCefClient(bool handlePasteboardCommands) {$/;" f class:AtomCefClient -AtomCefClient native/atom_cef_client.h /^class AtomCefClient : public CefClient,$/;" c -AtomCefRenderProcessHandler native/atom_cef_render_process_handler.h /^class AtomCefRenderProcessHandler : public CefRenderProcessHandler {$/;" c -BUFFER_SIZE native/linux/io_utils.cpp /^#define BUFFER_SIZE /;" d file: -BUFFER_SIZE native/v8_extensions/native_linux.cpp /^#define BUFFER_SIZE /;" d file: -BUTTON_WIDTH native/atom_win.cpp /^#define BUTTON_WIDTH /;" d file: -BackButtonClicked native/atom_gtk.cpp /^void BackButtonClicked(GtkButton* button) {$/;" f -BeginTracing native/atom_cef_client.cpp /^void AtomCefClient::BeginTracing() {$/;" f class:AtomCefClient -BindingActivated native/atom_gtk.cpp /^gboolean BindingActivated(GtkWidget* widget) {$/;" f -BuildCaptureIndices native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr BuildCaptureIndices(OnigRegion *region) {$/;" f class:v8_extensions::OnigRegexpUserData -CLIENT_HANDLER_H_ native/linux/client_handler.h /^#define CLIENT_HANDLER_H_$/;" d -CallMessageReceivedHandler native/atom_cef_render_process_handler.mm /^bool AtomCefRenderProcessHandler::CallMessageReceivedHandler(CefRefPtr context, CefRefPtr message) {$/;" f class:AtomCefRenderProcessHandler -CallMessageReceivedHandler native/linux/atom_cef_render_process_handler.cpp /^bool AtomCefRenderProcessHandler::CallMessageReceivedHandler($/;" f class:AtomCefRenderProcessHandler -CallbackContext native/v8_extensions/native_linux.h /^struct CallbackContext {$/;" s namespace:v8_extensions -CaptureCount native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr CaptureCount() {$/;" f class:v8_extensions::OnigRegexpUserData -CaptureIndicesForMatch native/v8_extensions/onig_scanner.mm /^ CefRefPtr CaptureIndicesForMatch(OnigResult *result) {$/;" f class:v8_extensions::OnigScannerUserData -CheckoutHead native/v8_extensions/git.mm /^ CefRefPtr CheckoutHead(const char *path) {$/;" f class:v8_extensions::GitRepository -ClearCachedResults native/v8_extensions/onig_scanner.mm /^ void ClearCachedResults() {$/;" f class:v8_extensions::OnigScannerUserData -ClientHandler native/linux/client_handler.cpp /^ClientHandler::ClientHandler() :$/;" f class:ClientHandler -ClientHandler native/linux/client_handler.h /^class ClientHandler: public CefClient,$/;" c -CloseMainWindow native/atom_cef_client_gtk.cpp /^void ClientHandler::CloseMainWindow() {$/;" f class:ClientHandler -CloseMainWindow native/atom_cef_client_win.mm /^void ClientHandler::CloseMainWindow() {$/;" f class:ClientHandler -CloseMainWindow native/linux/client_handler.cpp /^void ClientHandler::CloseMainWindow() {$/;" f class:ClientHandler -Confirm native/atom_cef_client_mac.mm /^void AtomCefClient::Confirm(int replyId,$/;" f class:AtomCefClient -CreateMenu native/atom_gtk.cpp /^GtkWidget* CreateMenu(GtkWidget* menu_bar, const char* text) {$/;" f -CreateMenuBar native/atom_gtk.cpp /^GtkWidget* CreateMenuBar() {$/;" f -CreateReplyDescriptor native/atom_cef_client_mac.mm /^CefRefPtr AtomCefClient::CreateReplyDescriptor(int replyId, int callbackIndex) {$/;" f class:AtomCefClient -DOMAccessActivated native/atom_gtk.cpp /^gboolean DOMAccessActivated(GtkWidget* widget) {$/;" f -DeleteContents native/v8_extensions/native_linux.cpp /^void DeleteContents(string path) {$/;" f namespace:v8_extensions -Digest native/v8_extensions/native_linux.cpp /^void NativeHandler::Digest(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -DoClose native/linux/client_handler.cpp /^bool ClientHandler::DoClose(CefRefPtr browser) {$/;" f class:ClientHandler -EmptyString native/v8_extensions/readtags.c /^const char *const EmptyString = "";$/;" v -EndTracing native/atom_cef_client.cpp /^void AtomCefClient::EndTracing() {$/;" f class:AtomCefClient -Execute native/v8_extensions/atom.mm /^ bool Atom::Execute(const CefString& name,$/;" f class:v8_extensions::Atom -Execute native/v8_extensions/atom_linux.cpp /^bool Atom::Execute(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::Atom -Execute native/v8_extensions/git.mm /^bool Git::Execute(const CefString& name,$/;" f class:v8_extensions::Git -Execute native/v8_extensions/native.mm /^bool Native::Execute(const CefString& name,$/;" f class:v8_extensions::Native -Execute native/v8_extensions/native_linux.cpp /^bool NativeHandler::Execute(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -Execute native/v8_extensions/onig_reg_exp.mm /^bool OnigRegExp::Execute(const CefString& name,$/;" f class:v8_extensions::OnigRegExp -Execute native/v8_extensions/onig_reg_exp_linux.cpp /^bool OnigRegExp::Execute(const CefString& name,$/;" f class:v8_extensions::OnigRegExp -Execute native/v8_extensions/onig_scanner.mm /^bool OnigScanner::Execute(const CefString& name,$/;" f class:v8_extensions::OnigScanner -Execute native/v8_extensions/tags.mm /^bool Tags::Execute(const CefString& name,$/;" f class:v8_extensions::Tags -ExecuteWatchCallback native/v8_extensions/native_linux.cpp /^void ExecuteWatchCallback(NotifyContext notifyContext) {$/;" f namespace:v8_extensions -Exists native/v8_extensions/native_linux.cpp /^void NativeHandler::Exists(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -Exit native/atom_cef_client_mac.mm /^void AtomCefClient::Exit(int status) {$/;" f class:AtomCefClient -FindNextMatch native/v8_extensions/onig_scanner.mm /^ CefRefPtr FindNextMatch(CefRefPtr v8String, CefRefPtr v8StartLocation) {$/;" f class:v8_extensions::OnigScannerUserData -FocusNextWindow native/atom_cef_client_mac.mm /^void AtomCefClient::FocusNextWindow() {$/;" f class:AtomCefClient -ForwardButtonClicked native/atom_gtk.cpp /^void ForwardButtonClicked(GtkButton* button) {$/;" f -GetBrowser native/atom_cef_client.h /^ CefRefPtr GetBrowser() { return m_Browser; }$/;" f class:AtomCefClient -GetBrowser native/linux/client_handler.h /^ CefRefPtr GetBrowser() {$/;" f class:ClientHandler -GetBrowserHwnd native/linux/client_handler.h /^ CefWindowHandle GetBrowserHwnd() {$/;" f class:ClientHandler -GetCaptureIndices native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr GetCaptureIndices(CefRefPtr argument,$/;" f class:v8_extensions::OnigRegexpUserData -GetDownloadPath native/atom_cef_client_gtk.cpp /^std::string ClientHandler::GetDownloadPath(const std::string& file_name) {$/;" f class:ClientHandler -GetDownloadPath native/atom_cef_client_win.mm /^std::string ClientHandler::GetDownloadPath(const std::string& file_name) {$/;" f class:ClientHandler -GetHead native/v8_extensions/git.mm /^ CefRefPtr GetHead() {$/;" f class:v8_extensions::GitRepository -GetJSDialogHandler native/atom_cef_client.h /^ virtual CefRefPtr GetJSDialogHandler() {$/;" f class:AtomCefClient -GetMainHwnd native/linux/client_handler.h /^ CefWindowHandle GetMainHwnd() {$/;" f class:ClientHandler -GetPath native/v8_extensions/git.mm /^ CefRefPtr GetPath() {$/;" f class:v8_extensions::GitRepository -GetSourceActivated native/atom_gtk.cpp /^gboolean GetSourceActivated(GtkWidget* widget) {$/;" f -GetStatus native/v8_extensions/git.mm /^ CefRefPtr GetStatus(const char *path) {$/;" f class:v8_extensions::GitRepository -GetTextActivated native/atom_gtk.cpp /^gboolean GetTextActivated(GtkWidget* widget) {$/;" f -Git native/v8_extensions/git.h /^class Git : public CefV8Handler {$/;" c namespace:v8_extensions -Git native/v8_extensions/git.mm /^Git::Git() : CefV8Handler() {$/;" f class:v8_extensions::Git -GitRepository native/v8_extensions/git.js /^ function GitRepository(path) {$/;" f -GitRepository native/v8_extensions/git.js /^ }$/;" c -GitRepository native/v8_extensions/git.mm /^ GitRepository(const char *pathInRepo) {$/;" f class:v8_extensions::GitRepository -GitRepository native/v8_extensions/git.mm /^class GitRepository : public CefBase {$/;" c namespace:v8_extensions file: -GitRepository.checkoutHead native/v8_extensions/git.js /^ GitRepository.prototype.checkoutHead = checkoutHead;$/;" m -GitRepository.getHead native/v8_extensions/git.js /^ GitRepository.prototype.getHead = getHead;$/;" m -GitRepository.getPath native/v8_extensions/git.js /^ GitRepository.prototype.getPath = getPath;$/;" m -GitRepository.getStatus native/v8_extensions/git.js /^ GitRepository.prototype.getStatus = getStatus;$/;" m -GitRepository.isIgnored native/v8_extensions/git.js /^ GitRepository.prototype.isIgnored = isIgnored;$/;" m -HAVE_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define HAVE_PROTOTYPES /;" d -HAVE_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define HAVE_PROTOTYPES /;" d -HAVE_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define HAVE_PROTOTYPES /;" d -HAVE_STDARG_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define HAVE_STDARG_PROTOTYPES /;" d -HAVE_STDARG_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define HAVE_STDARG_PROTOTYPES /;" d -HAVE_STDARG_PROTOTYPES native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define HAVE_STDARG_PROTOTYPES /;" d -HTML5DragDropActivated native/atom_gtk.cpp /^gboolean HTML5DragDropActivated(GtkWidget* widget) {$/;" f -HTML5VideoActivated native/atom_gtk.cpp /^gboolean HTML5VideoActivated(GtkWidget* widget) {$/;" f -HandleFocus native/atom_gtk.cpp /^static gboolean HandleFocus(GtkWidget* widget,$/;" f file: -HandleFocus native/linux/atom_app.cpp /^static gboolean HandleFocus(GtkWidget* widget, GdkEventFocus* focus) {$/;" f file: -INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR /;" d -INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR /;" d -INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR /;" d -IO_UTILS_H_ native/linux/io_utils.h /^#define IO_UTILS_H_$/;" d -InitInstance native/atom_win.cpp /^BOOL InitInstance(HINSTANCE hInstance, int nCmdShow) {$/;" f -IsDirectory native/v8_extensions/native_linux.cpp /^void NativeHandler::IsDirectory(const CefString& name,$/;" f class:v8_extensions::NativeHandler -IsFile native/v8_extensions/native_linux.cpp /^void NativeHandler::IsFile(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -IsIgnored native/v8_extensions/git.mm /^ CefRefPtr IsIgnored(const char *path) {$/;" f class:v8_extensions::GitRepository -JUMP_BACK native/v8_extensions/readtags.c /^#define JUMP_BACK /;" d file: -LastModified native/v8_extensions/native_linux.cpp /^void NativeHandler::LastModified(const CefString& name,$/;" f class:v8_extensions::NativeHandler -List native/v8_extensions/native_linux.cpp /^void NativeHandler::List(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -ListDirectory native/v8_extensions/native_linux.cpp /^void ListDirectory(string path, vector* paths, bool recursive) {$/;" f namespace:v8_extensions -LocalStorageActivated native/atom_gtk.cpp /^gboolean LocalStorageActivated(GtkWidget* widget) {$/;" f -Log native/atom_cef_client_mac.mm /^void AtomCefClient::Log(const char *message) {$/;" f class:AtomCefClient -MAX_LOADSTRING native/atom_win.cpp /^#define MAX_LOADSTRING /;" d file: -MAX_URL_LENGTH native/atom_win.cpp /^#define MAX_URL_LENGTH /;" d file: -MakeDirectory native/v8_extensions/native_linux.cpp /^void NativeHandler::MakeDirectory(const CefString& name,$/;" f class:v8_extensions::NativeHandler -ModifyZoom native/atom_win.cpp /^static void ModifyZoom(CefRefPtr browser, double delta) {$/;" f file: -Move native/v8_extensions/native_linux.cpp /^void NativeHandler::Move(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -MyRegisterClass native/atom_win.cpp /^ATOM MyRegisterClass(HINSTANCE hInstance) {$/;" f -NATIVE_LINUX_H_ native/v8_extensions/native_linux.h /^#define NATIVE_LINUX_H_$/;" d -NOTIFY_CONSOLE_MESSAGE native/linux/client_handler.h /^ NOTIFY_CONSOLE_MESSAGE$/;" e enum:ClientHandler::NotificationType -Native native/v8_extensions/native.h /^class Native : public CefV8Handler {$/;" c namespace:v8_extensions -Native native/v8_extensions/native.mm /^Native::Native() : CefV8Handler() {$/;" f class:v8_extensions::Native -NativeHandler native/v8_extensions/native_linux.cpp /^NativeHandler::NativeHandler() :$/;" f class:v8_extensions::NativeHandler -NativeHandler native/v8_extensions/native_linux.h /^class NativeHandler: public CefV8Handler {$/;" c namespace:v8_extensions -NewWindow native/atom_cef_client_mac.mm /^void AtomCefClient::NewWindow() {$/;" f class:AtomCefClient -NotificationType native/linux/client_handler.h /^ enum NotificationType {$/;" g class:ClientHandler -NotifyContext native/v8_extensions/native_linux.h /^struct NotifyContext {$/;" s namespace:v8_extensions -NotifyWatchers native/v8_extensions/native_linux.cpp /^void NativeHandler::NotifyWatchers() {$/;" f class:v8_extensions::NativeHandler -NotifyWatchersCallback native/v8_extensions/native_linux.cpp /^void *NotifyWatchersCallback(void* pointer) {$/;" f namespace:v8_extensions -ONIGENC_APPLY_ALL_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_APPLY_ALL_CASE_FOLD(/;" d -ONIGENC_APPLY_ALL_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_APPLY_ALL_CASE_FOLD(/;" d -ONIGENC_APPLY_ALL_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_APPLY_ALL_CASE_FOLD(/;" d -ONIGENC_CASE_FOLD_DEFAULT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_DEFAULT /;" d -ONIGENC_CASE_FOLD_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_DEFAULT /;" d -ONIGENC_CASE_FOLD_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_DEFAULT /;" d -ONIGENC_CASE_FOLD_MIN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_MIN /;" d -ONIGENC_CASE_FOLD_MIN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_MIN /;" d -ONIGENC_CASE_FOLD_MIN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_MIN /;" d -ONIGENC_CASE_FOLD_TURKISH_AZERI native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_TURKISH_AZERI /;" d -ONIGENC_CASE_FOLD_TURKISH_AZERI native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_TURKISH_AZERI /;" d -ONIGENC_CASE_FOLD_TURKISH_AZERI native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CASE_FOLD_TURKISH_AZERI /;" d -ONIGENC_CODE_RANGE_FROM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_FROM(/;" d -ONIGENC_CODE_RANGE_FROM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_FROM(/;" d -ONIGENC_CODE_RANGE_FROM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_FROM(/;" d -ONIGENC_CODE_RANGE_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_NUM(/;" d -ONIGENC_CODE_RANGE_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_NUM(/;" d -ONIGENC_CODE_RANGE_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_NUM(/;" d -ONIGENC_CODE_RANGE_TO native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_TO(/;" d -ONIGENC_CODE_RANGE_TO native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_TO(/;" d -ONIGENC_CODE_RANGE_TO native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_RANGE_TO(/;" d -ONIGENC_CODE_TO_MBC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC(/;" d -ONIGENC_CODE_TO_MBC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC(/;" d -ONIGENC_CODE_TO_MBC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC(/;" d -ONIGENC_CODE_TO_MBCLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBCLEN(/;" d -ONIGENC_CODE_TO_MBCLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBCLEN(/;" d -ONIGENC_CODE_TO_MBCLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBCLEN(/;" d -ONIGENC_CODE_TO_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC_MAXLEN /;" d -ONIGENC_CODE_TO_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC_MAXLEN /;" d -ONIGENC_CODE_TO_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CODE_TO_MBC_MAXLEN /;" d -ONIGENC_CTYPE_ALNUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALNUM /;" d -ONIGENC_CTYPE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALNUM /;" d -ONIGENC_CTYPE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALNUM /;" d -ONIGENC_CTYPE_ALPHA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALPHA /;" d -ONIGENC_CTYPE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALPHA /;" d -ONIGENC_CTYPE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ALPHA /;" d -ONIGENC_CTYPE_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ASCII /;" d -ONIGENC_CTYPE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ASCII /;" d -ONIGENC_CTYPE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_ASCII /;" d -ONIGENC_CTYPE_BLANK native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_BLANK /;" d -ONIGENC_CTYPE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_BLANK /;" d -ONIGENC_CTYPE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_BLANK /;" d -ONIGENC_CTYPE_CNTRL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_CNTRL /;" d -ONIGENC_CTYPE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_CNTRL /;" d -ONIGENC_CTYPE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_CNTRL /;" d -ONIGENC_CTYPE_DIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_DIGIT /;" d -ONIGENC_CTYPE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_DIGIT /;" d -ONIGENC_CTYPE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_DIGIT /;" d -ONIGENC_CTYPE_GRAPH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_GRAPH /;" d -ONIGENC_CTYPE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_GRAPH /;" d -ONIGENC_CTYPE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_GRAPH /;" d -ONIGENC_CTYPE_LOWER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_LOWER /;" d -ONIGENC_CTYPE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_LOWER /;" d -ONIGENC_CTYPE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_LOWER /;" d -ONIGENC_CTYPE_NEWLINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_NEWLINE /;" d -ONIGENC_CTYPE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_NEWLINE /;" d -ONIGENC_CTYPE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_NEWLINE /;" d -ONIGENC_CTYPE_PRINT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PRINT /;" d -ONIGENC_CTYPE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PRINT /;" d -ONIGENC_CTYPE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PRINT /;" d -ONIGENC_CTYPE_PUNCT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PUNCT /;" d -ONIGENC_CTYPE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PUNCT /;" d -ONIGENC_CTYPE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_PUNCT /;" d -ONIGENC_CTYPE_SPACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_SPACE /;" d -ONIGENC_CTYPE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_SPACE /;" d -ONIGENC_CTYPE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_SPACE /;" d -ONIGENC_CTYPE_UPPER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_UPPER /;" d -ONIGENC_CTYPE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_UPPER /;" d -ONIGENC_CTYPE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_UPPER /;" d -ONIGENC_CTYPE_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_WORD /;" d -ONIGENC_CTYPE_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_WORD /;" d -ONIGENC_CTYPE_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_WORD /;" d -ONIGENC_CTYPE_XDIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_CTYPE_XDIGIT /;" d -ONIGENC_CTYPE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_CTYPE_XDIGIT /;" d -ONIGENC_CTYPE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_CTYPE_XDIGIT /;" d -ONIGENC_GET_CASE_FOLD_CODES_BY_STR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(/;" d -ONIGENC_GET_CASE_FOLD_CODES_BY_STR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(/;" d -ONIGENC_GET_CASE_FOLD_CODES_BY_STR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_BY_STR(/;" d -ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM /;" d -ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM /;" d -ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_GET_CASE_FOLD_CODES_MAX_NUM /;" d -ONIGENC_GET_CTYPE_CODE_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_GET_CTYPE_CODE_RANGE(/;" d -ONIGENC_GET_CTYPE_CODE_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_GET_CTYPE_CODE_RANGE(/;" d -ONIGENC_GET_CTYPE_CODE_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_GET_CTYPE_CODE_RANGE(/;" d -ONIGENC_IS_ALLOWED_REVERSE_MATCH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(/;" d -ONIGENC_IS_ALLOWED_REVERSE_MATCH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(/;" d -ONIGENC_IS_ALLOWED_REVERSE_MATCH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_ALLOWED_REVERSE_MATCH(/;" d -ONIGENC_IS_CODE_ALNUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALNUM(/;" d -ONIGENC_IS_CODE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALNUM(/;" d -ONIGENC_IS_CODE_ALNUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALNUM(/;" d -ONIGENC_IS_CODE_ALPHA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALPHA(/;" d -ONIGENC_IS_CODE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALPHA(/;" d -ONIGENC_IS_CODE_ALPHA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ALPHA(/;" d -ONIGENC_IS_CODE_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ASCII(/;" d -ONIGENC_IS_CODE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ASCII(/;" d -ONIGENC_IS_CODE_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_ASCII(/;" d -ONIGENC_IS_CODE_BLANK native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_BLANK(/;" d -ONIGENC_IS_CODE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_BLANK(/;" d -ONIGENC_IS_CODE_BLANK native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_BLANK(/;" d -ONIGENC_IS_CODE_CNTRL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CNTRL(/;" d -ONIGENC_IS_CODE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CNTRL(/;" d -ONIGENC_IS_CODE_CNTRL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CNTRL(/;" d -ONIGENC_IS_CODE_CTYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CTYPE(/;" d -ONIGENC_IS_CODE_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CTYPE(/;" d -ONIGENC_IS_CODE_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_CTYPE(/;" d -ONIGENC_IS_CODE_DIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_DIGIT(/;" d -ONIGENC_IS_CODE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_DIGIT(/;" d -ONIGENC_IS_CODE_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_DIGIT(/;" d -ONIGENC_IS_CODE_GRAPH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_GRAPH(/;" d -ONIGENC_IS_CODE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_GRAPH(/;" d -ONIGENC_IS_CODE_GRAPH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_GRAPH(/;" d -ONIGENC_IS_CODE_LOWER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_LOWER(/;" d -ONIGENC_IS_CODE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_LOWER(/;" d -ONIGENC_IS_CODE_LOWER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_LOWER(/;" d -ONIGENC_IS_CODE_NEWLINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_NEWLINE(/;" d -ONIGENC_IS_CODE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_NEWLINE(/;" d -ONIGENC_IS_CODE_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_NEWLINE(/;" d -ONIGENC_IS_CODE_PRINT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PRINT(/;" d -ONIGENC_IS_CODE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PRINT(/;" d -ONIGENC_IS_CODE_PRINT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PRINT(/;" d -ONIGENC_IS_CODE_PUNCT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PUNCT(/;" d -ONIGENC_IS_CODE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PUNCT(/;" d -ONIGENC_IS_CODE_PUNCT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_PUNCT(/;" d -ONIGENC_IS_CODE_SPACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_SPACE(/;" d -ONIGENC_IS_CODE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_SPACE(/;" d -ONIGENC_IS_CODE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_SPACE(/;" d -ONIGENC_IS_CODE_UPPER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_UPPER(/;" d -ONIGENC_IS_CODE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_UPPER(/;" d -ONIGENC_IS_CODE_UPPER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_UPPER(/;" d -ONIGENC_IS_CODE_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_WORD(/;" d -ONIGENC_IS_CODE_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_WORD(/;" d -ONIGENC_IS_CODE_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_WORD(/;" d -ONIGENC_IS_CODE_XDIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_XDIGIT(/;" d -ONIGENC_IS_CODE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_XDIGIT(/;" d -ONIGENC_IS_CODE_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_CODE_XDIGIT(/;" d -ONIGENC_IS_MBC_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_ASCII(/;" d -ONIGENC_IS_MBC_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_ASCII(/;" d -ONIGENC_IS_MBC_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_ASCII(/;" d -ONIGENC_IS_MBC_HEAD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_HEAD(/;" d -ONIGENC_IS_MBC_HEAD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_HEAD(/;" d -ONIGENC_IS_MBC_HEAD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_HEAD(/;" d -ONIGENC_IS_MBC_NEWLINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_NEWLINE(/;" d -ONIGENC_IS_MBC_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_NEWLINE(/;" d -ONIGENC_IS_MBC_NEWLINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_NEWLINE(/;" d -ONIGENC_IS_MBC_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_WORD(/;" d -ONIGENC_IS_MBC_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_WORD(/;" d -ONIGENC_IS_MBC_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_MBC_WORD(/;" d -ONIGENC_IS_SINGLEBYTE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_SINGLEBYTE(/;" d -ONIGENC_IS_SINGLEBYTE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_SINGLEBYTE(/;" d -ONIGENC_IS_SINGLEBYTE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_SINGLEBYTE(/;" d -ONIGENC_IS_UNDEF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_IS_UNDEF(/;" d -ONIGENC_IS_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_IS_UNDEF(/;" d -ONIGENC_IS_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_IS_UNDEF(/;" d -ONIGENC_LEFT_ADJUST_CHAR_HEAD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(/;" d -ONIGENC_LEFT_ADJUST_CHAR_HEAD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(/;" d -ONIGENC_LEFT_ADJUST_CHAR_HEAD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_LEFT_ADJUST_CHAR_HEAD(/;" d -ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN /;" d -ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN /;" d -ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN /;" d -ONIGENC_MAX_STD_CTYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MAX_STD_CTYPE /;" d -ONIGENC_MAX_STD_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MAX_STD_CTYPE /;" d -ONIGENC_MAX_STD_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MAX_STD_CTYPE /;" d -ONIGENC_MBC_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD(/;" d -ONIGENC_MBC_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD(/;" d -ONIGENC_MBC_CASE_FOLD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD(/;" d -ONIGENC_MBC_CASE_FOLD_MAXLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD_MAXLEN /;" d -ONIGENC_MBC_CASE_FOLD_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD_MAXLEN /;" d -ONIGENC_MBC_CASE_FOLD_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_CASE_FOLD_MAXLEN /;" d -ONIGENC_MBC_ENC_LEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_ENC_LEN(/;" d -ONIGENC_MBC_ENC_LEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_ENC_LEN(/;" d -ONIGENC_MBC_ENC_LEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_ENC_LEN(/;" d -ONIGENC_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN(/;" d -ONIGENC_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN(/;" d -ONIGENC_MBC_MAXLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN(/;" d -ONIGENC_MBC_MAXLEN_DIST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN_DIST(/;" d -ONIGENC_MBC_MAXLEN_DIST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN_DIST(/;" d -ONIGENC_MBC_MAXLEN_DIST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_MAXLEN_DIST(/;" d -ONIGENC_MBC_MINLEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_MINLEN(/;" d -ONIGENC_MBC_MINLEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_MINLEN(/;" d -ONIGENC_MBC_MINLEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_MINLEN(/;" d -ONIGENC_MBC_TO_CODE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_MBC_TO_CODE(/;" d -ONIGENC_MBC_TO_CODE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_MBC_TO_CODE(/;" d -ONIGENC_MBC_TO_CODE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_MBC_TO_CODE(/;" d -ONIGENC_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_NAME(/;" d -ONIGENC_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_NAME(/;" d -ONIGENC_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_NAME(/;" d -ONIGENC_PROPERTY_NAME_TO_CTYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_PROPERTY_NAME_TO_CTYPE(/;" d -ONIGENC_PROPERTY_NAME_TO_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_PROPERTY_NAME_TO_CTYPE(/;" d -ONIGENC_PROPERTY_NAME_TO_CTYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_PROPERTY_NAME_TO_CTYPE(/;" d -ONIGENC_STEP_BACK native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGENC_STEP_BACK(/;" d -ONIGENC_STEP_BACK native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGENC_STEP_BACK(/;" d -ONIGENC_STEP_BACK native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGENC_STEP_BACK(/;" d -ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE /;" d -ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE /;" d -ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_END_OF_RANGE /;" d -ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE /;" d -ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE /;" d -ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_CHAR_CLASS_VALUE_AT_START_OF_RANGE /;" d -ONIGERR_CONTROL_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_CONTROL_CODE_SYNTAX /;" d -ONIGERR_CONTROL_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_CONTROL_CODE_SYNTAX /;" d -ONIGERR_CONTROL_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_CONTROL_CODE_SYNTAX /;" d -ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED /;" d -ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED /;" d -ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_DEFAULT_ENCODING_IS_NOT_SETTED /;" d -ONIGERR_EMPTY_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_EMPTY_CHAR_CLASS /;" d -ONIGERR_EMPTY_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_EMPTY_CHAR_CLASS /;" d -ONIGERR_EMPTY_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_EMPTY_CHAR_CLASS /;" d -ONIGERR_EMPTY_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_EMPTY_GROUP_NAME /;" d -ONIGERR_EMPTY_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_EMPTY_GROUP_NAME /;" d -ONIGERR_EMPTY_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_EMPTY_GROUP_NAME /;" d -ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS /;" d -ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS /;" d -ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_EMPTY_RANGE_IN_CHAR_CLASS /;" d -ONIGERR_END_PATTERN_AT_CONTROL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_CONTROL /;" d -ONIGERR_END_PATTERN_AT_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_CONTROL /;" d -ONIGERR_END_PATTERN_AT_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_CONTROL /;" d -ONIGERR_END_PATTERN_AT_ESCAPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_ESCAPE /;" d -ONIGERR_END_PATTERN_AT_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_ESCAPE /;" d -ONIGERR_END_PATTERN_AT_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_ESCAPE /;" d -ONIGERR_END_PATTERN_AT_LEFT_BRACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACE /;" d -ONIGERR_END_PATTERN_AT_LEFT_BRACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACE /;" d -ONIGERR_END_PATTERN_AT_LEFT_BRACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACE /;" d -ONIGERR_END_PATTERN_AT_LEFT_BRACKET native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET /;" d -ONIGERR_END_PATTERN_AT_LEFT_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET /;" d -ONIGERR_END_PATTERN_AT_LEFT_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_LEFT_BRACKET /;" d -ONIGERR_END_PATTERN_AT_META native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_META /;" d -ONIGERR_END_PATTERN_AT_META native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_META /;" d -ONIGERR_END_PATTERN_AT_META native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_AT_META /;" d -ONIGERR_END_PATTERN_IN_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_IN_GROUP /;" d -ONIGERR_END_PATTERN_IN_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_IN_GROUP /;" d -ONIGERR_END_PATTERN_IN_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_IN_GROUP /;" d -ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS /;" d -ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS /;" d -ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_END_PATTERN_WITH_UNMATCHED_PARENTHESIS /;" d -ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY /;" d -ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY /;" d -ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_GROUP_NUMBER_OVER_FOR_CAPTURE_HISTORY /;" d -ONIGERR_INVALID_ARGUMENT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_ARGUMENT /;" d -ONIGERR_INVALID_ARGUMENT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_ARGUMENT /;" d -ONIGERR_INVALID_ARGUMENT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_ARGUMENT /;" d -ONIGERR_INVALID_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_BACKREF /;" d -ONIGERR_INVALID_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_BACKREF /;" d -ONIGERR_INVALID_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_BACKREF /;" d -ONIGERR_INVALID_CHAR_IN_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME /;" d -ONIGERR_INVALID_CHAR_IN_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME /;" d -ONIGERR_INVALID_CHAR_IN_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_IN_GROUP_NAME /;" d -ONIGERR_INVALID_CHAR_PROPERTY_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_PROPERTY_NAME /;" d -ONIGERR_INVALID_CHAR_PROPERTY_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_PROPERTY_NAME /;" d -ONIGERR_INVALID_CHAR_PROPERTY_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_CHAR_PROPERTY_NAME /;" d -ONIGERR_INVALID_CODE_POINT_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_CODE_POINT_VALUE /;" d -ONIGERR_INVALID_CODE_POINT_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_CODE_POINT_VALUE /;" d -ONIGERR_INVALID_CODE_POINT_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_CODE_POINT_VALUE /;" d -ONIGERR_INVALID_COMBINATION_OF_OPTIONS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS /;" d -ONIGERR_INVALID_COMBINATION_OF_OPTIONS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS /;" d -ONIGERR_INVALID_COMBINATION_OF_OPTIONS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_COMBINATION_OF_OPTIONS /;" d -ONIGERR_INVALID_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_GROUP_NAME /;" d -ONIGERR_INVALID_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_GROUP_NAME /;" d -ONIGERR_INVALID_GROUP_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_GROUP_NAME /;" d -ONIGERR_INVALID_LOOK_BEHIND_PATTERN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN /;" d -ONIGERR_INVALID_LOOK_BEHIND_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN /;" d -ONIGERR_INVALID_LOOK_BEHIND_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_LOOK_BEHIND_PATTERN /;" d -ONIGERR_INVALID_POSIX_BRACKET_TYPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_POSIX_BRACKET_TYPE /;" d -ONIGERR_INVALID_POSIX_BRACKET_TYPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_POSIX_BRACKET_TYPE /;" d -ONIGERR_INVALID_POSIX_BRACKET_TYPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_POSIX_BRACKET_TYPE /;" d -ONIGERR_INVALID_REPEAT_RANGE_PATTERN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN /;" d -ONIGERR_INVALID_REPEAT_RANGE_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN /;" d -ONIGERR_INVALID_REPEAT_RANGE_PATTERN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_REPEAT_RANGE_PATTERN /;" d -ONIGERR_INVALID_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_INVALID_WIDE_CHAR_VALUE /;" d -ONIGERR_INVALID_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_INVALID_WIDE_CHAR_VALUE /;" d -ONIGERR_INVALID_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_INVALID_WIDE_CHAR_VALUE /;" d -ONIGERR_MATCH_STACK_LIMIT_OVER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MATCH_STACK_LIMIT_OVER /;" d -ONIGERR_MATCH_STACK_LIMIT_OVER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MATCH_STACK_LIMIT_OVER /;" d -ONIGERR_MATCH_STACK_LIMIT_OVER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MATCH_STACK_LIMIT_OVER /;" d -ONIGERR_MEMORY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MEMORY /;" d -ONIGERR_MEMORY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MEMORY /;" d -ONIGERR_MEMORY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MEMORY /;" d -ONIGERR_META_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_META_CODE_SYNTAX /;" d -ONIGERR_META_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_META_CODE_SYNTAX /;" d -ONIGERR_META_CODE_SYNTAX native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_META_CODE_SYNTAX /;" d -ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE /;" d -ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE /;" d -ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MISMATCH_CODE_LENGTH_IN_CLASS_RANGE /;" d -ONIGERR_MULTIPLEX_DEFINED_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINED_NAME /;" d -ONIGERR_MULTIPLEX_DEFINED_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINED_NAME /;" d -ONIGERR_MULTIPLEX_DEFINED_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINED_NAME /;" d -ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL /;" d -ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL /;" d -ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_MULTIPLEX_DEFINITION_NAME_CALL /;" d -ONIGERR_NESTED_REPEAT_OPERATOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NESTED_REPEAT_OPERATOR /;" d -ONIGERR_NESTED_REPEAT_OPERATOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NESTED_REPEAT_OPERATOR /;" d -ONIGERR_NESTED_REPEAT_OPERATOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NESTED_REPEAT_OPERATOR /;" d -ONIGERR_NEVER_ENDING_RECURSION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NEVER_ENDING_RECURSION /;" d -ONIGERR_NEVER_ENDING_RECURSION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NEVER_ENDING_RECURSION /;" d -ONIGERR_NEVER_ENDING_RECURSION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NEVER_ENDING_RECURSION /;" d -ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION /;" d -ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION /;" d -ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NOT_SUPPORTED_ENCODING_COMBINATION /;" d -ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED /;" d -ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED /;" d -ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_NUMBERED_BACKREF_OR_CALL_NOT_ALLOWED /;" d -ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT /;" d -ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT /;" d -ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_OVER_THREAD_PASS_LIMIT_COUNT /;" d -ONIGERR_PARSER_BUG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_PARSER_BUG /;" d -ONIGERR_PARSER_BUG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_PARSER_BUG /;" d -ONIGERR_PARSER_BUG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_PARSER_BUG /;" d -ONIGERR_PREMATURE_END_OF_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS /;" d -ONIGERR_PREMATURE_END_OF_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS /;" d -ONIGERR_PREMATURE_END_OF_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_PREMATURE_END_OF_CHAR_CLASS /;" d -ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR /;" d -ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR /;" d -ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_SPECIFIED_ENCODING_CANT_CONVERT_TO_WIDE_CHAR /;" d -ONIGERR_STACK_BUG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_STACK_BUG /;" d -ONIGERR_STACK_BUG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_STACK_BUG /;" d -ONIGERR_STACK_BUG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_STACK_BUG /;" d -ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID /;" d -ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID /;" d -ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_INVALID /;" d -ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED /;" d -ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED /;" d -ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TARGET_OF_REPEAT_OPERATOR_NOT_SPECIFIED /;" d -ONIGERR_TOO_BIG_BACKREF_NUMBER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_BACKREF_NUMBER /;" d -ONIGERR_TOO_BIG_BACKREF_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_BACKREF_NUMBER /;" d -ONIGERR_TOO_BIG_BACKREF_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_BACKREF_NUMBER /;" d -ONIGERR_TOO_BIG_NUMBER native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER /;" d -ONIGERR_TOO_BIG_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER /;" d -ONIGERR_TOO_BIG_NUMBER native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER /;" d -ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE /;" d -ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE /;" d -ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_NUMBER_FOR_REPEAT_RANGE /;" d -ONIGERR_TOO_BIG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE /;" d -ONIGERR_TOO_BIG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE /;" d -ONIGERR_TOO_BIG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_BIG_WIDE_CHAR_VALUE /;" d -ONIGERR_TOO_LONG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE /;" d -ONIGERR_TOO_LONG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE /;" d -ONIGERR_TOO_LONG_WIDE_CHAR_VALUE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_LONG_WIDE_CHAR_VALUE /;" d -ONIGERR_TOO_MANY_MULTI_BYTE_RANGES native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES /;" d -ONIGERR_TOO_MANY_MULTI_BYTE_RANGES native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES /;" d -ONIGERR_TOO_MANY_MULTI_BYTE_RANGES native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_MANY_MULTI_BYTE_RANGES /;" d -ONIGERR_TOO_SHORT_MULTI_BYTE_STRING native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING /;" d -ONIGERR_TOO_SHORT_MULTI_BYTE_STRING native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING /;" d -ONIGERR_TOO_SHORT_MULTI_BYTE_STRING native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TOO_SHORT_MULTI_BYTE_STRING /;" d -ONIGERR_TYPE_BUG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_TYPE_BUG /;" d -ONIGERR_TYPE_BUG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_TYPE_BUG /;" d -ONIGERR_TYPE_BUG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_TYPE_BUG /;" d -ONIGERR_UNDEFINED_BYTECODE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_BYTECODE /;" d -ONIGERR_UNDEFINED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_BYTECODE /;" d -ONIGERR_UNDEFINED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_BYTECODE /;" d -ONIGERR_UNDEFINED_GROUP_OPTION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_OPTION /;" d -ONIGERR_UNDEFINED_GROUP_OPTION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_OPTION /;" d -ONIGERR_UNDEFINED_GROUP_OPTION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_OPTION /;" d -ONIGERR_UNDEFINED_GROUP_REFERENCE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_REFERENCE /;" d -ONIGERR_UNDEFINED_GROUP_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_REFERENCE /;" d -ONIGERR_UNDEFINED_GROUP_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_GROUP_REFERENCE /;" d -ONIGERR_UNDEFINED_NAME_REFERENCE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_NAME_REFERENCE /;" d -ONIGERR_UNDEFINED_NAME_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_NAME_REFERENCE /;" d -ONIGERR_UNDEFINED_NAME_REFERENCE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNDEFINED_NAME_REFERENCE /;" d -ONIGERR_UNEXPECTED_BYTECODE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNEXPECTED_BYTECODE /;" d -ONIGERR_UNEXPECTED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNEXPECTED_BYTECODE /;" d -ONIGERR_UNEXPECTED_BYTECODE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNEXPECTED_BYTECODE /;" d -ONIGERR_UNMATCHED_CLOSE_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS /;" d -ONIGERR_UNMATCHED_CLOSE_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS /;" d -ONIGERR_UNMATCHED_CLOSE_PARENTHESIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_CLOSE_PARENTHESIS /;" d -ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS /;" d -ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS /;" d -ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UNMATCHED_RANGE_SPECIFIER_IN_CHAR_CLASS /;" d -ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE /;" d -ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE /;" d -ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGERR_UPPER_SMALLER_THAN_LOWER_IN_REPEAT_RANGE /;" d -ONIGURUMA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA$/;" d -ONIGURUMA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA$/;" d -ONIGURUMA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA$/;" d -ONIGURUMA_H native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_H$/;" d -ONIGURUMA_H native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_H$/;" d -ONIGURUMA_H native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_H$/;" d -ONIGURUMA_VERSION_MAJOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MAJOR /;" d -ONIGURUMA_VERSION_MAJOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MAJOR /;" d -ONIGURUMA_VERSION_MAJOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MAJOR /;" d -ONIGURUMA_VERSION_MINOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MINOR /;" d -ONIGURUMA_VERSION_MINOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MINOR /;" d -ONIGURUMA_VERSION_MINOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_MINOR /;" d -ONIGURUMA_VERSION_TEENY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_TEENY /;" d -ONIGURUMA_VERSION_TEENY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_TEENY /;" d -ONIGURUMA_VERSION_TEENY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIGURUMA_VERSION_TEENY /;" d -ONIG_CHAR_TABLE_SIZE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_CHAR_TABLE_SIZE /;" d -ONIG_CHAR_TABLE_SIZE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_CHAR_TABLE_SIZE /;" d -ONIG_CHAR_TABLE_SIZE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_CHAR_TABLE_SIZE /;" d -ONIG_ENCODING_ASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_ASCII /;" d -ONIG_ENCODING_ASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_ASCII /;" d -ONIG_ENCODING_ASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_ASCII /;" d -ONIG_ENCODING_UNDEF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UNDEF /;" d -ONIG_ENCODING_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UNDEF /;" d -ONIG_ENCODING_UNDEF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UNDEF /;" d -ONIG_ENCODING_UTF16_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_BE /;" d -ONIG_ENCODING_UTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_BE /;" d -ONIG_ENCODING_UTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_BE /;" d -ONIG_ENCODING_UTF16_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_LE /;" d -ONIG_ENCODING_UTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_LE /;" d -ONIG_ENCODING_UTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF16_LE /;" d -ONIG_ENCODING_UTF32_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_BE /;" d -ONIG_ENCODING_UTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_BE /;" d -ONIG_ENCODING_UTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_BE /;" d -ONIG_ENCODING_UTF32_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_LE /;" d -ONIG_ENCODING_UTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_LE /;" d -ONIG_ENCODING_UTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_ENCODING_UTF32_LE /;" d -ONIG_EXTERN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_EXTERN /;" d -ONIG_EXTERN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_EXTERN /;" d -ONIG_EXTERN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_EXTERN /;" d -ONIG_INEFFECTIVE_META_CHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_INEFFECTIVE_META_CHAR /;" d -ONIG_INEFFECTIVE_META_CHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_INEFFECTIVE_META_CHAR /;" d -ONIG_INEFFECTIVE_META_CHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_INEFFECTIVE_META_CHAR /;" d -ONIG_INFINITE_DISTANCE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_INFINITE_DISTANCE /;" d -ONIG_INFINITE_DISTANCE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_INFINITE_DISTANCE /;" d -ONIG_INFINITE_DISTANCE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_INFINITE_DISTANCE /;" d -ONIG_IS_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_IS_CAPTURE_HISTORY_GROUP(/;" d -ONIG_IS_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_IS_CAPTURE_HISTORY_GROUP(/;" d -ONIG_IS_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_IS_CAPTURE_HISTORY_GROUP(/;" d -ONIG_IS_OPTION_ON native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_IS_OPTION_ON(/;" d -ONIG_IS_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_IS_OPTION_ON(/;" d -ONIG_IS_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_IS_OPTION_ON(/;" d -ONIG_IS_PATTERN_ERROR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_IS_PATTERN_ERROR(/;" d -ONIG_IS_PATTERN_ERROR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_IS_PATTERN_ERROR(/;" d -ONIG_IS_PATTERN_ERROR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_IS_PATTERN_ERROR(/;" d -ONIG_MAX_BACKREF_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_BACKREF_NUM /;" d -ONIG_MAX_BACKREF_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_BACKREF_NUM /;" d -ONIG_MAX_BACKREF_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_BACKREF_NUM /;" d -ONIG_MAX_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_CAPTURE_HISTORY_GROUP /;" d -ONIG_MAX_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_CAPTURE_HISTORY_GROUP /;" d -ONIG_MAX_CAPTURE_HISTORY_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_CAPTURE_HISTORY_GROUP /;" d -ONIG_MAX_ERROR_MESSAGE_LEN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_ERROR_MESSAGE_LEN /;" d -ONIG_MAX_ERROR_MESSAGE_LEN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_ERROR_MESSAGE_LEN /;" d -ONIG_MAX_ERROR_MESSAGE_LEN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_ERROR_MESSAGE_LEN /;" d -ONIG_MAX_MULTI_BYTE_RANGES_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_MULTI_BYTE_RANGES_NUM /;" d -ONIG_MAX_MULTI_BYTE_RANGES_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_MULTI_BYTE_RANGES_NUM /;" d -ONIG_MAX_MULTI_BYTE_RANGES_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_MULTI_BYTE_RANGES_NUM /;" d -ONIG_MAX_REPEAT_NUM native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MAX_REPEAT_NUM /;" d -ONIG_MAX_REPEAT_NUM native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MAX_REPEAT_NUM /;" d -ONIG_MAX_REPEAT_NUM native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MAX_REPEAT_NUM /;" d -ONIG_META_CHAR_ANYCHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR /;" d -ONIG_META_CHAR_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR /;" d -ONIG_META_CHAR_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR /;" d -ONIG_META_CHAR_ANYCHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR_ANYTIME /;" d -ONIG_META_CHAR_ANYCHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR_ANYTIME /;" d -ONIG_META_CHAR_ANYCHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYCHAR_ANYTIME /;" d -ONIG_META_CHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYTIME /;" d -ONIG_META_CHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYTIME /;" d -ONIG_META_CHAR_ANYTIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ANYTIME /;" d -ONIG_META_CHAR_ESCAPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ESCAPE /;" d -ONIG_META_CHAR_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ESCAPE /;" d -ONIG_META_CHAR_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ESCAPE /;" d -ONIG_META_CHAR_ONE_OR_MORE_TIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ONE_OR_MORE_TIME /;" d -ONIG_META_CHAR_ONE_OR_MORE_TIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ONE_OR_MORE_TIME /;" d -ONIG_META_CHAR_ONE_OR_MORE_TIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ONE_OR_MORE_TIME /;" d -ONIG_META_CHAR_ZERO_OR_ONE_TIME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_META_CHAR_ZERO_OR_ONE_TIME /;" d -ONIG_META_CHAR_ZERO_OR_ONE_TIME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_META_CHAR_ZERO_OR_ONE_TIME /;" d -ONIG_META_CHAR_ZERO_OR_ONE_TIME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_META_CHAR_ZERO_OR_ONE_TIME /;" d -ONIG_MISMATCH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_MISMATCH /;" d -ONIG_MISMATCH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_MISMATCH /;" d -ONIG_MISMATCH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_MISMATCH /;" d -ONIG_NORMAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NORMAL /;" d -ONIG_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NORMAL /;" d -ONIG_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NORMAL /;" d -ONIG_NO_SUPPORT_CONFIG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NO_SUPPORT_CONFIG /;" d -ONIG_NO_SUPPORT_CONFIG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NO_SUPPORT_CONFIG /;" d -ONIG_NO_SUPPORT_CONFIG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NO_SUPPORT_CONFIG /;" d -ONIG_NREGION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NREGION /;" d -ONIG_NREGION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NREGION /;" d -ONIG_NREGION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NREGION /;" d -ONIG_NULL_WARN native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_NULL_WARN /;" d -ONIG_NULL_WARN native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_NULL_WARN /;" d -ONIG_NULL_WARN native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_NULL_WARN /;" d -ONIG_OPTION_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_CAPTURE_GROUP /;" d -ONIG_OPTION_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_CAPTURE_GROUP /;" d -ONIG_OPTION_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_CAPTURE_GROUP /;" d -ONIG_OPTION_DEFAULT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_DEFAULT /;" d -ONIG_OPTION_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_DEFAULT /;" d -ONIG_OPTION_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_DEFAULT /;" d -ONIG_OPTION_DONT_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_DONT_CAPTURE_GROUP /;" d -ONIG_OPTION_DONT_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_DONT_CAPTURE_GROUP /;" d -ONIG_OPTION_DONT_CAPTURE_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_DONT_CAPTURE_GROUP /;" d -ONIG_OPTION_EXTEND native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_EXTEND /;" d -ONIG_OPTION_EXTEND native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_EXTEND /;" d -ONIG_OPTION_EXTEND native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_EXTEND /;" d -ONIG_OPTION_FIND_LONGEST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_LONGEST /;" d -ONIG_OPTION_FIND_LONGEST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_LONGEST /;" d -ONIG_OPTION_FIND_LONGEST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_LONGEST /;" d -ONIG_OPTION_FIND_NOT_EMPTY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_NOT_EMPTY /;" d -ONIG_OPTION_FIND_NOT_EMPTY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_NOT_EMPTY /;" d -ONIG_OPTION_FIND_NOT_EMPTY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_FIND_NOT_EMPTY /;" d -ONIG_OPTION_IGNORECASE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_IGNORECASE /;" d -ONIG_OPTION_IGNORECASE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_IGNORECASE /;" d -ONIG_OPTION_IGNORECASE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_IGNORECASE /;" d -ONIG_OPTION_MAXBIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_MAXBIT /;" d -ONIG_OPTION_MAXBIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_MAXBIT /;" d -ONIG_OPTION_MAXBIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_MAXBIT /;" d -ONIG_OPTION_MULTILINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_MULTILINE /;" d -ONIG_OPTION_MULTILINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_MULTILINE /;" d -ONIG_OPTION_MULTILINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_MULTILINE /;" d -ONIG_OPTION_NEGATE_SINGLELINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NEGATE_SINGLELINE /;" d -ONIG_OPTION_NEGATE_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NEGATE_SINGLELINE /;" d -ONIG_OPTION_NEGATE_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NEGATE_SINGLELINE /;" d -ONIG_OPTION_NONE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NONE /;" d -ONIG_OPTION_NONE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NONE /;" d -ONIG_OPTION_NONE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NONE /;" d -ONIG_OPTION_NOTBOL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NOTBOL /;" d -ONIG_OPTION_NOTBOL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NOTBOL /;" d -ONIG_OPTION_NOTBOL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NOTBOL /;" d -ONIG_OPTION_NOTEOL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_NOTEOL /;" d -ONIG_OPTION_NOTEOL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_NOTEOL /;" d -ONIG_OPTION_NOTEOL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_NOTEOL /;" d -ONIG_OPTION_OFF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_OFF(/;" d -ONIG_OPTION_OFF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_OFF(/;" d -ONIG_OPTION_OFF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_OFF(/;" d -ONIG_OPTION_ON native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_ON(/;" d -ONIG_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_ON(/;" d -ONIG_OPTION_ON native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_ON(/;" d -ONIG_OPTION_POSIX_REGION native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_POSIX_REGION /;" d -ONIG_OPTION_POSIX_REGION native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_POSIX_REGION /;" d -ONIG_OPTION_POSIX_REGION native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_POSIX_REGION /;" d -ONIG_OPTION_SINGLELINE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_OPTION_SINGLELINE /;" d -ONIG_OPTION_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_OPTION_SINGLELINE /;" d -ONIG_OPTION_SINGLELINE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_OPTION_SINGLELINE /;" d -ONIG_REGION_NOTPOS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_REGION_NOTPOS /;" d -ONIG_REGION_NOTPOS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_REGION_NOTPOS /;" d -ONIG_REGION_NOTPOS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_REGION_NOTPOS /;" d -ONIG_STATE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE(/;" d -ONIG_STATE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE(/;" d -ONIG_STATE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE(/;" d -ONIG_STATE_COMPILING native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_COMPILING /;" d -ONIG_STATE_COMPILING native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_COMPILING /;" d -ONIG_STATE_COMPILING native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_COMPILING /;" d -ONIG_STATE_MODIFY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_MODIFY /;" d -ONIG_STATE_MODIFY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_MODIFY /;" d -ONIG_STATE_MODIFY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_MODIFY /;" d -ONIG_STATE_NORMAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_NORMAL /;" d -ONIG_STATE_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_NORMAL /;" d -ONIG_STATE_NORMAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_NORMAL /;" d -ONIG_STATE_SEARCHING native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_STATE_SEARCHING /;" d -ONIG_STATE_SEARCHING native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_STATE_SEARCHING /;" d -ONIG_STATE_SEARCHING native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_STATE_SEARCHING /;" d -ONIG_SYNTAX_ASIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_ASIS /;" d -ONIG_SYNTAX_ASIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_ASIS /;" d -ONIG_SYNTAX_ASIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_ASIS /;" d -ONIG_SYNTAX_DEFAULT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_DEFAULT /;" d -ONIG_SYNTAX_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_DEFAULT /;" d -ONIG_SYNTAX_DEFAULT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_DEFAULT /;" d -ONIG_SYNTAX_EMACS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_EMACS /;" d -ONIG_SYNTAX_EMACS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_EMACS /;" d -ONIG_SYNTAX_EMACS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_EMACS /;" d -ONIG_SYNTAX_GNU_REGEX native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_GNU_REGEX /;" d -ONIG_SYNTAX_GNU_REGEX native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_GNU_REGEX /;" d -ONIG_SYNTAX_GNU_REGEX native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_GNU_REGEX /;" d -ONIG_SYNTAX_GREP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_GREP /;" d -ONIG_SYNTAX_GREP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_GREP /;" d -ONIG_SYNTAX_GREP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_GREP /;" d -ONIG_SYNTAX_JAVA native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_JAVA /;" d -ONIG_SYNTAX_JAVA native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_JAVA /;" d -ONIG_SYNTAX_JAVA native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_JAVA /;" d -ONIG_SYNTAX_PERL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL /;" d -ONIG_SYNTAX_PERL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL /;" d -ONIG_SYNTAX_PERL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL /;" d -ONIG_SYNTAX_PERL_NG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL_NG /;" d -ONIG_SYNTAX_PERL_NG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL_NG /;" d -ONIG_SYNTAX_PERL_NG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_PERL_NG /;" d -ONIG_SYNTAX_POSIX_BASIC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_BASIC /;" d -ONIG_SYNTAX_POSIX_BASIC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_BASIC /;" d -ONIG_SYNTAX_POSIX_BASIC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_BASIC /;" d -ONIG_SYNTAX_POSIX_EXTENDED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_EXTENDED /;" d -ONIG_SYNTAX_POSIX_EXTENDED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_EXTENDED /;" d -ONIG_SYNTAX_POSIX_EXTENDED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_POSIX_EXTENDED /;" d -ONIG_SYNTAX_RUBY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYNTAX_RUBY /;" d -ONIG_SYNTAX_RUBY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYNTAX_RUBY /;" d -ONIG_SYNTAX_RUBY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYNTAX_RUBY /;" d -ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC /;" d -ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC /;" d -ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC /;" d -ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC /;" d -ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC /;" d -ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_EMPTY_RANGE_IN_CC /;" d -ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV /;" d -ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV /;" d -ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INTERVAL_LOW_ABBREV /;" d -ONIG_SYN_ALLOW_INVALID_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INVALID_INTERVAL /;" d -ONIG_SYN_ALLOW_INVALID_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INVALID_INTERVAL /;" d -ONIG_SYN_ALLOW_INVALID_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_INVALID_INTERVAL /;" d -ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME /;" d -ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME /;" d -ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_MULTIPLEX_DEFINITION_NAME /;" d -ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP /;" d -ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP /;" d -ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_ALLOW_UNMATCHED_CLOSE_SUBEXP /;" d -ONIG_SYN_BACKSLASH_ESCAPE_IN_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC /;" d -ONIG_SYN_BACKSLASH_ESCAPE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC /;" d -ONIG_SYN_BACKSLASH_ESCAPE_IN_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_BACKSLASH_ESCAPE_IN_CC /;" d -ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP /;" d -ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP /;" d -ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CAPTURE_ONLY_NAMED_GROUP /;" d -ONIG_SYN_CONTEXT_INDEP_ANCHORS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_ANCHORS /;" d -ONIG_SYN_CONTEXT_INDEP_ANCHORS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_ANCHORS /;" d -ONIG_SYN_CONTEXT_INDEP_ANCHORS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_ANCHORS /;" d -ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS /;" d -ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS /;" d -ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS /;" d -ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS /;" d -ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS /;" d -ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS /;" d -ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND /;" d -ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND /;" d -ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_DIFFERENT_LEN_ALT_LOOK_BEHIND /;" d -ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY /;" d -ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY /;" d -ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_FIXED_INTERVAL_IS_GREEDY_ONLY /;" d -ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC /;" d -ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC /;" d -ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_NOT_NEWLINE_IN_NEGATIVE_CC /;" d -ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY /;" d -ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY /;" d -ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ATMARK_CAPTURE_HISTORY /;" d -ONIG_SYN_OP2_CCLASS_SET_OP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_CCLASS_SET_OP /;" d -ONIG_SYN_OP2_CCLASS_SET_OP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_CCLASS_SET_OP /;" d -ONIG_SYN_OP2_CCLASS_SET_OP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_CCLASS_SET_OP /;" d -ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL /;" d -ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL /;" d -ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_C_BAR_CONTROL /;" d -ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META /;" d -ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META /;" d -ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_M_BAR_META /;" d -ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE /;" d -ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE /;" d -ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_CAPITAL_Q_QUOTE /;" d -ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR /;" d -ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR /;" d -ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_GNU_BUF_ANCHOR /;" d -ONIG_SYN_OP2_ESC_G_SUBEXP_CALL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL /;" d -ONIG_SYN_OP2_ESC_G_SUBEXP_CALL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL /;" d -ONIG_SYN_OP2_ESC_G_SUBEXP_CALL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_G_SUBEXP_CALL /;" d -ONIG_SYN_OP2_ESC_H_XDIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_H_XDIGIT /;" d -ONIG_SYN_OP2_ESC_H_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_H_XDIGIT /;" d -ONIG_SYN_OP2_ESC_H_XDIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_H_XDIGIT /;" d -ONIG_SYN_OP2_ESC_K_NAMED_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF /;" d -ONIG_SYN_OP2_ESC_K_NAMED_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF /;" d -ONIG_SYN_OP2_ESC_K_NAMED_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_K_NAMED_BACKREF /;" d -ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY /;" d -ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY /;" d -ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CHAR_PROPERTY /;" d -ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT /;" d -ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT /;" d -ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_P_BRACE_CIRCUMFLEX_NOT /;" d -ONIG_SYN_OP2_ESC_U_HEX4 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_U_HEX4 /;" d -ONIG_SYN_OP2_ESC_U_HEX4 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_U_HEX4 /;" d -ONIG_SYN_OP2_ESC_U_HEX4 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_U_HEX4 /;" d -ONIG_SYN_OP2_ESC_V_VTAB native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_V_VTAB /;" d -ONIG_SYN_OP2_ESC_V_VTAB native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_V_VTAB /;" d -ONIG_SYN_OP2_ESC_V_VTAB native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_ESC_V_VTAB /;" d -ONIG_SYN_OP2_INEFFECTIVE_ESCAPE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE /;" d -ONIG_SYN_OP2_INEFFECTIVE_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE /;" d -ONIG_SYN_OP2_INEFFECTIVE_ESCAPE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_INEFFECTIVE_ESCAPE /;" d -ONIG_SYN_OP2_OPTION_PERL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_PERL /;" d -ONIG_SYN_OP2_OPTION_PERL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_PERL /;" d -ONIG_SYN_OP2_OPTION_PERL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_PERL /;" d -ONIG_SYN_OP2_OPTION_RUBY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_RUBY /;" d -ONIG_SYN_OP2_OPTION_RUBY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_RUBY /;" d -ONIG_SYN_OP2_OPTION_RUBY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_OPTION_RUBY /;" d -ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL /;" d -ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL /;" d -ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_INTERVAL /;" d -ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT /;" d -ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT /;" d -ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_PLUS_POSSESSIVE_REPEAT /;" d -ONIG_SYN_OP2_QMARK_GROUP_EFFECT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT /;" d -ONIG_SYN_OP2_QMARK_GROUP_EFFECT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT /;" d -ONIG_SYN_OP2_QMARK_GROUP_EFFECT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_GROUP_EFFECT /;" d -ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP /;" d -ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP /;" d -ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP2_QMARK_LT_NAMED_GROUP /;" d -ONIG_SYN_OP_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ASTERISK_ZERO_INF /;" d -ONIG_SYN_OP_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ASTERISK_ZERO_INF /;" d -ONIG_SYN_OP_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ASTERISK_ZERO_INF /;" d -ONIG_SYN_OP_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACE_INTERVAL /;" d -ONIG_SYN_OP_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACE_INTERVAL /;" d -ONIG_SYN_OP_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACE_INTERVAL /;" d -ONIG_SYN_OP_BRACKET_CC native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACKET_CC /;" d -ONIG_SYN_OP_BRACKET_CC native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACKET_CC /;" d -ONIG_SYN_OP_BRACKET_CC native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_BRACKET_CC /;" d -ONIG_SYN_OP_DECIMAL_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_DECIMAL_BACKREF /;" d -ONIG_SYN_OP_DECIMAL_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_DECIMAL_BACKREF /;" d -ONIG_SYN_OP_DECIMAL_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_DECIMAL_BACKREF /;" d -ONIG_SYN_OP_DOT_ANYCHAR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_DOT_ANYCHAR /;" d -ONIG_SYN_OP_DOT_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_DOT_ANYCHAR /;" d -ONIG_SYN_OP_DOT_ANYCHAR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_DOT_ANYCHAR /;" d -ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF /;" d -ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF /;" d -ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_ASTERISK_ZERO_INF /;" d -ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR /;" d -ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR /;" d -ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR /;" d -ONIG_SYN_OP_ESC_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_BRACE_INTERVAL /;" d -ONIG_SYN_OP_ESC_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_BRACE_INTERVAL /;" d -ONIG_SYN_OP_ESC_BRACE_INTERVAL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_BRACE_INTERVAL /;" d -ONIG_SYN_OP_ESC_B_WORD_BOUND native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_B_WORD_BOUND /;" d -ONIG_SYN_OP_ESC_B_WORD_BOUND native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_B_WORD_BOUND /;" d -ONIG_SYN_OP_ESC_B_WORD_BOUND native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_B_WORD_BOUND /;" d -ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR /;" d -ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR /;" d -ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR /;" d -ONIG_SYN_OP_ESC_CONTROL_CHARS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CONTROL_CHARS /;" d -ONIG_SYN_OP_ESC_CONTROL_CHARS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CONTROL_CHARS /;" d -ONIG_SYN_OP_ESC_CONTROL_CHARS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_CONTROL_CHARS /;" d -ONIG_SYN_OP_ESC_C_CONTROL native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_C_CONTROL /;" d -ONIG_SYN_OP_ESC_C_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_C_CONTROL /;" d -ONIG_SYN_OP_ESC_C_CONTROL native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_C_CONTROL /;" d -ONIG_SYN_OP_ESC_D_DIGIT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_D_DIGIT /;" d -ONIG_SYN_OP_ESC_D_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_D_DIGIT /;" d -ONIG_SYN_OP_ESC_D_DIGIT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_D_DIGIT /;" d -ONIG_SYN_OP_ESC_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP /;" d -ONIG_SYN_OP_ESC_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP /;" d -ONIG_SYN_OP_ESC_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LPAREN_SUBEXP /;" d -ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END /;" d -ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END /;" d -ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END /;" d -ONIG_SYN_OP_ESC_OCTAL3 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_OCTAL3 /;" d -ONIG_SYN_OP_ESC_OCTAL3 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_OCTAL3 /;" d -ONIG_SYN_OP_ESC_OCTAL3 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_OCTAL3 /;" d -ONIG_SYN_OP_ESC_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_PLUS_ONE_INF /;" d -ONIG_SYN_OP_ESC_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_PLUS_ONE_INF /;" d -ONIG_SYN_OP_ESC_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_PLUS_ONE_INF /;" d -ONIG_SYN_OP_ESC_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE /;" d -ONIG_SYN_OP_ESC_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE /;" d -ONIG_SYN_OP_ESC_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_QMARK_ZERO_ONE /;" d -ONIG_SYN_OP_ESC_S_WHITE_SPACE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_S_WHITE_SPACE /;" d -ONIG_SYN_OP_ESC_S_WHITE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_S_WHITE_SPACE /;" d -ONIG_SYN_OP_ESC_S_WHITE_SPACE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_S_WHITE_SPACE /;" d -ONIG_SYN_OP_ESC_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_VBAR_ALT /;" d -ONIG_SYN_OP_ESC_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_VBAR_ALT /;" d -ONIG_SYN_OP_ESC_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_VBAR_ALT /;" d -ONIG_SYN_OP_ESC_W_WORD native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_W_WORD /;" d -ONIG_SYN_OP_ESC_W_WORD native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_W_WORD /;" d -ONIG_SYN_OP_ESC_W_WORD native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_W_WORD /;" d -ONIG_SYN_OP_ESC_X_BRACE_HEX8 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_BRACE_HEX8 /;" d -ONIG_SYN_OP_ESC_X_BRACE_HEX8 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_BRACE_HEX8 /;" d -ONIG_SYN_OP_ESC_X_BRACE_HEX8 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_BRACE_HEX8 /;" d -ONIG_SYN_OP_ESC_X_HEX2 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_HEX2 /;" d -ONIG_SYN_OP_ESC_X_HEX2 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_HEX2 /;" d -ONIG_SYN_OP_ESC_X_HEX2 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_ESC_X_HEX2 /;" d -ONIG_SYN_OP_LINE_ANCHOR native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_LINE_ANCHOR /;" d -ONIG_SYN_OP_LINE_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_LINE_ANCHOR /;" d -ONIG_SYN_OP_LINE_ANCHOR native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_LINE_ANCHOR /;" d -ONIG_SYN_OP_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_LPAREN_SUBEXP /;" d -ONIG_SYN_OP_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_LPAREN_SUBEXP /;" d -ONIG_SYN_OP_LPAREN_SUBEXP native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_LPAREN_SUBEXP /;" d -ONIG_SYN_OP_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_PLUS_ONE_INF /;" d -ONIG_SYN_OP_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_PLUS_ONE_INF /;" d -ONIG_SYN_OP_PLUS_ONE_INF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_PLUS_ONE_INF /;" d -ONIG_SYN_OP_POSIX_BRACKET native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_POSIX_BRACKET /;" d -ONIG_SYN_OP_POSIX_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_POSIX_BRACKET /;" d -ONIG_SYN_OP_POSIX_BRACKET native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_POSIX_BRACKET /;" d -ONIG_SYN_OP_QMARK_NON_GREEDY native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_NON_GREEDY /;" d -ONIG_SYN_OP_QMARK_NON_GREEDY native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_NON_GREEDY /;" d -ONIG_SYN_OP_QMARK_NON_GREEDY native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_NON_GREEDY /;" d -ONIG_SYN_OP_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_ZERO_ONE /;" d -ONIG_SYN_OP_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_ZERO_ONE /;" d -ONIG_SYN_OP_QMARK_ZERO_ONE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_QMARK_ZERO_ONE /;" d -ONIG_SYN_OP_VARIABLE_META_CHARACTERS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS /;" d -ONIG_SYN_OP_VARIABLE_META_CHARACTERS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS /;" d -ONIG_SYN_OP_VARIABLE_META_CHARACTERS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_VARIABLE_META_CHARACTERS /;" d -ONIG_SYN_OP_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_OP_VBAR_ALT /;" d -ONIG_SYN_OP_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_OP_VBAR_ALT /;" d -ONIG_SYN_OP_VBAR_ALT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_OP_VBAR_ALT /;" d -ONIG_SYN_STRICT_CHECK_BACKREF native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_STRICT_CHECK_BACKREF /;" d -ONIG_SYN_STRICT_CHECK_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_STRICT_CHECK_BACKREF /;" d -ONIG_SYN_STRICT_CHECK_BACKREF native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_STRICT_CHECK_BACKREF /;" d -ONIG_SYN_WARN_CC_OP_NOT_ESCAPED native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED /;" d -ONIG_SYN_WARN_CC_OP_NOT_ESCAPED native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED /;" d -ONIG_SYN_WARN_CC_OP_NOT_ESCAPED native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_WARN_CC_OP_NOT_ESCAPED /;" d -ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT /;" d -ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT /;" d -ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_SYN_WARN_REDUNDANT_NESTED_REPEAT /;" d -ONIG_TRAVERSE_CALLBACK_AT_BOTH native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_BOTH /;" d -ONIG_TRAVERSE_CALLBACK_AT_BOTH native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_BOTH /;" d -ONIG_TRAVERSE_CALLBACK_AT_BOTH native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_BOTH /;" d -ONIG_TRAVERSE_CALLBACK_AT_FIRST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_FIRST /;" d -ONIG_TRAVERSE_CALLBACK_AT_FIRST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_FIRST /;" d -ONIG_TRAVERSE_CALLBACK_AT_FIRST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_FIRST /;" d -ONIG_TRAVERSE_CALLBACK_AT_LAST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_LAST /;" d -ONIG_TRAVERSE_CALLBACK_AT_LAST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_LAST /;" d -ONIG_TRAVERSE_CALLBACK_AT_LAST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define ONIG_TRAVERSE_CALLBACK_AT_LAST /;" d -OVERRIDE native/atom_cef_client.h /^ CefRefPtr message) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ EventFlags event_flags) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ CefRefPtr model) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ int line) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ const CefString& title) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ const CefString& failedUrl) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ CefEventHandle os_event) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ virtual void OnAfterCreated(CefRefPtr browser) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_client.h /^ virtual void OnBeforeClose(CefRefPtr browser) OVERRIDE;$/;" m class:AtomCefClient -OVERRIDE native/atom_cef_render_process_handler.h /^ CefRefPtr message) OVERRIDE;$/;" m class:AtomCefRenderProcessHandler -OVERRIDE native/atom_cef_render_process_handler.h /^ CefRefPtr context) OVERRIDE;$/;" m class:AtomCefRenderProcessHandler -OVERRIDE native/atom_cef_render_process_handler.h /^ CefRefPtr context) OVERRIDE;$/;" m class:AtomCefRenderProcessHandler -OVERRIDE native/atom_cef_render_process_handler.h /^ virtual void OnWebKitInitialized() OVERRIDE;$/;" m class:AtomCefRenderProcessHandler -OVERRIDE native/linux/client_handler.h /^ OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ CefBrowserSettings& settings) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame, CefRefPtr node) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame, const CefString& url) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ CefRefPtr frame, int httpStatusCode) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ bool canGoForward) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ const CefString& failedUrl, CefString& errorText) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ const CefString& message, const CefString& source, int line) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ const CefString& title) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ virtual bool DoClose(CefRefPtr browser) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ virtual void OnAfterCreated(CefRefPtr browser) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/linux/client_handler.h /^ virtual void OnBeforeClose(CefRefPtr browser) OVERRIDE;$/;" m class:ClientHandler -OVERRIDE native/v8_extensions/atom.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Atom -OVERRIDE native/v8_extensions/git.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Git -OVERRIDE native/v8_extensions/native.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Native -OVERRIDE native/v8_extensions/onig_reg_exp.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::OnigRegExp -OVERRIDE native/v8_extensions/onig_scanner.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::OnigScanner -OVERRIDE native/v8_extensions/tags.h /^ CefString& exception) OVERRIDE;$/;" m class:v8_extensions::Tags -OnAddressChange native/atom_cef_client_gtk.cpp /^void ClientHandler::OnAddressChange(CefRefPtr browser,$/;" f class:ClientHandler -OnAddressChange native/atom_cef_client_win.mm /^void ClientHandler::OnAddressChange(CefRefPtr browser,$/;" f class:ClientHandler -OnAddressChange native/linux/client_handler.cpp /^void ClientHandler::OnAddressChange(CefRefPtr browser,$/;" f class:ClientHandler -OnAfterCreated native/atom_cef_client.cpp /^void AtomCefClient::OnAfterCreated(CefRefPtr browser) {$/;" f class:AtomCefClient -OnAfterCreated native/linux/client_handler.cpp /^void ClientHandler::OnAfterCreated(CefRefPtr browser) {$/;" f class:ClientHandler -OnBeforeClose native/atom_cef_client.cpp /^void AtomCefClient::OnBeforeClose(CefRefPtr browser) {$/;" f class:AtomCefClient -OnBeforeClose native/linux/client_handler.cpp /^void ClientHandler::OnBeforeClose(CefRefPtr browser) {$/;" f class:ClientHandler -OnBeforeContextMenu native/atom_cef_client.cpp /^void AtomCefClient::OnBeforeContextMenu($/;" f class:AtomCefClient -OnBeforePopup native/linux/client_handler.cpp /^bool ClientHandler::OnBeforePopup(CefRefPtr parentBrowser,$/;" f class:ClientHandler -OnBeforeUnloadDialog native/atom_cef_client.h /^ virtual bool OnBeforeUnloadDialog(CefRefPtr browser,$/;" f class:AtomCefClient -OnConsoleMessage native/atom_cef_client.cpp /^bool AtomCefClient::OnConsoleMessage(CefRefPtr browser,$/;" f class:AtomCefClient -OnConsoleMessage native/linux/client_handler.cpp /^bool ClientHandler::OnConsoleMessage(CefRefPtr browser,$/;" f class:ClientHandler -OnContextCreated native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::OnContextCreated(CefRefPtr browser,$/;" f class:AtomCefRenderProcessHandler -OnContextCreated native/linux/atom_cef_render_process_handler.cpp /^void AtomCefRenderProcessHandler::OnContextCreated($/;" f class:AtomCefRenderProcessHandler -OnContextMenuCommand native/atom_cef_client.cpp /^bool AtomCefClient::OnContextMenuCommand($/;" f class:AtomCefClient -OnContextReleased native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::OnContextReleased(CefRefPtr browser,$/;" f class:AtomCefRenderProcessHandler -OnFocusedNodeChanged native/linux/client_handler.cpp /^void ClientHandler::OnFocusedNodeChanged(CefRefPtr browser,$/;" f class:ClientHandler -OnKeyEvent native/atom_cef_client.cpp /^bool AtomCefClient::OnKeyEvent(CefRefPtr browser,$/;" f class:AtomCefClient -OnLoadEnd native/linux/client_handler.cpp /^void ClientHandler::OnLoadEnd(CefRefPtr browser,$/;" f class:ClientHandler -OnLoadError native/atom_cef_client.cpp /^void AtomCefClient::OnLoadError(CefRefPtr browser,$/;" f class:AtomCefClient -OnLoadError native/linux/client_handler.cpp /^bool ClientHandler::OnLoadError(CefRefPtr browser,$/;" f class:ClientHandler -OnLoadStart native/linux/client_handler.cpp /^void ClientHandler::OnLoadStart(CefRefPtr browser,$/;" f class:ClientHandler -OnNavStateChange native/linux/client_handler.cpp /^void ClientHandler::OnNavStateChange(CefRefPtr browser,$/;" f class:ClientHandler -OnProcessMessageReceived native/atom_cef_client.cpp /^bool AtomCefClient::OnProcessMessageReceived(CefRefPtr browser,$/;" f class:AtomCefClient -OnProcessMessageReceived native/atom_cef_render_process_handler.mm /^bool AtomCefRenderProcessHandler::OnProcessMessageReceived(CefRefPtr browser,$/;" f class:AtomCefRenderProcessHandler -OnProcessMessageReceived native/linux/atom_cef_render_process_handler.cpp /^bool AtomCefRenderProcessHandler::OnProcessMessageReceived($/;" f class:AtomCefRenderProcessHandler -OnProcessMessageReceived native/linux/client_handler.cpp /^bool ClientHandler::OnProcessMessageReceived(CefRefPtr browser,$/;" f class:ClientHandler -OnTitleChange native/atom_cef_client_gtk.cpp /^void ClientHandler::OnTitleChange(CefRefPtr browser,$/;" f class:ClientHandler -OnTitleChange native/atom_cef_client_mac.mm /^void AtomCefClient::OnTitleChange(CefRefPtr browser, const CefString& title) {$/;" f class:AtomCefClient -OnTitleChange native/atom_cef_client_win.mm /^void ClientHandler::OnTitleChange(CefRefPtr browser,$/;" f class:ClientHandler -OnTitleChange native/linux/client_handler.cpp /^void ClientHandler::OnTitleChange(CefRefPtr browser,$/;" f class:ClientHandler -OnWebKitInitialized native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::OnWebKitInitialized() {$/;" f class:AtomCefRenderProcessHandler -OnWebKitInitialized native/linux/atom_cef_render_process_handler.cpp /^void AtomCefRenderProcessHandler::OnWebKitInitialized() {$/;" f class:AtomCefRenderProcessHandler -OnigApplyAllCaseFoldFunc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);$/;" t -OnigApplyAllCaseFoldFunc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);$/;" t -OnigApplyAllCaseFoldFunc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef int (*OnigApplyAllCaseFoldFunc)(OnigCodePoint from, OnigCodePoint* to, int to_len, void* arg);$/;" t -OnigCaptureTreeNode native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigCaptureTreeNode;$/;" t typeref:struct:OnigCaptureTreeNodeStruct -OnigCaptureTreeNode native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigCaptureTreeNode;$/;" t typeref:struct:OnigCaptureTreeNodeStruct -OnigCaptureTreeNode native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigCaptureTreeNode;$/;" t typeref:struct:OnigCaptureTreeNodeStruct -OnigCaptureTreeNodeStruct native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct OnigCaptureTreeNodeStruct {$/;" s -OnigCaptureTreeNodeStruct native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct OnigCaptureTreeNodeStruct {$/;" s -OnigCaptureTreeNodeStruct native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct OnigCaptureTreeNodeStruct {$/;" s -OnigCaseFoldCodeItem native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigCaseFoldCodeItem;$/;" t typeref:struct:__anon2 -OnigCaseFoldCodeItem native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigCaseFoldCodeItem;$/;" t typeref:struct:__anon9 -OnigCaseFoldCodeItem native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigCaseFoldCodeItem;$/;" t typeref:struct:__anon16 -OnigCaseFoldType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigCaseFoldType; \/* case fold flag *\/$/;" t -OnigCaseFoldType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigCaseFoldType; \/* case fold flag *\/$/;" t -OnigCaseFoldType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigCaseFoldType; \/* case fold flag *\/$/;" t -OnigCodePoint native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned long OnigCodePoint;$/;" t -OnigCodePoint native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned long OnigCodePoint;$/;" t -OnigCodePoint native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned long OnigCodePoint;$/;" t -OnigCompileInfo native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigCompileInfo;$/;" t typeref:struct:__anon7 -OnigCompileInfo native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigCompileInfo;$/;" t typeref:struct:__anon14 -OnigCompileInfo native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigCompileInfo;$/;" t typeref:struct:__anon21 -OnigCtype native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigCtype;$/;" t -OnigCtype native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigCtype;$/;" t -OnigCtype native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigCtype;$/;" t -OnigDefaultCaseFoldFlag native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;$/;" v -OnigDefaultCaseFoldFlag native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;$/;" v -OnigDefaultCaseFoldFlag native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigCaseFoldType OnigDefaultCaseFoldFlag;$/;" v -OnigDefaultSyntax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;$/;" v -OnigDefaultSyntax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;$/;" v -OnigDefaultSyntax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType* OnigDefaultSyntax;$/;" v -OnigDistance native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigDistance;$/;" t -OnigDistance native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigDistance;$/;" t -OnigDistance native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigDistance;$/;" t -OnigEncoding native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef OnigEncodingType* OnigEncoding;$/;" t -OnigEncoding native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef OnigEncodingType* OnigEncoding;$/;" t -OnigEncoding native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef OnigEncodingType* OnigEncoding;$/;" t -OnigEncodingASCII native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingASCII;$/;" v -OnigEncodingASCII native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingASCII;$/;" v -OnigEncodingASCII native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingASCII;$/;" v -OnigEncodingType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigEncodingType;$/;" t typeref:struct:OnigEncodingTypeST -OnigEncodingType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigEncodingType;$/;" t typeref:struct:OnigEncodingTypeST -OnigEncodingType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigEncodingType;$/;" t typeref:struct:OnigEncodingTypeST -OnigEncodingTypeST native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct OnigEncodingTypeST {$/;" s -OnigEncodingTypeST native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct OnigEncodingTypeST {$/;" s -OnigEncodingTypeST native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct OnigEncodingTypeST {$/;" s -OnigEncodingUTF16_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;$/;" v -OnigEncodingUTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;$/;" v -OnigEncodingUTF16_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_BE;$/;" v -OnigEncodingUTF16_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;$/;" v -OnigEncodingUTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;$/;" v -OnigEncodingUTF16_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF16_LE;$/;" v -OnigEncodingUTF32_BE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;$/;" v -OnigEncodingUTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;$/;" v -OnigEncodingUTF32_BE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_BE;$/;" v -OnigEncodingUTF32_LE native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;$/;" v -OnigEncodingUTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;$/;" v -OnigEncodingUTF32_LE native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigEncodingType OnigEncodingUTF32_LE;$/;" v -OnigErrorInfo native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigErrorInfo;$/;" t typeref:struct:__anon5 -OnigErrorInfo native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigErrorInfo;$/;" t typeref:struct:__anon12 -OnigErrorInfo native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigErrorInfo;$/;" t typeref:struct:__anon19 -OnigMetaCharTableType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigMetaCharTableType;$/;" t typeref:struct:__anon3 -OnigMetaCharTableType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigMetaCharTableType;$/;" t typeref:struct:__anon10 -OnigMetaCharTableType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigMetaCharTableType;$/;" t typeref:struct:__anon17 -OnigOption native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^} OnigOption;$/;" t typeref:enum:__anon1 -OnigOption native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^} OnigOption;$/;" t typeref:enum:__anon8 -OnigOption native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^} OnigOption;$/;" t typeref:enum:__anon15 -OnigOptionCaptureGroup native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionCaptureGroup = ONIG_OPTION_CAPTURE_GROUP,$/;" e enum:__anon1 -OnigOptionCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionCaptureGroup = ONIG_OPTION_CAPTURE_GROUP,$/;" e enum:__anon8 -OnigOptionCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionCaptureGroup = ONIG_OPTION_CAPTURE_GROUP,$/;" e enum:__anon15 -OnigOptionDontCaptureGroup native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionDontCaptureGroup = ONIG_OPTION_DONT_CAPTURE_GROUP,$/;" e enum:__anon1 -OnigOptionDontCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionDontCaptureGroup = ONIG_OPTION_DONT_CAPTURE_GROUP,$/;" e enum:__anon8 -OnigOptionDontCaptureGroup native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionDontCaptureGroup = ONIG_OPTION_DONT_CAPTURE_GROUP,$/;" e enum:__anon15 -OnigOptionExtend native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionExtend = ONIG_OPTION_EXTEND,$/;" e enum:__anon1 -OnigOptionExtend native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionExtend = ONIG_OPTION_EXTEND,$/;" e enum:__anon8 -OnigOptionExtend native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionExtend = ONIG_OPTION_EXTEND,$/;" e enum:__anon15 -OnigOptionFindLongest native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionFindLongest = ONIG_OPTION_FIND_LONGEST,$/;" e enum:__anon1 -OnigOptionFindLongest native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionFindLongest = ONIG_OPTION_FIND_LONGEST,$/;" e enum:__anon8 -OnigOptionFindLongest native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionFindLongest = ONIG_OPTION_FIND_LONGEST,$/;" e enum:__anon15 -OnigOptionFindNotEmpty native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionFindNotEmpty = ONIG_OPTION_FIND_NOT_EMPTY,$/;" e enum:__anon1 -OnigOptionFindNotEmpty native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionFindNotEmpty = ONIG_OPTION_FIND_NOT_EMPTY,$/;" e enum:__anon8 -OnigOptionFindNotEmpty native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionFindNotEmpty = ONIG_OPTION_FIND_NOT_EMPTY,$/;" e enum:__anon15 -OnigOptionIgnorecase native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionIgnorecase = ONIG_OPTION_IGNORECASE,$/;" e enum:__anon1 -OnigOptionIgnorecase native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionIgnorecase = ONIG_OPTION_IGNORECASE,$/;" e enum:__anon8 -OnigOptionIgnorecase native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionIgnorecase = ONIG_OPTION_IGNORECASE,$/;" e enum:__anon15 -OnigOptionMaxbit native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionMaxbit = ONIG_OPTION_MAXBIT$/;" e enum:__anon1 -OnigOptionMaxbit native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionMaxbit = ONIG_OPTION_MAXBIT$/;" e enum:__anon8 -OnigOptionMaxbit native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionMaxbit = ONIG_OPTION_MAXBIT$/;" e enum:__anon15 -OnigOptionMultiline native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionMultiline = ONIG_OPTION_MULTILINE,$/;" e enum:__anon1 -OnigOptionMultiline native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionMultiline = ONIG_OPTION_MULTILINE,$/;" e enum:__anon8 -OnigOptionMultiline native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionMultiline = ONIG_OPTION_MULTILINE,$/;" e enum:__anon15 -OnigOptionNegateSingleLine native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNegateSingleLine = ONIG_OPTION_NEGATE_SINGLELINE,$/;" e enum:__anon1 -OnigOptionNegateSingleLine native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNegateSingleLine = ONIG_OPTION_NEGATE_SINGLELINE,$/;" e enum:__anon8 -OnigOptionNegateSingleLine native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNegateSingleLine = ONIG_OPTION_NEGATE_SINGLELINE,$/;" e enum:__anon15 -OnigOptionNone native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNone = ONIG_OPTION_NONE,$/;" e enum:__anon1 -OnigOptionNone native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNone = ONIG_OPTION_NONE,$/;" e enum:__anon8 -OnigOptionNone native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNone = ONIG_OPTION_NONE,$/;" e enum:__anon15 -OnigOptionNotbol native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNotbol = ONIG_OPTION_NOTBOL,$/;" e enum:__anon1 -OnigOptionNotbol native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNotbol = ONIG_OPTION_NOTBOL,$/;" e enum:__anon8 -OnigOptionNotbol native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNotbol = ONIG_OPTION_NOTBOL,$/;" e enum:__anon15 -OnigOptionNoteol native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionNoteol = ONIG_OPTION_NOTEOL,$/;" e enum:__anon1 -OnigOptionNoteol native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionNoteol = ONIG_OPTION_NOTEOL,$/;" e enum:__anon8 -OnigOptionNoteol native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionNoteol = ONIG_OPTION_NOTEOL,$/;" e enum:__anon15 -OnigOptionPosixRegion native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionPosixRegion = ONIG_OPTION_POSIX_REGION,$/;" e enum:__anon1 -OnigOptionPosixRegion native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionPosixRegion = ONIG_OPTION_POSIX_REGION,$/;" e enum:__anon8 -OnigOptionPosixRegion native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionPosixRegion = ONIG_OPTION_POSIX_REGION,$/;" e enum:__anon15 -OnigOptionSingleline native/frameworks/CocoaOniguruma.framework/Headers/OnigRegexp.h /^ OnigOptionSingleline = ONIG_OPTION_SINGLELINE,$/;" e enum:__anon1 -OnigOptionSingleline native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/OnigRegexp.h /^ OnigOptionSingleline = ONIG_OPTION_SINGLELINE,$/;" e enum:__anon8 -OnigOptionSingleline native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/OnigRegexp.h /^ OnigOptionSingleline = ONIG_OPTION_SINGLELINE,$/;" e enum:__anon15 -OnigOptionType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned int OnigOptionType;$/;" t -OnigOptionType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned int OnigOptionType;$/;" t -OnigOptionType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned int OnigOptionType;$/;" t -OnigRegExp native/v8_extensions/onig_reg_exp.h /^class OnigRegExp : public CefV8Handler {$/;" c namespace:v8_extensions -OnigRegExp native/v8_extensions/onig_reg_exp.js /^ function OnigRegExp(source) {$/;" f -OnigRegExp native/v8_extensions/onig_reg_exp.js /^ }$/;" c -OnigRegExp native/v8_extensions/onig_reg_exp.mm /^OnigRegExp::OnigRegExp() : CefV8Handler() {$/;" f class:v8_extensions::OnigRegExp -OnigRegExp native/v8_extensions/onig_reg_exp_linux.cpp /^OnigRegExp::OnigRegExp() :$/;" f class:v8_extensions::OnigRegExp -OnigRegExp.search native/v8_extensions/onig_reg_exp.js /^ OnigRegExp.prototype.search = search;$/;" m -OnigRegExp.test native/v8_extensions/onig_reg_exp.js /^ OnigRegExp.prototype.test = test;$/;" m -OnigRegExpUserData native/v8_extensions/onig_reg_exp.mm /^ OnigRegExpUserData(CefRefPtr source) {$/;" f class:v8_extensions::OnigRegExpUserData -OnigRegExpUserData native/v8_extensions/onig_reg_exp.mm /^class OnigRegExpUserData : public CefBase {$/;" c namespace:v8_extensions file: -OnigRegex native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef OnigRegexType* OnigRegex;$/;" t -OnigRegex native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef OnigRegexType* OnigRegex;$/;" t -OnigRegex native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef OnigRegexType* OnigRegex;$/;" t -OnigRegexType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigRegexType;$/;" t typeref:struct:re_pattern_buffer -OnigRegexType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigRegexType;$/;" t typeref:struct:re_pattern_buffer -OnigRegexType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigRegexType;$/;" t typeref:struct:re_pattern_buffer -OnigRegexpUserData native/v8_extensions/onig_reg_exp_linux.cpp /^ OnigRegexpUserData(CefRefPtr source) {$/;" f class:v8_extensions::OnigRegexpUserData -OnigRegexpUserData native/v8_extensions/onig_reg_exp_linux.cpp /^class OnigRegexpUserData: public CefBase {$/;" c namespace:v8_extensions file: -OnigRegion native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct re_registers OnigRegion;$/;" t typeref:struct:re_registers -OnigRegion native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct re_registers OnigRegion;$/;" t typeref:struct:re_registers -OnigRegion native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct re_registers OnigRegion;$/;" t typeref:struct:re_registers -OnigRepeatRange native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigRepeatRange;$/;" t typeref:struct:__anon6 -OnigRepeatRange native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigRepeatRange;$/;" t typeref:struct:__anon13 -OnigRepeatRange native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigRepeatRange;$/;" t typeref:struct:__anon20 -OnigScanner native/v8_extensions/onig_scanner.h /^ class OnigScanner : public CefV8Handler {$/;" c namespace:v8_extensions -OnigScanner native/v8_extensions/onig_scanner.js /^ function OnigScanner(sources) {$/;" f -OnigScanner native/v8_extensions/onig_scanner.js /^ }$/;" c -OnigScanner native/v8_extensions/onig_scanner.mm /^OnigScanner::OnigScanner() : CefV8Handler() {$/;" f class:v8_extensions::OnigScanner -OnigScanner.buildScanner native/v8_extensions/onig_scanner.js /^ OnigScanner.prototype.buildScanner = buildScanner;$/;" m -OnigScanner.findNextMatch native/v8_extensions/onig_scanner.js /^ OnigScanner.prototype.findNextMatch = findNextMatch;$/;" m -OnigScannerUserData native/v8_extensions/onig_scanner.mm /^ OnigScannerUserData(CefRefPtr sources) {$/;" f class:v8_extensions::OnigScannerUserData -OnigScannerUserData native/v8_extensions/onig_scanner.mm /^class OnigScannerUserData : public CefBase {$/;" c namespace:v8_extensions file: -OnigSyntaxASIS native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;$/;" v -OnigSyntaxASIS native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;$/;" v -OnigSyntaxASIS native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxASIS;$/;" v -OnigSyntaxEmacs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;$/;" v -OnigSyntaxEmacs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;$/;" v -OnigSyntaxEmacs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxEmacs;$/;" v -OnigSyntaxGnuRegex native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;$/;" v -OnigSyntaxGnuRegex native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;$/;" v -OnigSyntaxGnuRegex native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGnuRegex;$/;" v -OnigSyntaxGrep native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;$/;" v -OnigSyntaxGrep native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;$/;" v -OnigSyntaxGrep native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxGrep;$/;" v -OnigSyntaxJava native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;$/;" v -OnigSyntaxJava native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;$/;" v -OnigSyntaxJava native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxJava;$/;" v -OnigSyntaxPerl native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;$/;" v -OnigSyntaxPerl native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;$/;" v -OnigSyntaxPerl native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl;$/;" v -OnigSyntaxPerl_NG native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl_NG;$/;" v -OnigSyntaxPerl_NG native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl_NG;$/;" v -OnigSyntaxPerl_NG native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPerl_NG;$/;" v -OnigSyntaxPosixBasic native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;$/;" v -OnigSyntaxPosixBasic native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;$/;" v -OnigSyntaxPosixBasic native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixBasic;$/;" v -OnigSyntaxPosixExtended native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;$/;" v -OnigSyntaxPosixExtended native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;$/;" v -OnigSyntaxPosixExtended native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxPosixExtended;$/;" v -OnigSyntaxRuby native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;$/;" v -OnigSyntaxRuby native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;$/;" v -OnigSyntaxRuby native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ONIG_EXTERN OnigSyntaxType OnigSyntaxRuby;$/;" v -OnigSyntaxType native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^} OnigSyntaxType;$/;" t typeref:struct:__anon4 -OnigSyntaxType native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^} OnigSyntaxType;$/;" t typeref:struct:__anon11 -OnigSyntaxType native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^} OnigSyntaxType;$/;" t typeref:struct:__anon18 -OnigUChar native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef unsigned char OnigUChar;$/;" t -OnigUChar native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef unsigned char OnigUChar;$/;" t -OnigUChar native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef unsigned char OnigUChar;$/;" t -OnigWarnFunc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef void (*OnigWarnFunc) P_((const char* s));$/;" t -OnigWarnFunc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef void (*OnigWarnFunc) P_((const char* s));$/;" t -OnigWarnFunc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef void (*OnigWarnFunc) P_((const char* s));$/;" t -Open native/atom_cef_client_mac.mm /^void AtomCefClient::Open() {$/;" f class:AtomCefClient -Open native/atom_cef_client_mac.mm /^void AtomCefClient::Open(std::string path) {$/;" f class:AtomCefClient -Open native/v8_extensions/native_linux.cpp /^void NativeHandler::Open(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -OpenDialog native/v8_extensions/native_linux.cpp /^void NativeHandler::OpenDialog(const CefString& name,$/;" f class:v8_extensions::NativeHandler -OpenUnstable native/atom_cef_client_mac.mm /^void AtomCefClient::OpenUnstable() {$/;" f class:AtomCefClient -OpenUnstable native/atom_cef_client_mac.mm /^void AtomCefClient::OpenUnstable(std::string path) {$/;" f class:AtomCefClient -PV_ native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define PV_(/;" d -PV_ native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define PV_(/;" d -PV_ native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define PV_(/;" d -P_ native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^# define P_(/;" d -P_ native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^# define P_(/;" d -P_ native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^# define P_(/;" d -PathToOpen native/linux/atom_app.cpp /^string PathToOpen() {$/;" f -PluginInfoActivated native/atom_gtk.cpp /^gboolean PluginInfoActivated(GtkWidget* widget) {$/;" f -PopupWindowActivated native/atom_gtk.cpp /^gboolean PopupWindowActivated(GtkWidget* widget) {$/;" f -ProgramName native/v8_extensions/readtags.c /^static const char *ProgramName;$/;" v file: -PseudoTagPrefix native/v8_extensions/readtags.c /^const char *const PseudoTagPrefix = "!_";$/;" v -READTAGS_H native/v8_extensions/readtags.h /^#define READTAGS_H$/;" d -REQUIRE_FILE_THREAD native/atom_cef_client.cpp /^#define REQUIRE_FILE_THREAD(/;" d file: -REQUIRE_FILE_THREAD native/linux/util.h /^#define REQUIRE_FILE_THREAD(/;" d -REQUIRE_IO_THREAD native/atom_cef_client.cpp /^#define REQUIRE_IO_THREAD(/;" d file: -REQUIRE_IO_THREAD native/linux/util.h /^#define REQUIRE_IO_THREAD(/;" d -REQUIRE_UI_THREAD native/atom_cef_client.cpp /^#define REQUIRE_UI_THREAD(/;" d file: -REQUIRE_UI_THREAD native/linux/util.h /^#define REQUIRE_UI_THREAD(/;" d -Read native/v8_extensions/native_linux.cpp /^void NativeHandler::Read(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -ReadFromPasteboard native/v8_extensions/native_linux.cpp /^void NativeHandler::ReadFromPasteboard(const CefString& name,$/;" f class:v8_extensions::NativeHandler -Reload native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::Reload(CefRefPtr browser) {$/;" f class:AtomCefRenderProcessHandler -Reload native/linux/atom_cef_render_process_handler.cpp /^void AtomCefRenderProcessHandler::Reload(CefRefPtr browser) {$/;" f class:AtomCefRenderProcessHandler -ReloadButtonClicked native/atom_gtk.cpp /^void ReloadButtonClicked(GtkButton* button) {$/;" f -Remove native/v8_extensions/native_linux.cpp /^void NativeHandler::Remove(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -RequestActivated native/atom_gtk.cpp /^gboolean RequestActivated(GtkWidget* widget) {$/;" f -Save native/atom_cef_client.cpp /^bool AtomCefClient::Save(const std::string& path, const std::string& data) {$/;" f class:AtomCefClient -SchemeHandlerActivated native/atom_gtk.cpp /^gboolean SchemeHandlerActivated(GtkWidget* widget) {$/;" f -Search native/v8_extensions/onig_reg_exp.mm /^ CefRefPtr Search(CefRefPtr string, CefRefPtr index) {$/;" f class:v8_extensions::OnigRegExpUserData -Search native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr Search(CefRefPtr argument,$/;" f class:v8_extensions::OnigRegexpUserData -SearchRegion native/v8_extensions/onig_reg_exp_linux.cpp /^ OnigRegion* SearchRegion(string input, int index) {$/;" f class:v8_extensions::OnigRegexpUserData -SendNotification native/atom_cef_client_gtk.cpp /^void ClientHandler::SendNotification(NotificationType type) {$/;" f class:ClientHandler -SendNotification native/atom_cef_client_win.mm /^void ClientHandler::SendNotification(NotificationType type) {$/;" f class:ClientHandler -SendNotification native/linux/client_handler.cpp /^void ClientHandler::SendNotification(NotificationType type) {$/;" f class:ClientHandler -SetLoading native/atom_cef_client_gtk.cpp /^void ClientHandler::SetLoading(bool isLoading) {$/;" f class:ClientHandler -SetLoading native/atom_cef_client_win.mm /^void ClientHandler::SetLoading(bool isLoading) {$/;" f class:ClientHandler -SetMainHwnd native/linux/client_handler.cpp /^void ClientHandler::SetMainHwnd(CefWindowHandle hwnd) {$/;" f class:ClientHandler -SetNavState native/atom_cef_client_gtk.cpp /^void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) {$/;" f class:ClientHandler -SetNavState native/atom_cef_client_win.mm /^void ClientHandler::SetNavState(bool canGoBack, bool canGoForward) {$/;" f class:ClientHandler -SetWindow native/linux/client_handler.cpp /^void ClientHandler::SetWindow(GtkWidget* widget) {$/;" f class:ClientHandler -ShowDevTools native/atom_cef_client_mac.mm /^void AtomCefClient::ShowDevTools(CefRefPtr browser) {$/;" f class:AtomCefClient -ShowSaveDialog native/atom_cef_client_mac.mm /^void AtomCefClient::ShowSaveDialog(int replyId, CefRefPtr browser) {$/;" f class:AtomCefClient -Shutdown native/atom_cef_render_process_handler.mm /^void AtomCefRenderProcessHandler::Shutdown(CefRefPtr browser) {$/;" f class:AtomCefRenderProcessHandler -SortMethod native/v8_extensions/readtags.c /^static sortType SortMethod;$/;" v file: -SortOverride native/v8_extensions/readtags.c /^static int SortOverride;$/;" v file: -StopButtonClicked native/atom_gtk.cpp /^void StopButtonClicked(GtkButton* button) {$/;" f -TAB native/v8_extensions/readtags.c /^#define TAB /;" d file: -TAG_FOLDSORTED native/v8_extensions/readtags.h /^ TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED$/;" e enum:__anon26 -TAG_FULLMATCH native/v8_extensions/readtags.h /^#define TAG_FULLMATCH /;" d -TAG_IGNORECASE native/v8_extensions/readtags.h /^#define TAG_IGNORECASE /;" d -TAG_OBSERVECASE native/v8_extensions/readtags.h /^#define TAG_OBSERVECASE /;" d -TAG_PARTIALMATCH native/v8_extensions/readtags.h /^#define TAG_PARTIALMATCH /;" d -TAG_SORTED native/v8_extensions/readtags.h /^ TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED$/;" e enum:__anon26 -TAG_UNSORTED native/v8_extensions/readtags.h /^ TAG_UNSORTED, TAG_SORTED, TAG_FOLDSORTED$/;" e enum:__anon26 -TagFailure native/v8_extensions/readtags.h /^typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult;$/;" e enum:__anon27 -TagFileName native/v8_extensions/readtags.c /^static const char *TagFileName = "tags";$/;" v file: -TagSuccess native/v8_extensions/readtags.h /^typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult;$/;" e enum:__anon27 -Tags native/v8_extensions/tags.h /^class Tags : public CefV8Handler {$/;" c namespace:v8_extensions -Tags native/v8_extensions/tags.mm /^Tags::Tags() : CefV8Handler() {$/;" f class:v8_extensions::Tags -TerminationSignalHandler native/atom_gtk.cpp /^void TerminationSignalHandler(int signatl) {$/;" f -TerminationSignalHandler native/linux/atom_app.cpp /^void TerminationSignalHandler(int signatl) {$/;" f -Test native/v8_extensions/onig_reg_exp.mm /^ CefRefPtr Test(CefRefPtr string, CefRefPtr index) {$/;" f class:v8_extensions::OnigRegExpUserData -Test native/v8_extensions/onig_reg_exp_linux.cpp /^ CefRefPtr Test(CefRefPtr argument,$/;" f class:v8_extensions::OnigRegexpUserData -ToggleDevTools native/atom_cef_client_mac.mm /^void AtomCefClient::ToggleDevTools(CefRefPtr browser) {$/;" f class:AtomCefClient -TranslateList native/message_translation.cpp /^void TranslateList(CefRefPtr source, CefRefPtr target) {$/;" f -TranslateList native/message_translation.cpp /^void TranslateList(CefRefPtr source, CefRefPtr target) {$/;" f -TranslateListValue native/message_translation.cpp /^void TranslateListValue(CefRefPtr list, int index, CefRefPtr value) {$/;" f -TranslateListValue native/message_translation.cpp /^void TranslateListValue(CefRefPtr list, int index, CefRefPtr value) {$/;" f -UChar native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define UChar /;" d -UChar native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define UChar /;" d -UChar native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define UChar /;" d -URLBAR_HEIGHT native/atom_win.cpp /^#define URLBAR_HEIGHT /;" d file: -URLEntryActivate native/atom_gtk.cpp /^void URLEntryActivate(GtkEntry* entry) {$/;" f -UTIL_H_ native/linux/util.h /^#define UTIL_H_$/;" d -UnwatchPath native/v8_extensions/native_linux.cpp /^void NativeHandler::UnwatchPath(const CefString& name,$/;" f class:v8_extensions::NativeHandler -Usage native/v8_extensions/readtags.c /^const char *const Usage =$/;" v -WatchPath native/v8_extensions/native_linux.cpp /^void NativeHandler::WatchPath(const CefString& name,$/;" f class:v8_extensions::NativeHandler -WebGLActivated native/atom_gtk.cpp /^gboolean WebGLActivated(GtkWidget* widget) {$/;" f -WndProc native/atom_win.cpp /^LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam,$/;" f -Write native/v8_extensions/native_linux.cpp /^void NativeHandler::Write(const CefString& name, CefRefPtr object,$/;" f class:v8_extensions::NativeHandler -WriteToPasteboard native/v8_extensions/native_linux.cpp /^void NativeHandler::WriteToPasteboard(const CefString& name,$/;" f class:v8_extensions::NativeHandler -XMLHttpRequestActivated native/atom_gtk.cpp /^gboolean XMLHttpRequestActivated(GtkWidget* widget) {$/;" f -ZoomInActivated native/atom_gtk.cpp /^gboolean ZoomInActivated(GtkWidget* widget) {$/;" f -ZoomOutActivated native/atom_gtk.cpp /^gboolean ZoomOutActivated(GtkWidget* widget) {$/;" f -ZoomResetActivated native/atom_gtk.cpp /^gboolean ZoomResetActivated(GtkWidget* widget) {$/;" f -__coffeeCache src/stdlib/require.coffee /^__coffeeCache = (filePath) ->$/;" f -__exists src/stdlib/require.coffee /^__exists = (path) ->$/;" f -__expand src/stdlib/require.coffee /^__expand = (path) ->$/;" f -__isFile src/stdlib/require.coffee /^__isFile = (path) ->$/;" f -__read src/stdlib/require.coffee /^__read = (path) ->$/;" f -absolute src/stdlib/fs.coffee /^ absolute: (path) ->$/;" f -activate src/app/text-mate-theme.coffee /^ activate: ->$/;" f -activate src/extensions/snippets/src/snippets.coffee /^ activate: (@rootView) ->$/;" f -activate src/extensions/strip-trailing-whitespace/src/strip-trailing-whitespace.coffee /^ activate: (rootView) ->$/;" f -activateEditSessionForPath src/app/editor.coffee /^ activateEditSessionForPath: (path) ->$/;" f -activateExtension src/app/root-view.coffee /^ activateExtension: (extension, config) ->$/;" f -activates autocomplete on all existing and future editors (but not on autocomplete's own mini editor) src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "activates autocomplete on all existing and future editors (but not on autocomplete's own mini editor)", ->$/;" f -activates the associated edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "activates the associated edit session", ->$/;" f -active file is still shown as selected in the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "active file is still shown as selected in the tree view", ->$/;" f -activeKeybindings src/app/root-view.coffee /^ activeKeybindings: ->$/;" f -add src/app/point.coffee /^ add: (other) ->$/;" f -add src/app/range.coffee /^ add: (point) ->$/;" f -add src/extensions/tree-view/src/tree-view.coffee /^ add: ->$/;" f -add a file, closes the dialog and selects the file in the tree-view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "add a file, closes the dialog and selects the file in the tree-view", ->$/;" f -addAnchor src/app/buffer.coffee /^ addAnchor: (options) ->$/;" f -addAnchor src/app/edit-session.coffee /^ addAnchor: (options={}) ->$/;" f -addAnchorAtBufferPosition src/app/edit-session.coffee /^ addAnchorAtBufferPosition: (bufferPosition, options) ->$/;" f -addAnchorAtPosition src/app/buffer.coffee /^ addAnchorAtPosition: (position, options) ->$/;" f -addAnchorRange src/app/buffer.coffee /^ addAnchorRange: (range, editSession) ->$/;" f -addAnchorRange src/app/edit-session.coffee /^ addAnchorRange: (range) ->$/;" f -addCursorAtBufferPosition src/app/edit-session.coffee /^ addCursorAtBufferPosition: (bufferPosition) ->$/;" f -addCursorAtBufferPosition src/app/editor.coffee /^ addCursorAtBufferPosition: (bufferPosition) -> @activeEditSession.addCursorAtBufferPosition(bufferPosition)$/;" f -addCursorAtScreenPosition src/app/edit-session.coffee /^ addCursorAtScreenPosition: (screenPosition) ->$/;" f -addCursorAtScreenPosition src/app/editor.coffee /^ addCursorAtScreenPosition: (screenPosition) -> @activeEditSession.addCursorAtScreenPosition(screenPosition)$/;" f -addCursorView src/app/editor.coffee /^ addCursorView: (cursor, options) ->$/;" f -addSelectionForBufferRange src/app/edit-session.coffee /^ addSelectionForBufferRange: (bufferRange, options={}) ->$/;" f -addSelectionForBufferRange src/app/editor.coffee /^ addSelectionForBufferRange: (bufferRange, options) -> @activeEditSession.addSelectionForBufferRange(bufferRange, options)$/;" f -addSelectionForCursor src/app/edit-session.coffee /^ addSelectionForCursor: (cursor) ->$/;" f -addSelectionView src/app/editor.coffee /^ addSelectionView: (selection) ->$/;" f -addTabForEditSession src/extensions/tabs/src/tabs.coffee /^ addTabForEditSession: (editSession) ->$/;" f -address native/v8_extensions/readtags.h /^ } address;$/;" m struct:__anon33 typeref:struct:__anon33::__anon34 -adds a directory and closes the dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "adds a directory and closes the dialog", ->$/;" f -adds a tab for the new edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "adds a tab for the new edit session", ->$/;" f -adds and removes an error class to the command panel and displays the error message src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "adds and removes an error class to the command panel and displays the error message", ->$/;" f -adds and removes an error class to the command panel and does not close it src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "adds and removes an error class to the command panel and does not close it", ->$/;" f -adds the autocomplete view to the editor above the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "adds the autocomplete view to the editor above the cursor", ->$/;" f -adds the autocomplete view to the editor below the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "adds the autocomplete view to the editor below the cursor", ->$/;" f -adjustDimensions src/app/pane-column.coffee /^ adjustDimensions: ->$/;" f -adjustDimensions src/app/pane-row.coffee /^ adjustDimensions: ->$/;" f -adjustDimensions src/app/pane.coffee /^ adjustDimensions: -> # do nothing$/;" f -adjustIndentationForLine src/app/selection.coffee /^ adjustIndentationForLine: (line, delta) ->$/;" f -adjustPaneDimensions src/app/root-view.coffee /^ adjustPaneDimensions: ->$/;" f -adviseBefore src/stdlib/underscore-extensions.coffee /^ adviseBefore: (object, methodName, advice) ->$/;" f -afterAttach src/app/editor.coffee /^ afterAttach: (onDom) ->$/;" f -afterAttach src/app/gutter.coffee /^ afterAttach: (onDom) ->$/;" f -afterAttach src/app/root-view.coffee /^ afterAttach: (onDom) ->$/;" f -afterAttach src/extensions/tree-view/src/tree-view.coffee /^ afterAttach: (onDom) ->$/;" f -afterSubscribe src/app/directory.coffee /^ afterSubscribe: ->$/;" f -afterSubscribe src/app/file.coffee /^ afterSubscribe: ->$/;" f -afterUnsubscribe src/app/directory.coffee /^ afterUnsubscribe: ->$/;" f -afterUnsubscribe src/app/file.coffee /^ afterUnsubscribe: ->$/;" f -alloc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int alloc; \/* allocated space for p *\/$/;" m struct:re_pattern_buffer -alloc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int alloc; \/* allocated space for p *\/$/;" m struct:re_pattern_buffer -alloc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int alloc; \/* allocated space for p *\/$/;" m struct:re_pattern_buffer -allocated native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int allocated;$/;" m struct:re_registers -allocated native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int allocated;$/;" m struct:OnigCaptureTreeNodeStruct -allocated native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int allocated;$/;" m struct:re_registers -allocated native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int allocated;$/;" m struct:OnigCaptureTreeNodeStruct -allocated native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int allocated;$/;" m struct:re_registers -allocated native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int allocated;$/;" m struct:OnigCaptureTreeNodeStruct -allows the regex to contain an escaped forward slash src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "allows the regex to contain an escaped forward slash", ->$/;" f -anchor native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int anchor; \/* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF *\/$/;" m struct:re_pattern_buffer -anchor native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int anchor; \/* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF *\/$/;" m struct:re_pattern_buffer -anchor native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int anchor; \/* BEGIN_BUF, BEGIN_POS, (SEMI_)END_BUF *\/$/;" m struct:re_pattern_buffer -anchorRangesForBufferPosition src/app/edit-session.coffee /^ anchorRangesForBufferPosition: (bufferPosition) ->$/;" f -anchorRangesForPosition src/app/buffer.coffee /^ anchorRangesForPosition: (position) ->$/;" f -anchor_dmax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance anchor_dmax; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer -anchor_dmax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance anchor_dmax; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer -anchor_dmax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance anchor_dmax; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer -anchor_dmin native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance anchor_dmin; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer -anchor_dmin native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance anchor_dmin; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer -anchor_dmin native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance anchor_dmin; \/* (SEMI_)END_BUF anchor distance *\/$/;" m struct:re_pattern_buffer -anychar native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint anychar;$/;" m struct:__anon3 -anychar native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint anychar;$/;" m struct:__anon10 -anychar native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint anychar;$/;" m struct:__anon17 -anychar_anytime native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint anychar_anytime;$/;" m struct:__anon3 -anychar_anytime native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint anychar_anytime;$/;" m struct:__anon10 -anychar_anytime native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint anychar_anytime;$/;" m struct:__anon17 -anytime native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint anytime;$/;" m struct:__anon3 -anytime native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint anytime;$/;" m struct:__anon10 -anytime native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint anytime;$/;" m struct:__anon17 -appendRegion src/app/selection-view.coffee /^ appendRegion: (rows, start, end) ->$/;" f -appendToLinesView src/app/editor.coffee /^ appendToLinesView: (view) ->$/;" f -appends a status bear to all existing and new editors src/extensions/tabs/spec/tabs-spec.coffee /^ it "appends a status bear to all existing and new editors", ->$/;" f -appends a wrap guide to all existing and new editors src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "appends a wrap guide to all existing and new editors", ->$/;" f -applyStylesheet src/app/window.coffee /^ applyStylesheet: (id, text) ->$/;" f -applyTo src/stdlib/settings.coffee /^ applyTo: (object) ->$/;" f -apply_all_case_fold native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);$/;" m struct:OnigEncodingTypeST -apply_all_case_fold native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);$/;" m struct:OnigEncodingTypeST -apply_all_case_fold native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*apply_all_case_fold)(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);$/;" m struct:OnigEncodingTypeST -arguments native/atom_application.h /^@property (nonatomic, retain) NSDictionary *arguments;$/;" v -arguments native/atom_application.mm /^@synthesize arguments=_arguments;$/;" v -atom.sendMessageToBrowserProcess native/v8_extensions/atom.js /^this.atom = {$/;" p -attach src/extensions/autocomplete/src/autocomplete.coffee /^ attach: ->$/;" f -attach src/extensions/command-panel/src/command-panel.coffee /^ attach: (text='', options={}) ->$/;" f -attach src/extensions/event-palette/src/event-palette.coffee /^ attach: ->$/;" f -attach src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ attach: ->$/;" f -attach src/extensions/markdown-preview/src/markdown-preview.coffee /^ attach: ->$/;" f -attach src/extensions/outline-view/src/outline-view.coffee /^ attach: ->$/;" f -attach src/extensions/tree-view/src/tree-view.coffee /^ attach: ->$/;" f -attachRootView src/app/window.coffee /^ attachRootView: (pathToOpen) ->$/;" f -author native/v8_extensions/readtags.c /^ char *author;$/;" m struct:sTagFile::__anon25 file: -author native/v8_extensions/readtags.h /^ const char *author;$/;" m struct:__anon28::__anon31 -auto-fills the placeholder text and highlights it when navigating to that tab stop src/extensions/snippets/spec/snippets-spec.coffee /^ it "auto-fills the placeholder text and highlights it when navigating to that tab stop", ->$/;" f -autoDecreaseIndentForBufferRow src/app/language-mode.coffee /^ autoDecreaseIndentForBufferRow: (bufferRow) ->$/;" f -autoDecreaseIndentForRow src/app/edit-session.coffee /^ autoDecreaseIndentForRow: (bufferRow) ->$/;" f -autoIncreaseIndentForBufferRow src/app/edit-session.coffee /^ autoIncreaseIndentForBufferRow: (bufferRow) ->$/;" f -autoIncreaseIndentForBufferRow src/app/language-mode.coffee /^ autoIncreaseIndentForBufferRow: (bufferRow) ->$/;" f -autoIndentBufferRow src/app/edit-session.coffee /^ autoIndentBufferRow: (bufferRow) ->$/;" f -autoIndentBufferRow src/app/language-mode.coffee /^ autoIndentBufferRow: (bufferRow) ->$/;" f -autoIndentBufferRows src/app/edit-session.coffee /^ autoIndentBufferRows: (startRow, endRow) ->$/;" f -autoIndentBufferRows src/app/language-mode.coffee /^ autoIndentBufferRows: (startRow, endRow) ->$/;" f -autoIndentText src/app/selection.coffee /^ autoIndentText: (text) ->$/;" f -autoOutdent src/app/selection.coffee /^ autoOutdent: ->$/;" f -autosave src/app/editor.coffee /^ autosave: ->$/;" f -autoscroll src/app/editor.coffee /^ autoscroll: (options={}) ->$/;" f -autoscrolled src/app/cursor-view.coffee /^ autoscrolled: ->$/;" f -autoscrolled src/app/cursor.coffee /^ autoscrolled: ->$/;" f -autoscrolled src/app/selection-view.coffee /^ autoscrolled: ->$/;" f -autoscrolled src/app/selection.coffee /^ autoscrolled: ->$/;" f -backspace src/app/edit-session.coffee /^ backspace: ->$/;" f -backspace src/app/editor.coffee /^ backspace: -> @activeEditSession.backspace()$/;" f -backspace src/app/selection.coffee /^ backspace: ->$/;" f -backspaceToBeginningOfWord src/app/edit-session.coffee /^ backspaceToBeginningOfWord: ->$/;" f -backspaceToBeginningOfWord src/app/editor.coffee /^ backspaceToBeginningOfWord: -> @activeEditSession.backspaceToBeginningOfWord()$/;" f -backspaceToBeginningOfWord src/app/selection.coffee /^ backspaceToBeginningOfWord: ->$/;" f -backwardsIterateTokensInBufferRange src/app/tokenized-buffer.coffee /^ backwardsIterateTokensInBufferRange: (bufferRange, iterator) ->$/;" f -backwardsScanInRange src/app/buffer.coffee /^ backwardsScanInRange: (regex, range, iterator) ->$/;" f -backwardsScanInRange src/app/edit-session.coffee /^ backwardsScanInRange: (args...) -> @buffer.backwardsScanInRange(args...)$/;" f -backwardsScanInRange src/app/editor.coffee /^ backwardsScanInRange: (args...) -> @getBuffer().backwardsScanInRange(args...)$/;" f -base src/stdlib/fs.coffee /^ base: (path, ext) ->$/;" f -basename src/stdlib/path.coffee /^ basename: (filepath) ->$/;" f -beg native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int beg;$/;" m struct:OnigCaptureTreeNodeStruct -beg native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int* beg;$/;" m struct:re_registers -beg native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int beg;$/;" m struct:OnigCaptureTreeNodeStruct -beg native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int* beg;$/;" m struct:re_registers -beg native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int beg;$/;" m struct:OnigCaptureTreeNodeStruct -beg native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int* beg;$/;" m struct:re_registers -behavior native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int behavior;$/;" m struct:__anon4 -behavior native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int behavior;$/;" m struct:__anon11 -behavior native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int behavior;$/;" m struct:__anon18 -bindDefaultKeys src/app/keymap.coffee /^ bindDefaultKeys: ->$/;" f -bindKeys src/app/editor.coffee /^ bindKeys: ->$/;" f -bindKeys src/app/keymap.coffee /^ bindKeys: (selector, bindings) ->$/;" f -bindingSetsForNode src/app/keymap.coffee /^ bindingSetsForNode: (node, candidateBindingSets = @bindingSets) ->$/;" f -bindingsForElement src/app/keymap.coffee /^ bindingsForElement: (element) ->$/;" f -blink src/app/cursor-view.coffee /^ blink = => @toggleClass('blink-off')$/;" f -breakOutAtomicTokens src/app/screen-line.coffee /^ breakOutAtomicTokens: (inputTokens, tabLength) ->$/;" f -breakOutAtomicTokens src/app/token.coffee /^ breakOutAtomicTokens: (tabLength, breakOutLeadingWhitespace) ->$/;" f -bt_mem_end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int bt_mem_end; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer -bt_mem_end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int bt_mem_end; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer -bt_mem_end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int bt_mem_end; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer -bt_mem_start native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int bt_mem_start; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer -bt_mem_start native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int bt_mem_start; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer -bt_mem_start native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int bt_mem_start; \/* need backtrack flag *\/$/;" m struct:re_pattern_buffer -buffer native/v8_extensions/readtags.c /^ char *buffer;$/;" m struct:__anon22 file: -bufferColumnForScreenColumn src/app/screen-line.coffee /^ bufferColumnForScreenColumn: (screenColumn, options) ->$/;" f -bufferForPath src/app/project.coffee /^ bufferForPath: (filePath) ->$/;" f -bufferLineCount src/app/old-line-map.coffee /^ bufferLineCount: ->$/;" f -bufferPositionForScreenPosition src/app/display-buffer.coffee /^ bufferPositionForScreenPosition: (position, options) ->$/;" f -bufferPositionForScreenPosition src/app/edit-session.coffee /^ bufferPositionForScreenPosition: (screenPosition, options) -> @displayBuffer.bufferPositionForScreenPosition(screenPosition, options)$/;" f -bufferPositionForScreenPosition src/app/editor.coffee /^ bufferPositionForScreenPosition: (position, options) -> @activeEditSession.bufferPositionForScreenPosition(position, options)$/;" f -bufferPositionForScreenPosition src/app/line-map.coffee /^ bufferPositionForScreenPosition: (screenPosition, options) ->$/;" f -bufferPositionForScreenPosition src/app/old-line-map.coffee /^ bufferPositionForScreenPosition: (screenPosition, options) ->$/;" f -bufferRangeForBufferRow src/app/edit-session.coffee /^ bufferRangeForBufferRow: (row, options) -> @buffer.rangeForRow(row, options)$/;" f -bufferRangeForScreenRange src/app/display-buffer.coffee /^ bufferRangeForScreenRange: (screenRange) ->$/;" f -bufferRangeForScreenRange src/app/edit-session.coffee /^ bufferRangeForScreenRange: (range) -> @displayBuffer.bufferRangeForScreenRange(range)$/;" f -bufferRangeForScreenRange src/app/editor.coffee /^ bufferRangeForScreenRange: (range) -> @activeEditSession.bufferRangeForScreenRange(range)$/;" f -bufferRangeForScreenRange src/app/line-map.coffee /^ bufferRangeForScreenRange: (screenRange) ->$/;" f -bufferRangeForScreenRange src/app/old-line-map.coffee /^ bufferRangeForScreenRange: (screenRange) ->$/;" f -bufferRowAndScreenLineForScreenRow src/app/line-map.coffee /^ bufferRowAndScreenLineForScreenRow: (screenRow) ->$/;" f -bufferRowForScreenRow src/app/display-buffer.coffee /^ bufferRowForScreenRow: (screenRow) ->$/;" f -bufferRowsForScreenRows src/app/display-buffer.coffee /^ bufferRowsForScreenRows: (startRow, endRow) ->$/;" f -bufferRowsForScreenRows src/app/edit-session.coffee /^ bufferRowsForScreenRows: (startRow, endRow) -> @displayBuffer.bufferRowsForScreenRows(startRow, endRow)$/;" f -bufferRowsForScreenRows src/app/editor.coffee /^ bufferRowsForScreenRows: (startRow, endRow) -> @activeEditSession.bufferRowsForScreenRows(startRow, endRow)$/;" f -buildBuffer src/app/project.coffee /^ buildBuffer: (filePath) ->$/;" f -buildEditSession src/app/project.coffee /^ buildEditSession: (buffer, editSessionOptions) ->$/;" f -buildEditSessionForPath src/app/project.coffee /^ buildEditSessionForPath: (filePath, editSessionOptions={}) ->$/;" f -buildEntries src/extensions/tree-view/src/directory-view.coffee /^ buildEntries: ->$/;" f -buildGlobalSettingsRulesets src/app/text-mate-theme.coffee /^ buildGlobalSettingsRulesets: ({settings}) ->$/;" f -buildHardTabToken src/app/token.coffee /^ buildHardTabToken: (tabLength) ->$/;" f -buildIndentString src/app/edit-session.coffee /^ buildIndentString: (number) ->$/;" f -buildLineElementsForScreenRows src/app/editor.coffee /^ buildLineElementsForScreenRows: (startRow, endRow) ->$/;" f -buildLineForBufferRow src/app/display-buffer.coffee /^ buildLineForBufferRow: (bufferRow) ->$/;" f -buildLineHtml src/app/editor.coffee /^ buildLineHtml: (screenLine) ->$/;" f -buildLineMap src/app/display-buffer.coffee /^ buildLineMap: ->$/;" f -buildLinesForBufferRows src/app/display-buffer.coffee /^ buildLinesForBufferRows: (startBufferRow, endBufferRow) ->$/;" f -buildLinesHtml src/app/editor.coffee /^ buildLinesHtml: (screenLines) ->$/;" f -buildPaneAxis src/app/pane.coffee /^ buildPaneAxis: (axis) ->$/;" f -buildPlaceholderScreenLineForRow src/app/tokenized-buffer.coffee /^ buildPlaceholderScreenLineForRow: (row) ->$/;" f -buildPlaceholderScreenLinesForRows src/app/tokenized-buffer.coffee /^ buildPlaceholderScreenLinesForRows: (startRow, endRow) ->$/;" f -buildScopeSelectorRulesets src/app/text-mate-theme.coffee /^ buildScopeSelectorRulesets: (scopeSelectorSettings) ->$/;" f -buildScreenLinesForRows src/app/tokenized-buffer.coffee /^ buildScreenLinesForRows: (startRow, endRow, startingStack) ->$/;" f -buildSoftTabToken src/app/token.coffee /^ buildSoftTabToken: (tabLength) ->$/;" f -buildTabToken src/app/token.coffee /^ buildTabToken: (tabLength, isHardTab) ->$/;" f -buildTokenizedScreenLineForRow src/app/tokenized-buffer.coffee /^ buildTokenizedScreenLineForRow: (row, ruleStack) ->$/;" f -buildWordList src/extensions/autocomplete/src/autocomplete.coffee /^ buildWordList: () ->$/;" f -byte_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int byte_len; \/* argument(original) character(s) byte length *\/$/;" m struct:__anon2 -byte_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int byte_len; \/* argument(original) character(s) byte length *\/$/;" m struct:__anon9 -byte_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int byte_len; \/* argument(original) character(s) byte length *\/$/;" m struct:__anon16 -cachedResults native/v8_extensions/onig_scanner.mm /^ std::vector cachedResults;$/;" m class:v8_extensions::OnigScannerUserData file: -caches file paths after first time src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "caches file paths after first time", ->$/;" f -calcSoftWrapColumn src/app/editor.coffee /^ calcSoftWrapColumn: ->$/;" f -calculateDimensions src/app/editor.coffee /^ calculateDimensions: ->$/;" f -calculateLineNumberPadding src/app/gutter.coffee /^ calculateLineNumberPadding: ->$/;" f -calculateNewRange src/app/buffer-change-operation.coffee /^ calculateNewRange: (oldRange, newText) ->$/;" f -calculateWidth src/app/gutter.coffee /^ calculateWidth: ->$/;" f -callback src/extensions/outline-view/spec/outline-view-spec.coffee /^ callback = (tag) ->$/;" f -callback src/extensions/outline-view/spec/outline-view-spec.coffee /^ callback = (tag) ->$/;" f -callback src/extensions/outline-view/src/outline-view.coffee /^ callback = (tag) -> tags.push tag$/;" f -callbacks native/v8_extensions/native_linux.h /^ std::map > callbacks;$/;" m struct:v8_extensions::NotifyContext -calls the deactivate on tree view instance src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "calls the deactivate on tree view instance", ->$/;" f -can parse multiple snippets src/extensions/snippets/spec/snippets-spec.coffee /^ it "can parse multiple snippets", ->$/;" f -can parse snippets with tabstops src/extensions/snippets/spec/snippets-spec.coffee /^ it "can parse snippets with tabstops", ->$/;" f -cancel src/app/select-list.coffee /^ cancel: ->$/;" f -cancel src/extensions/autocomplete/src/autocomplete.coffee /^ cancel: ->$/;" f -cancel src/extensions/tree-view/src/dialog.coffee /^ cancel: ->$/;" f -cancelled src/extensions/event-palette/src/event-palette.coffee /^ cancelled: ->$/;" f -cancelled src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ cancelled: ->$/;" f -cancelled src/extensions/outline-view/src/outline-view.coffee /^ cancelled: ->$/;" f -cancels the autocomplete src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "cancels the autocomplete", ->$/;" f -cancels the autocomplete when clicking on the 'No matches found' li src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "cancels the autocomplete when clicking on the 'No matches found' li", ->$/;" f -capitalize src/stdlib/underscore-extensions.coffee /^ capitalize: (word) ->$/;" f -capture_history native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int capture_history; \/* (?@...) flag (1-31) *\/$/;" m struct:re_pattern_buffer -capture_history native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int capture_history; \/* (?@...) flag (1-31) *\/$/;" m struct:re_pattern_buffer -capture_history native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int capture_history; \/* (?@...) flag (1-31) *\/$/;" m struct:re_pattern_buffer -case_fold_flag native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:__anon7 -case_fold_flag native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:re_pattern_buffer -case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:__anon14 -case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:re_pattern_buffer -case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:__anon21 -case_fold_flag native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCaseFoldType case_fold_flag;$/;" m struct:re_pattern_buffer -chain native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ struct re_pattern_buffer* chain; \/* escape compile-conflict *\/$/;" m struct:re_pattern_buffer typeref:struct:re_pattern_buffer::re_pattern_buffer -chain native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ struct re_pattern_buffer* chain; \/* escape compile-conflict *\/$/;" m struct:re_pattern_buffer typeref:struct:re_pattern_buffer::re_pattern_buffer -chain native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ struct re_pattern_buffer* chain; \/* escape compile-conflict *\/$/;" m struct:re_pattern_buffer typeref:struct:re_pattern_buffer::re_pattern_buffer -change src/app/buffer.coffee /^ change: (oldRange, newText) ->$/;" f -changeBuffer src/app/buffer-change-operation.coffee /^ changeBuffer: ({ oldRange, newRange, newText, oldText }) ->$/;" f -characterIndexForPosition src/app/buffer.coffee /^ characterIndexForPosition: (position) ->$/;" f -checkoutHead src/app/buffer.coffee /^ checkoutHead: ->$/;" f -checkoutHead src/app/editor.coffee /^ checkoutHead: -> @getBuffer().checkoutHead()$/;" f -checkoutHead src/app/git.coffee /^ checkoutHead: (path) ->$/;" f -childViewStates src/app/pane-grid.coffee /^ childViewStates: ->$/;" f -childs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ struct OnigCaptureTreeNodeStruct** childs;$/;" m struct:OnigCaptureTreeNodeStruct typeref:struct:OnigCaptureTreeNodeStruct::OnigCaptureTreeNodeStruct -childs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ struct OnigCaptureTreeNodeStruct** childs;$/;" m struct:OnigCaptureTreeNodeStruct typeref:struct:OnigCaptureTreeNodeStruct::OnigCaptureTreeNodeStruct -childs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ struct OnigCaptureTreeNodeStruct** childs;$/;" m struct:OnigCaptureTreeNodeStruct typeref:struct:OnigCaptureTreeNodeStruct::OnigCaptureTreeNodeStruct -className src/app/pane-column.coffee /^ className: ->$/;" f -className src/app/pane-row.coffee /^ className: ->$/;" f -clear src/app/selection.coffee /^ clear: ->$/;" f -clear src/app/undo-manager.coffee /^ clear: ->$/;" f -clearAllSelections src/app/edit-session.coffee /^ clearAllSelections: ->$/;" f -clearDirtyRanges src/app/editor.coffee /^ clearDirtyRanges: (intactRanges) ->$/;" f -clearRegions src/app/selection-view.coffee /^ clearRegions: ->$/;" f -clearRenderedLines src/app/editor.coffee /^ clearRenderedLines: ->$/;" f -clearSelection src/app/cursor.coffee /^ clearSelection: ->$/;" f -clearSelections src/app/edit-session.coffee /^ clearSelections: ->$/;" f -clearSelections src/app/editor.coffee /^ clearSelections: -> @activeEditSession.clearSelections()$/;" f -clears the mini-editor and unbinds autocomplete event handlers for move-up and move-down src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "clears the mini-editor and unbinds autocomplete event handlers for move-up and move-down", ->$/;" f -clears the previous mini editor text src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "clears the previous mini editor text", ->$/;" f -clipBufferPosition src/app/edit-session.coffee /^ clipBufferPosition: (bufferPosition) ->$/;" f -clipPosition src/app/buffer.coffee /^ clipPosition: (position) ->$/;" f -clipPosition src/app/old-line-map.coffee /^ clipPosition: (deltaType, position, options={}) ->$/;" f -clipScreenColumn src/app/screen-line.coffee /^ clipScreenColumn: (column, options={}) ->$/;" f -clipScreenPosition src/app/display-buffer.coffee /^ clipScreenPosition: (position, options) ->$/;" f -clipScreenPosition src/app/edit-session.coffee /^ clipScreenPosition: (screenPosition, options) -> @displayBuffer.clipScreenPosition(screenPosition, options)$/;" f -clipScreenPosition src/app/editor.coffee /^ clipScreenPosition: (screenPosition, options={}) -> @activeEditSession.clipScreenPosition(screenPosition, options)$/;" f -clipScreenPosition src/app/line-map.coffee /^ clipScreenPosition: (screenPosition, options={}) ->$/;" f -clipScreenPosition src/app/old-line-map.coffee /^ clipScreenPosition: (screenPosition, options) ->$/;" f -clipToBounds src/app/old-line-map.coffee /^ clipToBounds: (deltaType, position) ->$/;" f -close src/app/editor.coffee /^ close: ->$/;" f -close src/extensions/tree-view/src/dialog.coffee /^ close: ->$/;" f -closes the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "closes the command panel", ->$/;" f -closes the menu and moves the cursor to the end src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "closes the menu and moves the cursor to the end", ->$/;" f -closes the menu without changing the buffer src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "closes the menu without changing the buffer", ->$/;" f -closes the selected active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "closes the selected active edit session", ->$/;" f -closes the selected non-active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "closes the selected non-active edit session", ->$/;" f -code native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];$/;" m struct:__anon2 -code native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];$/;" m struct:__anon9 -code native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint code[ONIGENC_MAX_COMP_CASE_FOLD_CODE_LEN];$/;" m struct:__anon16 -code_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int code_len; \/* number of code *\/$/;" m struct:__anon2 -code_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int code_len; \/* number of code *\/$/;" m struct:__anon9 -code_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int code_len; \/* number of code *\/$/;" m struct:__anon16 -code_to_mbc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);$/;" m struct:OnigEncodingTypeST -code_to_mbc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);$/;" m struct:OnigEncodingTypeST -code_to_mbc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*code_to_mbc)(OnigCodePoint code, OnigUChar *buf);$/;" m struct:OnigEncodingTypeST -code_to_mbclen native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*code_to_mbclen)(OnigCodePoint code);$/;" m struct:OnigEncodingTypeST -code_to_mbclen native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*code_to_mbclen)(OnigCodePoint code);$/;" m struct:OnigEncodingTypeST -code_to_mbclen native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*code_to_mbclen)(OnigCodePoint code);$/;" m struct:OnigEncodingTypeST -coffee src/stdlib/require.coffee /^ coffee: (file) ->$/;" f -collapse src/extensions/tree-view/src/directory-view.coffee /^ collapse: ->$/;" f -collapseDirectory src/extensions/tree-view/src/tree-view.coffee /^ collapseDirectory: ->$/;" f -collapses and selects the selected directory's parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "collapses and selects the selected directory's parent directory", ->$/;" f -collapses and selects the selected file's parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "collapses and selects the selected file's parent directory", ->$/;" f -collapses the selected directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "collapses the selected directory", ->$/;" f -commandForEvent src/app/binding-set.coffee /^ commandForEvent: (event) ->$/;" f -compare src/app/point.coffee /^ compare: (other) ->$/;" f -compile src/extensions/command-panel/src/commands/address.coffee /^ compile: (project, buffer, ranges) ->$/;" f -compile src/extensions/command-panel/src/commands/select-all-matches-in-project.coffee /^ compile: (project, buffer, range) ->$/;" f -compile src/extensions/command-panel/src/commands/select-all-matches.coffee /^ compile: (project, buffer, ranges) ->$/;" f -compile src/extensions/command-panel/src/commands/substitution.coffee /^ compile: (project, buffer, ranges) ->$/;" f -computeIntactRanges src/app/editor.coffee /^ computeIntactRanges: ->$/;" f -concat src/app/old-screen-line.coffee /^ concat: (other) ->$/;" f -confirm src/extensions/autocomplete/src/autocomplete.coffee /^ confirm: ->$/;" f -confirmSelection src/app/select-list.coffee /^ confirmSelection: ->$/;" f -confirmed src/extensions/event-palette/src/event-palette.coffee /^ confirmed: ({eventName}) ->$/;" f -confirmed src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ confirmed : (path) ->$/;" f -confirmed src/extensions/outline-view/src/outline-view.coffee /^ confirmed : ({position, name}) ->$/;" f -constructor src/app/anchor-range.coffee /^ constructor: (bufferRange, @buffer, @editSession) ->$/;" f -constructor src/app/anchor.coffee /^ constructor: (@buffer, options = {}) ->$/;" f -constructor src/app/binding-set.coffee /^ constructor: (@selector, commandsByKeystrokes, @index) ->$/;" f -constructor src/app/buffer-change-operation.coffee /^ constructor: ({@buffer, @oldRange, @newText}) ->$/;" f -constructor src/app/buffer.coffee /^ constructor: (path, @project) ->$/;" f -constructor src/app/cursor.coffee /^ constructor: ({@editSession, screenPosition, bufferPosition}) ->$/;" f -constructor src/app/directory.coffee /^ constructor: (@path) ->$/;" f -constructor src/app/display-buffer.coffee /^ constructor: (@buffer, options={}) ->$/;" f -constructor src/app/edit-session.coffee /^ constructor: ({@project, @buffer, tabLength, @autoIndent, softTabs, @softWrap }) ->$/;" f -constructor src/app/file.coffee /^ constructor: (@path) ->$/;" f -constructor src/app/fold.coffee /^ constructor: (@displayBuffer, @startRow, @endRow) ->$/;" f -constructor src/app/git.coffee /^ constructor: (path) ->$/;" f -constructor src/app/keymap.coffee /^ constructor: ->$/;" f -constructor src/app/language-mode.coffee /^ constructor: (@editSession) ->$/;" f -constructor src/app/line-map.coffee /^ constructor: ->$/;" f -constructor src/app/old-line-map.coffee /^ constructor: ->$/;" f -constructor src/app/old-screen-line.coffee /^ constructor: (@tokens, @text, screenDelta, bufferDelta, extraFields) ->$/;" f -constructor src/app/point.coffee /^ constructor: (@row=0, @column=0) ->$/;" f -constructor src/app/project.coffee /^ constructor: (path) ->$/;" f -constructor src/app/screen-line.coffee /^ constructor: ({tokens, @ruleStack, @bufferRows, @startBufferColumn, @fold, tabLength}) ->$/;" f -constructor src/app/selection.coffee /^ constructor: ({@cursor, @editSession}) ->$/;" f -constructor src/app/text-mate-bundle.coffee /^ constructor: (@path) ->$/;" f -constructor src/app/text-mate-grammar.coffee /^ constructor: (@grammar, { name, contentName, @include, match, begin, end, captures, beginCaptures, endCaptures, patterns, @popRule, hasBackReferences}) ->$/;" f -constructor src/app/text-mate-grammar.coffee /^ constructor: (@grammar, {@scopeName, patterns, @endPattern}) ->$/;" f -constructor src/app/text-mate-grammar.coffee /^ constructor: ({ @name, @fileTypes, @scopeName, patterns, repository, @foldingStopMarker, firstLineMatch}) ->$/;" f -constructor src/app/text-mate-theme.coffee /^ constructor: ({@name, settings}) ->$/;" f -constructor src/app/token.coffee /^ constructor: ({@value, @scopes, @isAtomic, @bufferDelta, @isHardTab}) ->$/;" f -constructor src/app/tokenized-buffer.coffee /^ constructor: (@buffer, { @languageMode, @tabLength }) ->$/;" f -constructor src/app/undo-manager.coffee /^ constructor: ->$/;" f -constructor src/extensions/command-panel/src/command-interpreter.coffee /^ constructor: (@project) ->$/;" f -constructor src/extensions/command-panel/src/commands/address-range.coffee /^ constructor: (@startAddress, @endAddress) ->$/;" f -constructor src/extensions/command-panel/src/commands/composite-command.coffee /^ constructor: (@subcommands) ->$/;" f -constructor src/extensions/command-panel/src/commands/line-address.coffee /^ constructor: (lineNumber) ->$/;" f -constructor src/extensions/command-panel/src/commands/regex-address.coffee /^ constructor: (@pattern, isReversed, options) ->$/;" f -constructor src/extensions/command-panel/src/commands/select-all-matches-in-project.coffee /^ constructor: (pattern) ->$/;" f -constructor src/extensions/command-panel/src/commands/select-all-matches.coffee /^ constructor: (pattern) ->$/;" f -constructor src/extensions/command-panel/src/commands/substitution.coffee /^ constructor: (pattern, replacementText, options) ->$/;" f -constructor src/extensions/command-panel/src/operation.coffee /^ constructor: ({@project, @buffer, bufferRange, @newText, @preserveSelection, @errorMessage}) ->$/;" f -constructor src/extensions/outline-view/src/tag-generator.coffee /^ constructor: (@path, @callback) ->$/;" f -constructor src/extensions/snippets/src/snippet-expansion.coffee /^ constructor: (snippet, @editSession) ->$/;" f -constructor src/extensions/snippets/src/snippet.coffee /^ constructor: ({@bodyPosition, @prefix, @description, body}) ->$/;" f -containsBufferPosition src/app/anchor-range.coffee /^ containsBufferPosition: (bufferPosition) ->$/;" f -containsPoint src/app/range.coffee /^ containsPoint: (point, { exclusive } = {}) ->$/;" f -containsRow src/app/range.coffee /^ containsRow: (row) ->$/;" f -context native/v8_extensions/native_linux.h /^ CefRefPtr context;$/;" m struct:v8_extensions::CallbackContext -copy src/app/edit-session.coffee /^ copy: ->$/;" f -copy src/app/editor.coffee /^ copy: ->$/;" f -copy src/app/old-screen-line.coffee /^ copy: ->$/;" f -copy src/app/point.coffee /^ copy: ->$/;" f -copy src/app/range.coffee /^ copy: ->$/;" f -copy src/app/screen-line.coffee /^ copy: ->$/;" f -copy src/app/selection.coffee /^ copy: (maintainPasteboard=false) ->$/;" f -copyName native/v8_extensions/readtags.c /^static void copyName (tagFile *const file)$/;" f file: -copySelectedText src/app/edit-session.coffee /^ copySelectedText: ->$/;" f -copySelection src/app/editor.coffee /^ copySelection: -> @activeEditSession.copySelectedText()$/;" f -count native/v8_extensions/readtags.h /^ unsigned short count;$/;" m struct:__anon33::__anon35 -coversSameRows src/app/range.coffee /^ coversSameRows: (other) ->$/;" f -createCefSettings native/atom_application.h /^+ (CefSettings)createCefSettings;$/;" v -createFold src/app/display-buffer.coffee /^ createFold: (startRow, endRow) ->$/;" f -createFold src/app/edit-session.coffee /^ createFold: (startRow, endRow) ->$/;" f -createFold src/app/editor.coffee /^ createFold: (startRow, endRow) -> @activeEditSession.createFold(startRow, endRow)$/;" f -creates a root view when the project path is created src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "creates a root view when the project path is created", ->$/;" f -creates a tab for each edit session on the editor to which the tab-strip belongs src/extensions/tabs/spec/tabs-spec.coffee /^ it "creates a tab for each edit session on the editor to which the tab-strip belongs", ->$/;" f -creates the target directory before moving the file src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "creates the target directory before moving the file", ->$/;" f -cursorIsInsideTabStops src/extensions/snippets/src/snippet-expansion.coffee /^ cursorIsInsideTabStops: ->$/;" f -cut src/app/selection.coffee /^ cut: (maintainPasteboard=false) ->$/;" f -cutSelectedText src/app/edit-session.coffee /^ cutSelectedText: ->$/;" f -cutSelection src/app/editor.coffee /^ cutSelection: -> @activeEditSession.cutSelectedText()$/;" f -cutToEndOfLine src/app/edit-session.coffee /^ cutToEndOfLine: ->$/;" f -cutToEndOfLine src/app/editor.coffee /^ cutToEndOfLine: -> @activeEditSession.cutToEndOfLine()$/;" f -cutToEndOfLine src/app/selection.coffee /^ cutToEndOfLine: (maintainPasteboard) ->$/;" f -d #initialize() src/extensions/tabs/spec/tabs-spec.coffee /^ describe "#initialize()", ->$/;" f -d $ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "$", ->$/;" f -d . src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe ".", ->$/;" f -d .attach() src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe ".attach()", ->$/;" f -d .detach() src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe ".detach()", ->$/;" f -d .initialize(project) src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe ".initialize(project)", ->$/;" f -d .loadSnippetsFile(path) src/extensions/snippets/spec/snippets-spec.coffee /^ describe ".loadSnippetsFile(path)", ->$/;" f -d /regex/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "\/regex\/", ->$/;" f -d /regex/ /regex src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "\/regex\/ \/regex", ->$/;" f -d 0 src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "0", ->$/;" f -d @activate src/extensions/tabs/spec/tabs-spec.coffee /^ describe "@activate", ->$/;" f -d @activate(rootView) src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "@activate(rootView)", ->$/;" f -d @initialize src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "@initialize", ->$/;" f -d @updateGuide src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "@updateGuide", ->$/;" f -d Autocomplete src/extensions/autocomplete/spec/autocomplete-spec.coffee /^describe "Autocomplete", ->$/;" f -d CommandInterpreter src/extensions/command-panel/spec/command-interpreter-spec.coffee /^describe "CommandInterpreter", ->$/;" f -d CommandPanel src/extensions/command-panel/spec/command-panel-spec.coffee /^describe "CommandPanel", ->$/;" f -d EventPalette src/extensions/event-palette/spec/event-palette-spec.coffee /^describe "EventPalette", ->$/;" f -d MarkdownPreview src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^describe "MarkdownPreview", ->$/;" f -d OutlineView src/extensions/outline-view/spec/outline-view-spec.coffee /^describe "OutlineView", ->$/;" f -d Snippets extension src/extensions/snippets/spec/snippets-spec.coffee /^describe "Snippets extension", ->$/;" f -d Snippets parser src/extensions/snippets/spec/snippets-spec.coffee /^ describe "Snippets parser", ->$/;" f -d StripTrailingWhitespace src/extensions/strip-trailing-whitespace/spec/strip-trailing-whitespace-spec.coffee /^describe "StripTrailingWhitespace", ->$/;" f -d Tabs src/extensions/tabs/spec/tabs-spec.coffee /^describe "Tabs", ->$/;" f -d TagGenerator src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "TagGenerator", ->$/;" f -d TreeView src/extensions/tree-view/spec/tree-view-spec.coffee /^describe "TreeView", ->$/;" f -d WrapGuide src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^describe "WrapGuide", ->$/;" f -d X x/regex/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "X x\/regex\/", ->$/;" f -d a line address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "a line address", ->$/;" f -d address range src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "address range", ->$/;" f -d addresses src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "addresses", ->$/;" f -d buffer-finder behavior src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "buffer-finder behavior", ->$/;" f -d cached file paths src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "cached file paths", ->$/;" f -d common behavior between file and buffer finder src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "common behavior between file and buffer finder", ->$/;" f -d core:cancel event src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ describe "core:cancel event", ->$/;" f -d core:move-down src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-down", ->$/;" f -d core:move-to-bottom src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-to-bottom", ->$/;" f -d core:move-to-top src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-to-top", ->$/;" f -d core:move-up src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:move-up", ->$/;" f -d core:page-down src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:page-down", ->$/;" f -d core:page-up src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "core:page-up", ->$/;" f -d file modification src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "file modification", ->$/;" f -d file system events src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "file system events", ->$/;" f -d file-finder behavior src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "file-finder behavior", ->$/;" f -d font-size-change src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "font-size-change", ->$/;" f -d if the command has an immediate effect src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "if the command has an immediate effect", ->$/;" f -d if the command is malformed src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "if the command is malformed", ->$/;" f -d if the command returns an error message src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "if the command returns an error message", ->$/;" f -d if the current file has a path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "if the current file has a path", ->$/;" f -d if the current file has no path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "if the current file has no path", ->$/;" f -d if there is no editor open src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "if there is no editor open", ->$/;" f -d ignored files src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "ignored files", ->$/;" f -d jump to declaration src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "jump to declaration", ->$/;" f -d keyboard navigation src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "keyboard navigation", ->$/;" f -d markdown-preview:toggle event src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ describe "markdown-preview:toggle event", ->$/;" f -d movement outside of viewable region src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "movement outside of viewable region", ->$/;" f -d nested commands src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "nested commands", ->$/;" f -d overriding getGuideColumn src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ describe "overriding getGuideColumn", ->$/;" f -d serialization src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "serialization", ->$/;" f -d serialization src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "serialization", ->$/;" f -d substitution src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "substitution", ->$/;" f -d toggling src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "toggling", ->$/;" f -d tree-view:add src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:add", ->$/;" f -d tree-view:collapse-directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:collapse-directory", ->$/;" f -d tree-view:expand-directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:expand-directory", ->$/;" f -d tree-view:move src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:move", ->$/;" f -d tree-view:open-selected-entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:open-selected-entry", ->$/;" f -d tree-view:remove src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "tree-view:remove", ->$/;" f -d when 'core:cancel' is triggered on the add dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when 'core:cancel' is triggered on the add dialog", ->$/;" f -d when 'core:cancel' is triggered on the move dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when 'core:cancel' is triggered on the move dialog", ->$/;" f -d when 'tab' is triggered on the editor src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when 'tab' is triggered on the editor", ->$/;" f -d when a collapsed directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a collapsed directory is selected", ->$/;" f -d when a different editor becomes active src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a different editor becomes active", ->$/;" f -d when a directory entry is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory entry is selected", ->$/;" f -d when a directory is double-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory is double-clicked", ->$/;" f -d when a directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory is selected", ->$/;" f -d when a directory is single-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory is single-clicked", ->$/;" f -d when a directory's disclosure arrow is clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a directory's disclosure arrow is clicked", ->$/;" f -d when a file already exists at that location src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file already exists at that location", ->$/;" f -d when a file entry is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file entry is selected", ->$/;" f -d when a file is added or removed in an expanded directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is added or removed in an expanded directory", ->$/;" f -d when a file is double-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is double-clicked", ->$/;" f -d when a file is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is selected", ->$/;" f -d when a file is single-clicked src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file is single-clicked", ->$/;" f -d when a file name associated with a tab changes src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when a file name associated with a tab changes", ->$/;" f -d when a file or directory already exists at the given path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file or directory already exists at the given path", ->$/;" f -d when a file or directory already exists at the target path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a file or directory already exists at the target path", ->$/;" f -d when a match is clicked in the match list src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when a match is clicked in the match list", ->$/;" f -d when a new edit session is created src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when a new edit session is created", ->$/;" f -d when a new file is opened in the active editor src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when a new file is opened in the active editor", ->$/;" f -d when a non-word character is typed in the mini-editor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when a non-word character is typed in the mini-editor", ->$/;" f -d when a path selection is confirmed src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when a path selection is confirmed", ->$/;" f -d when a previous snippet expansion has just been undone src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when a previous snippet expansion has just been undone", ->$/;" f -d when a single selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when a single selection", ->$/;" f -d when a snippet expansion is undone and redone src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when a snippet expansion is undone and redone", ->$/;" f -d when a tab is clicked src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when a tab is clicked", ->$/;" f -d when a the start of the snippet is indented src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when a the start of the snippet is indented", ->$/;" f -d when all the directories along the new path exist src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when all the directories along the new path exist", ->$/;" f -d when an edit session is removed src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when an edit session is removed", ->$/;" f -d when an event selection is confirmed src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when an event selection is confirmed", ->$/;" f -d when an expanded directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when an expanded directory is selected", ->$/;" f -d when an operation in the preview list is clicked src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when an operation in the preview list is clicked", ->$/;" f -d when collapsed root directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when collapsed root directory is selected", ->$/;" f -d when command-panel:find-in-file is triggered on an editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:find-in-file is triggered on an editor", ->$/;" f -d when command-panel:find-in-project is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:find-in-project is triggered on the root view", ->$/;" f -d when command-panel:repeat-relative-address is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:repeat-relative-address is triggered on the root view", ->$/;" f -d when command-panel:repeat-relative-address-in-reverse is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:repeat-relative-address-in-reverse is triggered on the root view", ->$/;" f -d when command-panel:set-selection-as-regex-address is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:set-selection-as-regex-address is triggered on the root view", ->$/;" f -d when command-panel:toggle is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:toggle is triggered on the root view", ->$/;" f -d when command-panel:toggle-preview is triggered on the root view src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when command-panel:toggle-preview is triggered on the root view", ->$/;" f -d when core:close is triggered on the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when core:close is triggered on the command panel", ->$/;" f -d when core:close is triggered on the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when core:close is triggered on the tree view", ->$/;" f -d when core:confirm is triggered on the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when core:confirm is triggered on the preview list", ->$/;" f -d when event-palette:toggle is triggered on the open event palette src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when event-palette:toggle is triggered on the open event palette", ->$/;" f -d when event-palette:toggle is triggered on the root view src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when event-palette:toggle is triggered on the root view", ->$/;" f -d when global src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when global", ->$/;" f -d when matching $ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when matching $", ->$/;" f -d when matching /$/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when matching \/$\/", ->$/;" f -d when matching ^ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when matching ^", ->$/;" f -d when move-down and move-up are triggered on the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when move-down and move-up are triggered on the preview list", ->$/;" f -d when move-up and move-down are triggerred on the editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when move-up and move-down are triggerred on the editor", ->$/;" f -d when no file exists at that location src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when no file exists at that location", ->$/;" f -d when no file or directory exists at the given path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when no file or directory exists at the given path", ->$/;" f -d when no match is found src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when no match is found", ->$/;" f -d when no text is selected src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when no text is selected", ->$/;" f -d when not global src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when not global", ->$/;" f -d when nothing is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when nothing is selected", ->$/;" f -d when parent directory of the selected file changes src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when parent directory of the selected file changes", ->$/;" f -d when prefixed with an address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when prefixed with an address", ->$/;" f -d when return is pressed on the panel's editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when return is pressed on the panel's editor", ->$/;" f -d when root view's project has no path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when root view's project has no path", ->$/;" f -d when tags can be generated for a file src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "when tags can be generated for a file", ->$/;" f -d when tags can't be generated for a file src/extensions/outline-view/spec/outline-view-spec.coffee /^ describe "when tags can't be generated for a file", ->$/;" f -d when text is initially selected src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when text is initially selected", ->$/;" f -d when text is removed from the mini-editor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when text is removed from the mini-editor", ->$/;" f -d when text is selected src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when text is selected", ->$/;" f -d when text is selected src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when text is selected", ->$/;" f -d when the active edit session changes src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when the active edit session changes", ->$/;" f -d when the active editor contains edit sessions for buffers with paths src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the active editor contains edit sessions for buffers with paths", ->$/;" f -d when the active editor only contains edit sessions for anonymous buffers src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the active editor only contains edit sessions for anonymous buffers", ->$/;" f -d when the add dialog's editor loses focus src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the add dialog's editor loses focus", ->$/;" f -d when the autocomplete view does not fit below the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the autocomplete view does not fit below the cursor", ->$/;" f -d when the autocomplete view fits below the cursor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the autocomplete view fits below the cursor", ->$/;" f -d when the close icon is clicked src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when the close icon is clicked", ->$/;" f -d when the command contains an escaped charachter src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command contains an escaped charachter", ->$/;" f -d when the command panel is not visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is not visible", ->$/;" f -d when the command panel is not visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is not visible", ->$/;" f -d when the command panel is visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is visible", ->$/;" f -d when the command panel is visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command panel is visible", ->$/;" f -d when the command returns operations to be previewed src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the command returns operations to be previewed", ->$/;" f -d when the cursor is moved beyond the bounds of a tab stop src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the cursor is moved beyond the bounds of a tab stop", ->$/;" f -d when the directories along the new path don't exist src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the directories along the new path don't exist", ->$/;" f -d when the directory is collapsed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the directory is collapsed", ->$/;" f -d when the directory is expanded src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the directory is expanded", ->$/;" f -d when the edit session's buffer has an undefined path src/extensions/tabs/spec/tabs-spec.coffee /^ describe "when the edit session's buffer has an undefined path", ->$/;" f -d when the editor is scrolled to the right src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the editor is scrolled to the right", ->$/;" f -d when the event palette is cancelled src/extensions/event-palette/spec/event-palette-spec.coffee /^ describe "when the event palette is cancelled", ->$/;" f -d when the fuzzy finder is cancelled src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the fuzzy finder is cancelled", ->$/;" f -d when the last directory of another last directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the last directory of another last directory is selected", ->$/;" f -d when the last entry of an expanded directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the last entry of an expanded directory is selected", ->$/;" f -d when the last entry of the last directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the last entry of the last directory is selected", ->$/;" f -d when the left address is unspecified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when the left address is unspecified", ->$/;" f -d when the letters preceding the cursor don't match a snippet src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the letters preceding the cursor don't match a snippet", ->$/;" f -d when the letters preceding the cursor trigger a snippet src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the letters preceding the cursor trigger a snippet", ->$/;" f -d when the mini editor is focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is focused", ->$/;" f -d when the mini editor is focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is focused", ->$/;" f -d when the mini editor is not focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is not focused", ->$/;" f -d when the mini editor is not focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the mini editor is not focused", ->$/;" f -d when the mini-editor receives keyboard input src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the mini-editor receives keyboard input", ->$/;" f -d when the move dialog's editor loses focus src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the move dialog's editor loses focus", ->$/;" f -d when the neither address is specified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when the neither address is specified", ->$/;" f -d when the path is changed and confirmed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the path is changed and confirmed", ->$/;" f -d when the path with a trailing '/' is changed and confirmed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the path with a trailing '\/' is changed and confirmed", ->$/;" f -d when the path without a trailing '/' is changed and confirmed src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the path without a trailing '\/' is changed and confirmed", ->$/;" f -d when the preview list has never been opened src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list has never been opened", ->$/;" f -d when the preview list is focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is focused", ->$/;" f -d when the preview list is focused with search operations src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is focused with search operations", ->$/;" f -d when the preview list is not focused src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is not focused", ->$/;" f -d when the preview list is not visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is not visible", ->$/;" f -d when the preview list is visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is visible", ->$/;" f -d when the preview list is/was previously visible src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when the preview list is\/was previously visible", ->$/;" f -d when the project has no path src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the project has no path", ->$/;" f -d when the prototypes deactivate method is called src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the prototypes deactivate method is called", ->$/;" f -d when the right address is unspecified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when the right address is unspecified", ->$/;" f -d when the root directory is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the root directory is selected", ->$/;" f -d when the root view's project has a path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when the root view's project has a path", ->$/;" f -d when the snippet contains no tab stops src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet contains no tab stops", ->$/;" f -d when the snippet contains tab stops src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet contains tab stops", ->$/;" f -d when the snippet spans a single line src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet spans a single line", ->$/;" f -d when the snippet spans multiple lines src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the snippet spans multiple lines", ->$/;" f -d when the tab stops have placeholder text src/extensions/snippets/spec/snippets-spec.coffee /^ describe "when the tab stops have placeholder text", ->$/;" f -d when the text contains only word characters src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when the text contains only word characters", ->$/;" f -d when the tree view is focused src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is focused", ->$/;" f -d when the tree view is hidden src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is hidden", ->$/;" f -d when the tree view is not focused src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is not focused", ->$/;" f -d when the tree view is visible src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when the tree view is visible", ->$/;" f -d when there are multiple selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there are multiple selections", ->$/;" f -d when there are no matches src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "when there are no matches", ->$/;" f -d when there is NO edit session for the confirmed path on the active editor, but there is one on another editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when there is NO edit session for the confirmed path on the active editor, but there is one on another editor", ->$/;" f -d when there is a single selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there is a single selection", ->$/;" f -d when there is an edit session for the confirmed path in the active editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when there is an edit session for the confirmed path in the active editor", ->$/;" f -d when there is an entry before the currently selected entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is an entry before the currently selected entry", ->$/;" f -d when there is an expanded directory before the currently selected entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is an expanded directory before the currently selected entry", ->$/;" f -d when there is no active editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ describe "when there is no active editor", ->$/;" f -d when there is no address range is given src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there is no address range is given", ->$/;" f -d when there is no entry before the currently selected entry, but there is a parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is no entry before the currently selected entry, but there is a parent directory", ->$/;" f -d when there is no parent directory or previous entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when there is no parent directory or previous entry", ->$/;" f -d when there is no text selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when there is no text selection", ->$/;" f -d when tool-panel:unfocus is triggered on the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ describe "when tool-panel:unfocus is triggered on the command panel", ->$/;" f -d when tool-panel:unfocus is triggered on the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when tool-panel:unfocus is triggered on the tree view", ->$/;" f -d when tree-view:reveal-current-file is triggered on the root view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when tree-view:reveal-current-file is triggered on the root view", ->$/;" f -d when tree-view:toggle is triggered on the root view src/extensions/tree-view/spec/tree-view-spec.coffee /^ describe "when tree-view:toggle is triggered on the root view", ->$/;" f -d when two addresses are specified src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "when two addresses are specified", ->$/;" f -d where there are matches src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "where there are matches", ->$/;" f -d where there is no selection src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ describe "where there is no selection", ->$/;" f -d with multiple selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "with multiple selections", ->$/;" f -d x/regex/ src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ describe "x\/regex\/", ->$/;" f -deactivate src/app/root-view.coffee /^ deactivate: ->$/;" f -deactivate src/extensions/tree-view/src/tree-view.coffee /^ deactivate: ->$/;" f -deactivateExtension src/app/root-view.coffee /^ deactivateExtension: (extension) ->$/;" f -defaultEditSessionOptions src/app/project.coffee /^ defaultEditSessionOptions: ->$/;" f -define src/stdlib/require.coffee /^define = (cb) ->$/;" f -delete src/app/buffer.coffee /^ delete: (range) ->$/;" f -delete src/app/edit-session.coffee /^ delete: ->$/;" f -delete src/app/editor.coffee /^ delete: -> @activeEditSession.delete()$/;" f -delete src/app/selection.coffee /^ delete: ->$/;" f -deleteLine src/app/edit-session.coffee /^ deleteLine: ->$/;" f -deleteLine src/app/editor.coffee /^ deleteLine: -> @activeEditSession.deleteLine()$/;" f -deleteLine src/app/selection.coffee /^ deleteLine: ->$/;" f -deleteRow src/app/buffer.coffee /^ deleteRow: (row) ->$/;" f -deleteRows src/app/buffer.coffee /^ deleteRows: (start, end) ->$/;" f -deleteSelectedText src/app/selection.coffee /^ deleteSelectedText: ->$/;" f -deleteToEndOfWord src/app/edit-session.coffee /^ deleteToEndOfWord: ->$/;" f -deleteToEndOfWord src/app/editor.coffee /^ deleteToEndOfWord: -> @activeEditSession.deleteToEndOfWord()$/;" f -deleteToEndOfWord src/app/selection.coffee /^ deleteToEndOfWord: ->$/;" f -descriptor native/v8_extensions/native_linux.h /^ int descriptor;$/;" m struct:v8_extensions::NotifyContext -deserializeEntryExpansionStates src/extensions/tree-view/src/directory-view.coffee /^ deserializeEntryExpansionStates: (entryStates) ->$/;" f -deserializeView src/app/root-view.coffee /^ deserializeView: (viewState) ->$/;" f -destroy native/atom_gtk.cpp /^void destroy(void) {$/;" f -destroy native/linux/atom_app.cpp /^void destroy(void) {$/;" f -destroy src/app/anchor-range.coffee /^ destroy: ->$/;" f -destroy src/app/anchor.coffee /^ destroy: ->$/;" f -destroy src/app/buffer.coffee /^ destroy: ->$/;" f -destroy src/app/cursor.coffee /^ destroy: ->$/;" f -destroy src/app/display-buffer.coffee /^ destroy: ->$/;" f -destroy src/app/edit-session.coffee /^ destroy: ->$/;" f -destroy src/app/fold.coffee /^ destroy: ->$/;" f -destroy src/app/project.coffee /^ destroy: ->$/;" f -destroy src/app/selection.coffee /^ destroy: ->$/;" f -destroy src/app/tokenized-buffer.coffee /^ destroy: ->$/;" f -destroy src/extensions/command-panel/src/command-panel.coffee /^ destroy: ->$/;" f -destroy src/extensions/command-panel/src/operation.coffee /^ destroy: ->$/;" f -destroy src/extensions/command-panel/src/preview-list.coffee /^ destroy: ->$/;" f -destroy src/extensions/snippets/src/snippet-expansion.coffee /^ destroy: ->$/;" f -destroyActiveEditSession src/app/editor.coffee /^ destroyActiveEditSession: ->$/;" f -destroyEditSessionIndex src/app/editor.coffee /^ destroyEditSessionIndex: (index) ->$/;" f -destroyEditSessions src/app/editor.coffee /^ destroyEditSessions: ->$/;" f -destroyFold src/app/display-buffer.coffee /^ destroyFold: (fold) ->$/;" f -destroyFold src/app/edit-session.coffee /^ destroyFold: (foldId) ->$/;" f -destroyFold src/app/editor.coffee /^ destroyFold: (foldId) -> @activeEditSession.destroyFold(foldId)$/;" f -destroyFoldsContainingBufferRow src/app/display-buffer.coffee /^ destroyFoldsContainingBufferRow: (bufferRow) ->$/;" f -destroyFoldsContainingBufferRow src/app/edit-session.coffee /^ destroyFoldsContainingBufferRow: (bufferRow) ->$/;" f -destroyFoldsContainingBufferRow src/app/editor.coffee /^ destroyFoldsContainingBufferRow: (bufferRow) -> @activeEditSession.destroyFoldsContainingBufferRow(bufferRow)$/;" f -destroyFoldsIntersectingBufferRange src/app/edit-session.coffee /^ destroyFoldsIntersectingBufferRange: (bufferRange) ->$/;" f -destroyOperations src/extensions/command-panel/src/preview-list.coffee /^ destroyOperations: ->$/;" f -destroys previously previewed operations if there are any src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "destroys previously previewed operations if there are any", ->$/;" f -detach src/extensions/autocomplete/src/autocomplete.coffee /^ detach: ->$/;" f -detach src/extensions/command-panel/src/command-panel.coffee /^ detach: ->$/;" f -detach src/extensions/markdown-preview/src/markdown-preview.coffee /^ detach: ->$/;" f -detach src/extensions/tree-view/src/tree-view.coffee /^ detach: ->$/;" f -detaches the TreeView, focuses the RootView and does not bubble the core:close event src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "detaches the TreeView, focuses the RootView and does not bubble the core:close event", ->$/;" f -detaches the command panel, focuses the RootView and does not bubble the core:close event src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "detaches the command panel, focuses the RootView and does not bubble the core:close event", ->$/;" f -detaches the finder and focuses the previously focused element src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "detaches the finder and focuses the previously focused element", ->$/;" f -detaches the palette, then focuses the previously focused element and emits the selected event on it src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "detaches the palette, then focuses the previously focused element and emits the selected event on it", ->$/;" f -detectResurrection src/app/file.coffee /^ detectResurrection: ->$/;" f -detectResurrectionAfterDelay src/app/file.coffee /^ detectResurrectionAfterDelay: ->$/;" f -devToolsView native/atom_window_controller.h /^@property (nonatomic, retain) IBOutlet NSView *devToolsView;$/;" v -devToolsView native/atom_window_controller.mm /^@synthesize devToolsView=_devToolsView;$/;" v -directory src/stdlib/fs.coffee /^ directory: (path) ->$/;" f -displays a preview for a .markdown file src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "displays a preview for a .markdown file", ->$/;" f -displays and focuses the operation preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "displays and focuses the operation preview list", ->$/;" f -displays error when no tags match text in mini-editor src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "displays error when no tags match text in mini-editor", ->$/;" f -dmax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance dmax; \/* max-distance of exact or map *\/$/;" m struct:re_pattern_buffer -dmax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance dmax; \/* max-distance of exact or map *\/$/;" m struct:re_pattern_buffer -dmax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance dmax; \/* max-distance of exact or map *\/$/;" m struct:re_pattern_buffer -dmin native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigDistance dmin; \/* min-distance of exact or map *\/$/;" m struct:re_pattern_buffer -dmin native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigDistance dmin; \/* min-distance of exact or map *\/$/;" m struct:re_pattern_buffer -dmin native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigDistance dmin; \/* min-distance of exact or map *\/$/;" m struct:re_pattern_buffer -do src/app/buffer-change-operation.coffee /^ do: ->$/;" f -does not change the selection src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does not change the selection", ->$/;" f -does not clear out a previously confirmed selection when canceling with an empty list src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "does not clear out a previously confirmed selection when canceling with an empty list", ->$/;" f -does not create a root node src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does not create a root node", ->$/;" f -does not display a preview for non-markdown file src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "does not display a preview for non-markdown file", ->$/;" f -does not indent the next line src/extensions/snippets/spec/snippets-spec.coffee /^ it "does not indent the next line", ->$/;" f -does not open src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "does not open", ->$/;" f -does not open the FuzzyFinder src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "does not open the FuzzyFinder", ->$/;" f -does not push to the undo stack (since the buffer is not modified) src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "does not push to the undo stack (since the buffer is not modified)", ->$/;" f -does not raise an error src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does not raise an error", ->$/;" f -does not scroll it to the left src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "does not scroll it to the left", ->$/;" f -does nothing src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "does nothing", ->$/;" f -does nothing if there are no matches src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "does nothing if there are no matches", ->$/;" f -doesBufferRowStartFold src/app/language-mode.coffee /^ doesBufferRowStartFold: (bufferRow) ->$/;" f -doesn't move the cursor when no declaration is found src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "doesn't move the cursor when no declaration is found", ->$/;" f -duplicate native/v8_extensions/readtags.c /^static char *duplicate (const char *str)$/;" f file: -edit src/app/editor.coffee /^ edit: (editSession) ->$/;" f -editor src/app/gutter.coffee /^ editor: ->$/;" f -editorFocused src/app/root-view.coffee /^ editorFocused: (editor) ->$/;" f -enableSnippetsInEditor src/extensions/snippets/src/snippets.coffee /^ enableSnippetsInEditor: (editor) ->$/;" f -enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:re_pattern_buffer -enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:__anon5 -enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:re_pattern_buffer -enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:__anon12 -enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:re_pattern_buffer -enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding enc;$/;" m struct:__anon19 -end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int end;$/;" m struct:OnigCaptureTreeNodeStruct -end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int* end;$/;" m struct:re_registers -end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int end;$/;" m struct:OnigCaptureTreeNodeStruct -end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int* end;$/;" m struct:re_registers -end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int end;$/;" m struct:OnigCaptureTreeNodeStruct -end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int* end;$/;" m struct:re_registers -ensureValidTabStops src/extensions/snippets/src/snippet-expansion.coffee /^ ensureValidTabStops: ->$/;" f -entryClicked src/extensions/tree-view/src/tree-view.coffee /^ entryClicked: (e) ->$/;" f -entryForPath src/extensions/tree-view/src/tree-view.coffee /^ entryForPath: (path) ->$/;" f -error src/extensions/markdown-preview/src/markdown-preview.coffee /^ error: (jqXhr, error) => @setHtml(@getErrorHtml(error))$/;" f -errorMessagesForOperations src/extensions/command-panel/src/commands/composite-command.coffee /^ errorMessagesForOperations: (operations) ->$/;" f -error_number native/v8_extensions/readtags.h /^ int error_number;$/;" m struct:__anon28::__anon29 -esc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint esc;$/;" m struct:__anon3 -esc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint esc;$/;" m struct:__anon10 -esc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint esc;$/;" m struct:__anon17 -escapeRegExp src/stdlib/underscore-extensions.coffee /^ escapeRegExp: (string) ->$/;" f -escapedCommand src/extensions/command-panel/src/command-panel.coffee /^ escapedCommand: ->$/;" f -eval src/extensions/command-panel/src/command-interpreter.coffee /^ eval: (string, activeEditSession) ->$/;" f -evalSnippets src/extensions/snippets/src/snippets.coffee /^ evalSnippets: (extension, text) ->$/;" f -eventTypes native/v8_extensions/native_linux.h /^ CefRefPtr eventTypes;$/;" m struct:v8_extensions::CallbackContext -exact native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char *exact;$/;" m struct:re_pattern_buffer -exact native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char *exact;$/;" m struct:re_pattern_buffer -exact native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char *exact;$/;" m struct:re_pattern_buffer -exact_end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char *exact_end;$/;" m struct:re_pattern_buffer -exact_end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char *exact_end;$/;" m struct:re_pattern_buffer -exact_end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char *exact_end;$/;" m struct:re_pattern_buffer -execute src/extensions/command-panel/src/commands/composite-command.coffee /^ execute: (project, editSession) ->$/;" f -execute src/extensions/command-panel/src/operation.coffee /^ execute: (editSession) ->$/;" f -executeCommands src/extensions/command-panel/src/commands/composite-command.coffee /^ executeCommands: (commands, project, editSession, ranges) ->$/;" f -executeOperations src/extensions/command-panel/src/commands/composite-command.coffee /^ executeOperations = ->$/;" f -executeSelectedOperation src/extensions/command-panel/src/preview-list.coffee /^ executeSelectedOperation: ->$/;" f -executes it immediately on the current buffer src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "executes it immediately on the current buffer", ->$/;" f -executes the command with the escaped character (instead of as a backslash followed by the character) src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "executes the command with the escaped character (instead of as a backslash followed by the character)", ->$/;" f -exists native/v8_extensions/git.mm /^ bool exists;$/;" m class:v8_extensions::GitRepository file: -exists src/app/file.coffee /^ exists: ->$/;" f -exists src/stdlib/fs.coffee /^ exists: (path) ->$/;" f -expand src/extensions/tree-view/src/directory-view.coffee /^ expand: ->$/;" f -expandBufferRangeToLineEnds src/app/display-buffer.coffee /^ expandBufferRangeToLineEnds: (bufferRange) ->$/;" f -expandDirectory src/extensions/tree-view/src/tree-view.coffee /^ expandDirectory: ->$/;" f -expandLastSelectionOverLine src/app/edit-session.coffee /^ expandLastSelectionOverLine: ->$/;" f -expandLastSelectionOverWord src/app/edit-session.coffee /^ expandLastSelectionOverWord: ->$/;" f -expandOverLine src/app/selection.coffee /^ expandOverLine: ->$/;" f -expandOverWord src/app/selection.coffee /^ expandOverWord: ->$/;" f -expandScreenRangeToLineEnds src/app/display-buffer.coffee /^ expandScreenRangeToLineEnds: (screenRange) ->$/;" f -expandSelectionsBackward src/app/edit-session.coffee /^ expandSelectionsBackward: (fn) ->$/;" f -expandSelectionsForward src/app/edit-session.coffee /^ expandSelectionsForward: (fn) ->$/;" f -expands / collapses the associated directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "expands \/ collapses the associated directory", ->$/;" f -expands or collapses the directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "expands or collapses the directory", ->$/;" f -expands the current directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "expands the current directory", ->$/;" f -expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop src/extensions/snippets/spec/snippets-spec.coffee /^ it "expands the snippet based on the current prefix rather than jumping to the old snippet's tab stop", ->$/;" f -extension src/stdlib/fs.coffee /^ extension: (path) ->$/;" f -extensionFields native/v8_extensions/readtags.c /^static int extensionFields;$/;" v file: -extname src/stdlib/path.coffee /^ extname: (filepath) ->$/;" f -extractTabStops src/extensions/snippets/src/snippet.coffee /^ extractTabStops: (bodyLines) ->$/;" f -fields native/v8_extensions/readtags.c /^ } fields;$/;" m struct:sTagFile typeref:struct:sTagFile::__anon24 file: -fields native/v8_extensions/readtags.h /^ } fields;$/;" m struct:__anon33 typeref:struct:__anon33::__anon35 -file native/v8_extensions/readtags.h /^ const char *file;$/;" m struct:__anon33 -file native/v8_extensions/readtags.h /^ } file;$/;" m struct:__anon28 typeref:struct:__anon28::__anon30 -fileExists src/app/buffer.coffee /^ fileExists: ->$/;" f -fileScope native/v8_extensions/readtags.h /^ short fileScope;$/;" m struct:__anon33 -fillDirtyRanges src/app/editor.coffee /^ fillDirtyRanges: (intactRanges, renderFrom, renderTo) ->$/;" f -filterMatches src/extensions/autocomplete/src/autocomplete.coffee /^ filterMatches: ->$/;" f -finalize src/app/selection.coffee /^ finalize: ->$/;" f -finalizeSelections src/app/edit-session.coffee /^ finalizeSelections: ->$/;" f -find native/v8_extensions/readtags.c /^static tagResult find (tagFile *const file, tagEntry *const entry,$/;" f file: -find src/extensions/outline-view/src/tag-reader.coffee /^find: (editor) ->$/;" f -findBinary native/v8_extensions/readtags.c /^static tagResult findBinary (tagFile *const file)$/;" f file: -findClosingBracket src/app/tokenized-buffer.coffee /^ findClosingBracket: (startBufferPosition) ->$/;" f -findFirstMatchBefore native/v8_extensions/readtags.c /^static tagResult findFirstMatchBefore (tagFile *const file)$/;" f file: -findFirstNonMatchBefore native/v8_extensions/readtags.c /^static void findFirstNonMatchBefore (tagFile *const file)$/;" f file: -findMatchesForCurrentSelection src/extensions/autocomplete/src/autocomplete.coffee /^ findMatchesForCurrentSelection: ->$/;" f -findNext native/v8_extensions/readtags.c /^static tagResult findNext (tagFile *const file, tagEntry *const entry)$/;" f file: -findOpeningBracket src/app/tokenized-buffer.coffee /^ findOpeningBracket: (startBufferPosition) ->$/;" f -findSequential native/v8_extensions/readtags.c /^static tagResult findSequential (tagFile *const file)$/;" f file: -findTag native/v8_extensions/readtags.c /^static void findTag (const char *const name, const int options)$/;" f file: -findWrapColumn src/app/display-buffer.coffee /^ findWrapColumn: (line, softWrapColumn) ->$/;" f -firstInvalidRow src/app/tokenized-buffer.coffee /^ firstInvalidRow: ->$/;" f -fn src/extensions/tree-view/src/tree-view.coffee /^ fn = (bestMatchEntry, element) ->$/;" f -focus the root view and detaches the event palette src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "focus the root view and detaches the event palette", ->$/;" f -focusNextPane src/app/root-view.coffee /^ focusNextPane: ->$/;" f -focuses the editor that contains an edit session for the selected path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "focuses the editor that contains an edit session for the selected path", ->$/;" f -focuses the mini editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "focuses the mini editor", ->$/;" f -focuses the mini editor and does not show the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "focuses the mini editor and does not show the preview list", ->$/;" f -focuses the mini-editor and selects the first event src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "focuses the mini-editor and selects the first event", ->$/;" f -focuses the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "focuses the preview list", ->$/;" f -focuses the root view and detaches the event palette src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "focuses the root view and detaches the event palette", ->$/;" f -fold src/app/selection.coffee /^ fold: ->$/;" f -foldAll src/app/display-buffer.coffee /^ foldAll: ->$/;" f -foldAll src/app/edit-session.coffee /^ foldAll: ->$/;" f -foldAll src/app/editor.coffee /^ foldAll: -> @activeEditSession.foldAll()$/;" f -foldBufferRow src/app/display-buffer.coffee /^ foldBufferRow: (bufferRow) ->$/;" f -foldBufferRow src/app/edit-session.coffee /^ foldBufferRow: (bufferRow) ->$/;" f -foldCurrentRow src/app/edit-session.coffee /^ foldCurrentRow: ->$/;" f -foldCurrentRow src/app/editor.coffee /^ foldCurrentRow: -> @activeEditSession.foldCurrentRow()$/;" f -foldFor src/app/display-buffer.coffee /^ foldFor: (startRow, endRow) ->$/;" f -foldSelection src/app/edit-session.coffee /^ foldSelection: ->$/;" f -foldSelection src/app/editor.coffee /^ foldSelection: -> @activeEditSession.foldSelection()$/;" f -format native/v8_extensions/readtags.c /^ short format;$/;" m struct:sTagFile file: -format native/v8_extensions/readtags.h /^ short format;$/;" m struct:__anon28::__anon30 -fp native/v8_extensions/readtags.c /^ FILE* fp;$/;" m struct:sTagFile file: -function native/v8_extensions/native_linux.h /^ CefRefPtr function;$/;" m struct:v8_extensions::CallbackContext -gPathWatchers native/path_watcher.mm /^static NSMutableArray *gPathWatchers;$/;" v file: -g_handler native/linux/atom_app.cpp /^CefRefPtr g_handler;$/;" v -generate src/extensions/outline-view/src/tag-generator.coffee /^ generate: ->$/;" f -generates no tags for text file src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "generates no tags for text file", ->$/;" f -generates tags for all JavaScript functions src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "generates tags for all JavaScript functions", ->$/;" f -get src/stdlib/storage.coffee /^ get: (key, defaultValue=null) ->$/;" f -getActiveEditSession src/app/root-view.coffee /^ getActiveEditSession: ->$/;" f -getActiveEditSessionIndex src/app/editor.coffee /^ getActiveEditSessionIndex: ->$/;" f -getActiveEditor src/app/root-view.coffee /^ getActiveEditor: ->$/;" f -getActivePath src/extensions/markdown-preview/src/markdown-preview.coffee /^ getActivePath: ->$/;" f -getActiveText src/extensions/markdown-preview/src/markdown-preview.coffee /^ getActiveText: ->$/;" f -getAllFilePathsAsync src/stdlib/fs.coffee /^ getAllFilePathsAsync: (rootPath, callback) ->$/;" f -getAnchorRanges src/app/edit-session.coffee /^ getAnchorRanges: ->$/;" f -getAnchors src/app/buffer.coffee /^ getAnchors: -> new Array(@anchors...)$/;" f -getAnchors src/app/edit-session.coffee /^ getAnchors: ->$/;" f -getAutoIndent src/app/project.coffee /^ getAutoIndent: -> @autoIndent$/;" f -getBaseName src/app/buffer.coffee /^ getBaseName: ->$/;" f -getBaseName src/app/directory.coffee /^ getBaseName: ->$/;" f -getBaseName src/app/file.coffee /^ getBaseName: ->$/;" f -getBeginningOfCurrentWordBufferPosition src/app/cursor.coffee /^ getBeginningOfCurrentWordBufferPosition: (options = {}) ->$/;" f -getBuffer src/app/editor.coffee /^ getBuffer: -> @activeEditSession.buffer$/;" f -getBufferColumn src/app/cursor.coffee /^ getBufferColumn: ->$/;" f -getBufferPosition src/app/anchor.coffee /^ getBufferPosition: ->$/;" f -getBufferPosition src/app/cursor-view.coffee /^ getBufferPosition: ->$/;" f -getBufferPosition src/app/cursor.coffee /^ getBufferPosition: ->$/;" f -getBufferRange src/app/anchor-range.coffee /^ getBufferRange: ->$/;" f -getBufferRange src/app/fold.coffee /^ getBufferRange: ({includeNewline}={}) ->$/;" f -getBufferRange src/app/selection-view.coffee /^ getBufferRange: ->$/;" f -getBufferRange src/app/selection.coffee /^ getBufferRange: ->$/;" f -getBufferRange src/extensions/command-panel/src/operation.coffee /^ getBufferRange: ->$/;" f -getBufferRow src/app/cursor.coffee /^ getBufferRow: ->$/;" f -getBufferRowCount src/app/fold.coffee /^ getBufferRowCount: ->$/;" f -getBufferRowRange src/app/selection.coffee /^ getBufferRowRange: ->$/;" f -getBuffers src/app/project.coffee /^ getBuffers: ->$/;" f -getCenterPixelPosition src/app/selection-view.coffee /^ getCenterPixelPosition: ->$/;" f -getCurrentBufferLine src/app/cursor.coffee /^ getCurrentBufferLine: ->$/;" f -getCurrentLineBufferRange src/app/cursor.coffee /^ getCurrentLineBufferRange: (options) ->$/;" f -getCurrentWordBufferRange src/app/cursor.coffee /^ getCurrentWordBufferRange: ->$/;" f -getCurrentWordPrefix src/app/cursor.coffee /^ getCurrentWordPrefix: ->$/;" f -getCursor src/app/edit-session.coffee /^ getCursor: (index=0) ->$/;" f -getCursor src/app/editor.coffee /^ getCursor: (index) -> @activeEditSession.getCursor(index)$/;" f -getCursorBufferPosition src/app/edit-session.coffee /^ getCursorBufferPosition: ->$/;" f -getCursorBufferPosition src/app/editor.coffee /^ getCursorBufferPosition: -> @activeEditSession.getCursorBufferPosition()$/;" f -getCursorScreenPosition src/app/edit-session.coffee /^ getCursorScreenPosition: ->$/;" f -getCursorScreenPosition src/app/editor.coffee /^ getCursorScreenPosition: -> @activeEditSession.getCursorScreenPosition()$/;" f -getCursorScreenRow src/app/edit-session.coffee /^ getCursorScreenRow: ->$/;" f -getCursorScreenRow src/app/editor.coffee /^ getCursorScreenRow: -> @activeEditSession.getCursorScreenRow()$/;" f -getCursorView src/app/editor.coffee /^ getCursorView: (index) ->$/;" f -getCursorViews src/app/editor.coffee /^ getCursorViews: ->$/;" f -getCursors src/app/edit-session.coffee /^ getCursors: -> new Array(@cursors...)$/;" f -getCursors src/app/editor.coffee /^ getCursors: -> @activeEditSession.getCursors()$/;" f -getEditSessions src/app/editor.coffee /^ getEditSessions: ->$/;" f -getEditSessions src/app/project.coffee /^ getEditSessions: ->$/;" f -getEditors src/app/root-view.coffee /^ getEditors: ->$/;" f -getEndOfCurrentWordBufferPosition src/app/cursor.coffee /^ getEndOfCurrentWordBufferPosition: (options = {}) ->$/;" f -getEntries src/app/directory.coffee /^ getEntries: ->$/;" f -getEofBufferPosition src/app/edit-session.coffee /^ getEofBufferPosition: -> @buffer.getEofPosition()$/;" f -getEofPosition src/app/buffer.coffee /^ getEofPosition: ->$/;" f -getEofPosition src/app/editor.coffee /^ getEofPosition: -> @getBuffer().getEofPosition()$/;" f -getErrorHtml src/extensions/markdown-preview/src/markdown-preview.coffee /^ getErrorHtml: (error) ->$/;" f -getExtension src/app/buffer.coffee /^ getExtension: ->$/;" f -getFileExtension src/app/edit-session.coffee /^ getFileExtension: -> @buffer.getExtension()$/;" f -getFilePaths src/app/project.coffee /^ getFilePaths: ->$/;" f -getFirstVisibleScreenRow src/app/editor.coffee /^ getFirstVisibleScreenRow: ->$/;" f -getFocusedPane src/app/root-view.coffee /^ getFocusedPane: ->$/;" f -getFontSize src/app/root-view.coffee /^ getFontSize: -> @fontSize$/;" f -getGit src/app/buffer.coffee /^ getGit: -> @git$/;" f -getGuideColumn src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ getGuideColumn: ->$/;" f -getHead src/app/git.coffee /^ getHead: ->$/;" f -getHideIgnoredFiles src/app/project.coffee /^ getHideIgnoredFiles: -> @hideIgnoredFiles$/;" f -getIncludedPatterns src/app/text-mate-grammar.coffee /^ getIncludedPatterns: (included) ->$/;" f -getIncludedPatterns src/app/text-mate-grammar.coffee /^ getIncludedPatterns: (included=[]) ->$/;" f -getIndentLevel src/app/cursor.coffee /^ getIndentLevel: ->$/;" f -getInvertedPairedCharacters src/app/language-mode.coffee /^ getInvertedPairedCharacters: ->$/;" f -getInvisibles src/app/root-view.coffee /^ getInvisibles: -> @invisibles$/;" f -getLastBufferRow src/app/edit-session.coffee /^ getLastBufferRow: -> @buffer.getLastRow()$/;" f -getLastBufferRow src/app/editor.coffee /^ getLastBufferRow: -> @getBuffer().getLastRow()$/;" f -getLastCursor src/app/edit-session.coffee /^ getLastCursor: ->$/;" f -getLastCursor src/app/editor.coffee /^ getLastCursor: -> @activeEditSession.getLastCursor()$/;" f -getLastLine src/app/buffer.coffee /^ getLastLine: ->$/;" f -getLastRow src/app/buffer.coffee /^ getLastRow: ->$/;" f -getLastRow src/app/display-buffer.coffee /^ getLastRow: ->$/;" f -getLastRow src/app/tokenized-buffer.coffee /^ getLastRow: ->$/;" f -getLastScreenRow src/app/edit-session.coffee /^ getLastScreenRow: -> @displayBuffer.getLastRow()$/;" f -getLastScreenRow src/app/editor.coffee /^ getLastScreenRow: -> @activeEditSession.getLastScreenRow()$/;" f -getLastSelection src/app/edit-session.coffee /^ getLastSelection: ->$/;" f -getLastSelectionInBuffer src/app/edit-session.coffee /^ getLastSelectionInBuffer: ->$/;" f -getLastSelectionInBuffer src/app/editor.coffee /^ getLastSelectionInBuffer: -> @activeEditSession.getLastSelectionInBuffer()$/;" f -getLastVisibleScreenRow src/app/editor.coffee /^ getLastVisibleScreenRow: ->$/;" f -getLineCount src/app/buffer.coffee /^ getLineCount: ->$/;" f -getLineCount src/app/editor.coffee /^ getLineCount: -> @getBuffer().getLineCount()$/;" f -getLines src/app/buffer.coffee /^ getLines: ->$/;" f -getLines src/app/display-buffer.coffee /^ getLines: ->$/;" f -getMaxBufferColumn src/app/screen-line.coffee /^ getMaxBufferColumn: ->$/;" f -getMaxScreenColumn src/app/screen-line.coffee /^ getMaxScreenColumn: ->$/;" f -getModifiedBuffers src/app/root-view.coffee /^ getModifiedBuffers: ->$/;" f -getNextTokens src/app/text-mate-grammar.coffee /^ getNextTokens: (stack, line, position) ->$/;" f -getOpenBufferPaths src/app/editor.coffee /^ getOpenBufferPaths: ->$/;" f -getOpenBufferPaths src/app/root-view.coffee /^ getOpenBufferPaths: ->$/;" f -getOperations src/extensions/command-panel/src/preview-list.coffee /^ getOperations: ->$/;" f -getPageRows src/app/editor.coffee /^ getPageRows: ->$/;" f -getPath src/app/buffer.coffee /^ getPath: ->$/;" f -getPath src/app/directory.coffee /^ getPath: -> @path$/;" f -getPath src/app/edit-session.coffee /^ getPath: -> @buffer.getPath()$/;" f -getPath src/app/editor.coffee /^ getPath: -> @getBuffer().getPath()$/;" f -getPath src/app/file.coffee /^ getPath: -> @path$/;" f -getPath src/app/git.coffee /^ getPath: -> @repo.getPath()$/;" f -getPath src/app/project.coffee /^ getPath: ->$/;" f -getPath src/extensions/command-panel/src/operation.coffee /^ getPath: ->$/;" f -getPath src/extensions/tree-view/src/directory-view.coffee /^ getPath: ->$/;" f -getPath src/extensions/tree-view/src/file-view.coffee /^ getPath: ->$/;" f -getPathStatus src/app/git.coffee /^ getPathStatus: (path) ->$/;" f -getPixelPosition src/app/cursor-view.coffee /^ getPixelPosition: ->$/;" f -getPreferencesByScopeSelector src/app/text-mate-bundle.coffee /^ getPreferencesByScopeSelector: ->$/;" f -getPreferencesPath src/app/text-mate-bundle.coffee /^ getPreferencesPath: ->$/;" f -getRange src/app/buffer.coffee /^ getRange: ->$/;" f -getRange src/extensions/command-panel/src/commands/address-range.coffee /^ getRange: (buffer, range) ->$/;" f -getRange src/extensions/command-panel/src/commands/current-selection-address.coffee /^ getRange: (buffer, range) ->$/;" f -getRange src/extensions/command-panel/src/commands/default-address-range.coffee /^ getRange: (buffer, range)->$/;" f -getRange src/extensions/command-panel/src/commands/eof-address.coffee /^ getRange: (buffer, range) ->$/;" f -getRange src/extensions/command-panel/src/commands/line-address.coffee /^ getRange: ->$/;" f -getRange src/extensions/command-panel/src/commands/regex-address.coffee /^ getRange: (buffer, range) ->$/;" f -getRange src/extensions/command-panel/src/commands/zero-address.coffee /^ getRange: ->$/;" f -getRootDirectory src/app/project.coffee /^ getRootDirectory: ->$/;" f -getRowCount src/app/range.coffee /^ getRowCount: ->$/;" f -getRuleToPush src/app/text-mate-grammar.coffee /^ getRuleToPush: (line, beginPatternCaptureIndices) ->$/;" f -getRulesets src/app/text-mate-theme.coffee /^ getRulesets: -> @rulesets$/;" f -getScanner src/app/text-mate-grammar.coffee /^ getScanner: ->$/;" f -getScreenColumn src/app/cursor.coffee /^ getScreenColumn: ->$/;" f -getScreenPosition src/app/anchor.coffee /^ getScreenPosition: ->$/;" f -getScreenPosition src/app/cursor-view.coffee /^ getScreenPosition: ->$/;" f -getScreenPosition src/app/cursor.coffee /^ getScreenPosition: ->$/;" f -getScreenRange src/app/anchor-range.coffee /^ getScreenRange: ->$/;" f -getScreenRange src/app/selection-view.coffee /^ getScreenRange: ->$/;" f -getScreenRange src/app/selection.coffee /^ getScreenRange: ->$/;" f -getScreenRow src/app/anchor.coffee /^ getScreenRow: ->$/;" f -getScreenRow src/app/cursor.coffee /^ getScreenRow: ->$/;" f -getScrollLeft src/app/edit-session.coffee /^ getScrollLeft: -> @scrollLeft$/;" f -getScrollTop src/app/edit-session.coffee /^ getScrollTop: -> @scrollTop$/;" f -getSelectedBufferRange src/app/edit-session.coffee /^ getSelectedBufferRange: ->$/;" f -getSelectedBufferRange src/app/editor.coffee /^ getSelectedBufferRange: -> @activeEditSession.getSelectedBufferRange()$/;" f -getSelectedBufferRanges src/app/edit-session.coffee /^ getSelectedBufferRanges: ->$/;" f -getSelectedBufferRanges src/app/editor.coffee /^ getSelectedBufferRanges: -> @activeEditSession.getSelectedBufferRanges()$/;" f -getSelectedItem src/app/select-list.coffee /^ getSelectedItem: ->$/;" f -getSelectedOperation src/extensions/command-panel/src/preview-list.coffee /^ getSelectedOperation: ->$/;" f -getSelectedScreenRange src/app/edit-session.coffee /^ getSelectedScreenRange: ->$/;" f -getSelectedText src/app/edit-session.coffee /^ getSelectedText: ->$/;" f -getSelectedText src/app/editor.coffee /^ getSelectedText: -> @activeEditSession.getSelectedText()$/;" f -getSelection src/app/edit-session.coffee /^ getSelection: (index) ->$/;" f -getSelection src/app/editor.coffee /^ getSelection: (index) -> @activeEditSession.getSelection(index)$/;" f -getSelectionView src/app/editor.coffee /^ getSelectionView: (index) ->$/;" f -getSelectionViews src/app/editor.coffee /^ getSelectionViews: ->$/;" f -getSelections src/app/edit-session.coffee /^ getSelections: -> new Array(@selections...)$/;" f -getSelections src/app/editor.coffee /^ getSelections: -> @activeEditSession.getSelections()$/;" f -getSelectionsOrderedByBufferPosition src/app/edit-session.coffee /^ getSelectionsOrderedByBufferPosition: ->$/;" f -getSelectionsOrderedByBufferPosition src/app/editor.coffee /^ getSelectionsOrderedByBufferPosition: -> @activeEditSession.getSelectionsOrderedByBufferPosition()$/;" f -getShortHead src/app/git.coffee /^ getShortHead: ->$/;" f -getSoftTabs src/app/project.coffee /^ getSoftTabs: -> @softTabs$/;" f -getSoftWrap src/app/edit-session.coffee /^ getSoftWrap: -> @softWrap$/;" f -getSoftWrap src/app/project.coffee /^ getSoftWrap: -> @softWrap$/;" f -getStylesheet src/app/text-mate-theme.coffee /^ getStylesheet: ->$/;" f -getSyntaxesPath src/app/text-mate-bundle.coffee /^ getSyntaxesPath: ->$/;" f -getTabLength src/app/display-buffer.coffee /^ getTabLength: ->$/;" f -getTabLength src/app/edit-session.coffee /^ getTabLength: -> @displayBuffer.getTabLength()$/;" f -getTabLength src/app/tokenized-buffer.coffee /^ getTabLength: ->$/;" f -getTabText src/app/edit-session.coffee /^ getTabText: -> @buildIndentString(1)$/;" f -getText src/app/buffer.coffee /^ getText: ->$/;" f -getText src/app/editor.coffee /^ getText: -> @getBuffer().getText()$/;" f -getText src/app/selection.coffee /^ getText: ->$/;" f -getTextInBufferRange src/app/edit-session.coffee /^ getTextInBufferRange: (range) ->$/;" f -getTextInRange src/app/buffer.coffee /^ getTextInRange: (range) ->$/;" f -getTextInRange src/app/editor.coffee /^ getTextInRange: (range) -> @getBuffer().getTextInRange(range)$/;" f -getTitle src/app/root-view.coffee /^ getTitle: ->$/;" f -getTokensForCaptureIndices src/app/text-mate-grammar.coffee /^ getTokensForCaptureIndices: (line, captureIndices, scopes) ->$/;" f -getValueAsHtml src/app/token.coffee /^ getValueAsHtml: ({invisibles, hasLeadingWhitespace, hasTrailingWhitespace})->$/;" f -getWorkingDirectory src/app/git.coffee /^ getWorkingDirectory: ->$/;" f -get_case_fold_codes_by_str native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);$/;" m struct:OnigEncodingTypeST -get_case_fold_codes_by_str native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);$/;" m struct:OnigEncodingTypeST -get_case_fold_codes_by_str native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*get_case_fold_codes_by_str)(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem acs[]);$/;" m struct:OnigEncodingTypeST -get_ctype_code_range native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);$/;" m struct:OnigEncodingTypeST -get_ctype_code_range native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);$/;" m struct:OnigEncodingTypeST -get_ctype_code_range native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*get_ctype_code_range)(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[]);$/;" m struct:OnigEncodingTypeST -goToNextTabStop src/extensions/snippets/src/snippet-expansion.coffee /^ goToNextTabStop: ->$/;" f -goToPreviousTabStop src/extensions/snippets/src/snippet-expansion.coffee /^ goToPreviousTabStop: ->$/;" f -gotoFirstLogicalTag native/v8_extensions/readtags.c /^static void gotoFirstLogicalTag (tagFile *const file)$/;" f file: -group native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int group; \/* group number *\/$/;" m struct:OnigCaptureTreeNodeStruct -group native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int group; \/* group number *\/$/;" m struct:OnigCaptureTreeNodeStruct -group native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int group; \/* group number *\/$/;" m struct:OnigCaptureTreeNodeStruct -growFields native/v8_extensions/readtags.c /^static tagResult growFields (tagFile *const file)$/;" f file: -growString native/v8_extensions/readtags.c /^static int growString (vstring *s)$/;" f file: -hInst native/atom_win.cpp /^HINSTANCE hInst; \/\/ current instance$/;" v -handleBeingOpenedAgain native/main_mac.mm /^void handleBeingOpenedAgain(int argc, char* argv[]) {$/;" f -handleBufferChange src/app/anchor.coffee /^ handleBufferChange: (e) ->$/;" f -handleBufferChange src/app/display-buffer.coffee /^ handleBufferChange: (e) ->$/;" f -handleBufferChange src/app/fold.coffee /^ handleBufferChange: (event) ->$/;" f -handleBufferChange src/app/tokenized-buffer.coffee /^ handleBufferChange: (e) ->$/;" f -handleEvents src/app/editor.coffee /^ handleEvents: ->$/;" f -handleEvents src/app/root-view.coffee /^ handleEvents: ->$/;" f -handleEvents src/extensions/autocomplete/src/autocomplete.coffee /^ handleEvents: ->$/;" f -handleKeyEvent src/app/keymap.coffee /^ handleKeyEvent: (event) ->$/;" f -handleMatch src/app/text-mate-grammar.coffee /^ handleMatch: (stack, line, captureIndices) ->$/;" f -handleNativeChangeEvent src/app/file.coffee /^ handleNativeChangeEvent: (eventType, path) ->$/;" f -handleScreenLinesChange src/app/editor.coffee /^ handleScreenLinesChange: (change) ->$/;" f -handleTokenizedBufferChange src/app/display-buffer.coffee /^ handleTokenizedBufferChange: (tokenizedBufferChange) ->$/;" f -hasFocus src/extensions/tree-view/src/tree-view.coffee /^ hasFocus: ->$/;" f -hasMultipleCursors src/app/edit-session.coffee /^ hasMultipleCursors: ->$/;" f -hasOperations src/extensions/command-panel/src/preview-list.coffee /^ hasOperations: -> @operations?$/;" f -hides the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "hides the command panel", ->$/;" f -hides the guide when the column is less than 1 src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "hides the guide when the column is less than 1", ->$/;" f -hides the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "hides the tree view", ->$/;" f -highlight src/app/selection-view.coffee /^ highlight: ->$/;" f -highlightCursorLine src/app/editor.coffee /^ highlightCursorLine: ->$/;" f -highlightCursorLine src/app/gutter.coffee /^ highlightCursorLine = => @highlightCursorLine()$/;" f -highlightCursorLine src/app/gutter.coffee /^ highlightCursorLine: ->$/;" f -highlightFoldsContainingBufferRange src/app/editor.coffee /^ highlightFoldsContainingBufferRange: (bufferRange) ->$/;" f -highlights the next match and replaces the selection with it src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "highlights the next match and replaces the selection with it", ->$/;" f -highlights the previous match and replaces the selection with it src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "highlights the previous match and replaces the selection with it", ->$/;" f -highlights the tab for the current active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "highlights the tab for the current active edit session", ->$/;" f -highlights the tab for the newly-active edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "highlights the tab for the newly-active edit session", ->$/;" f -history_root native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCaptureTreeNode* history_root; \/* capture history tree root *\/$/;" m struct:re_registers -history_root native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCaptureTreeNode* history_root; \/* capture history tree root *\/$/;" m struct:re_registers -history_root native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCaptureTreeNode* history_root; \/* capture history tree root *\/$/;" m struct:re_registers -horizontalChildUnits src/app/pane-grid.coffee /^ horizontalChildUnits: ->$/;" f -horizontalGridUnits src/app/pane-column.coffee /^ horizontalGridUnits: ->$/;" f -horizontalGridUnits src/app/pane-row.coffee /^ horizontalGridUnits: ->$/;" f -horizontalGridUnits src/app/pane.coffee /^ horizontalGridUnits: ->$/;" f -humanizeEventName src/stdlib/underscore-extensions.coffee /^ humanizeEventName: (eventName) ->$/;" f -idCounter native/v8_extensions/native_linux.h /^ unsigned long int idCounter;$/;" m class:v8_extensions::NativeHandler -ignoreRepositoryPath src/app/project.coffee /^ ignoreRepositoryPath: (path) ->$/;" f -ignorecase native/v8_extensions/readtags.c /^ short ignorecase;$/;" m struct:sTagFile::__anon23 file: -immediately confirms the current completion choice and inserts that character into the buffer src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "immediately confirms the current completion choice and inserts that character into the buffer", ->$/;" f -indent src/app/edit-session.coffee /^ indent: ->$/;" f -indent src/app/editor.coffee /^ indent: -> @activeEditSession.indent()$/;" f -indent src/app/selection.coffee /^ indent: ->$/;" f -indentLevelForLine src/app/edit-session.coffee /^ indentLevelForLine: (line) ->$/;" f -indentSelectedRows src/app/edit-session.coffee /^ indentSelectedRows: ->$/;" f -indentSelectedRows src/app/editor.coffee /^ indentSelectedRows: -> @activeEditSession.indentSelectedRows()$/;" f -indentSelectedRows src/app/selection.coffee /^ indentSelectedRows: ->$/;" f -indentSubsequentLines src/extensions/snippets/src/snippet-expansion.coffee /^ indentSubsequentLines: (startRow, snippet) ->$/;" f -indentationForBufferRow src/app/edit-session.coffee /^ indentationForBufferRow: (bufferRow) ->$/;" f -indents the subsequent lines of the snippet to be even with the start of the first line src/extensions/snippets/spec/snippets-spec.coffee /^ it "indents the subsequent lines of the snippet to be even with the start of the first line", ->$/;" f -initialize native/v8_extensions/readtags.c /^static tagFile *initialize (const char *const filePath, tagFileInfo *const info)$/;" f file: -initialize src/app/cursor-view.coffee /^ initialize: (@cursor, @editor) ->$/;" f -initialize src/app/editor.coffee /^ initialize: ({editSession, @mini, @showInvisibles} = {}) ->$/;" f -initialize src/app/pane-grid.coffee /^ initialize: (children=[]) ->$/;" f -initialize src/app/root-view.coffee /^ initialize: (pathToOpen, { @extensionStates, suppressOpen } = {}) ->$/;" f -initialize src/app/scroll-view.coffee /^ initialize: ->$/;" f -initialize src/app/select-list.coffee /^ initialize: ->$/;" f -initialize src/app/selection-view.coffee /^ initialize: ({@editor, @selection} = {}) ->$/;" f -initialize src/app/status-bar.coffee /^ initialize: (@rootView, @editor) ->$/;" f -initialize src/extensions/autocomplete/src/autocomplete.coffee /^ initialize: (@editor) ->$/;" f -initialize src/extensions/command-panel/src/command-panel.coffee /^ initialize: (@rootView, @history) ->$/;" f -initialize src/extensions/command-panel/src/preview-list.coffee /^ initialize: (@rootView) ->$/;" f -initialize src/extensions/event-palette/src/event-palette.coffee /^ initialize: (@rootView) ->$/;" f -initialize src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ initialize: (@rootView) ->$/;" f -initialize src/extensions/markdown-preview/src/markdown-preview.coffee /^ initialize: (@rootView) ->$/;" f -initialize src/extensions/outline-view/src/outline-view.coffee /^ initialize: (@rootView) ->$/;" f -initialize src/extensions/tabs/src/tab.coffee /^ initialize: (@editSession) ->$/;" f -initialize src/extensions/tabs/src/tabs.coffee /^ initialize: (@editor) ->$/;" f -initialize src/extensions/tree-view/src/dialog.coffee /^ initialize: ({path, @onConfirm, select} = {}) ->$/;" f -initialize src/extensions/tree-view/src/directory-view.coffee /^ initialize: ({@directory, isExpanded, @project, parent} = {}) ->$/;" f -initialize src/extensions/tree-view/src/file-view.coffee /^ initialize: (@file) ->$/;" f -initialize src/extensions/tree-view/src/tree-view.coffee /^ initialize: (@rootView) ->$/;" f -initialize src/extensions/wrap-guide/src/wrap-guide.coffee /^ initialize: (@rootView, @editor, config = {}) =>$/;" f -initialized native/v8_extensions/readtags.c /^ short initialized;$/;" m struct:sTagFile file: -initially displays all JavaScript functions with line numbers src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "initially displays all JavaScript functions with line numbers", ->$/;" f -insert src/app/buffer.coffee /^ insert: (point, text) ->$/;" f -insertAtBufferRow src/app/old-line-map.coffee /^ insertAtBufferRow: (bufferRow, lineFragments) ->$/;" f -insertAtScreenRow src/app/line-map.coffee /^ insertAtScreenRow: (bufferRow, screenLines) ->$/;" f -insertNewline src/app/edit-session.coffee /^ insertNewline: ->$/;" f -insertNewline src/app/editor.coffee /^ insertNewline: -> @activeEditSession.insertNewline()$/;" f -insertNewlineBelow src/app/edit-session.coffee /^ insertNewlineBelow: ->$/;" f -insertNewlineBelow src/app/editor.coffee /^ insertNewlineBelow: -> @activeEditSession.insertNewlineBelow()$/;" f -insertText src/app/edit-session.coffee /^ insertText: (text, options) ->$/;" f -insertText src/app/editor.coffee /^ insertText: (text, options) -> @activeEditSession.insertText(text, options)$/;" f -insertText src/app/selection.coffee /^ insertText: (text, options={}) ->$/;" f -inserts a tab as normal src/extensions/snippets/spec/snippets-spec.coffee /^ it "inserts a tab as normal", ->$/;" f -inspect src/app/edit-session.coffee /^ inspect: ->$/;" f -inspect src/app/fold.coffee /^ inspect: ->$/;" f -inspect src/app/point.coffee /^ inspect: ->$/;" f -inspect src/app/range.coffee /^ inspect: ->$/;" f -int_map native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int *int_map; \/* BM skip for exact_len > 255 *\/$/;" m struct:re_pattern_buffer -int_map native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int *int_map; \/* BM skip for exact_len > 255 *\/$/;" m struct:re_pattern_buffer -int_map native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int *int_map; \/* BM skip for exact_len > 255 *\/$/;" m struct:re_pattern_buffer -int_map_backward native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int *int_map_backward; \/* BM skip for backward search *\/$/;" m struct:re_pattern_buffer -int_map_backward native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int *int_map_backward; \/* BM skip for backward search *\/$/;" m struct:re_pattern_buffer -int_map_backward native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int *int_map_backward; \/* BM skip for backward search *\/$/;" m struct:re_pattern_buffer -intersectsBufferRange src/app/selection.coffee /^ intersectsBufferRange: (bufferRange) ->$/;" f -intersectsWith src/app/range.coffee /^ intersectsWith: (otherRange) ->$/;" f -intersectsWith src/app/selection.coffee /^ intersectsWith: (otherSelection) ->$/;" f -invalidateRow src/app/tokenized-buffer.coffee /^ invalidateRow: (row) ->$/;" f -invokes the callback with a default value src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "invokes the callback with a default value", ->$/;" f -invokes the callback with the editor path src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "invokes the callback with the editor path", ->$/;" f -io_util_app_directory native/linux/io_utils.cpp /^string io_util_app_directory() {$/;" f -io_utils_read native/linux/io_utils.cpp /^int io_utils_read(string path, string* output) {$/;" f -io_utils_real_app_path native/linux/io_utils.cpp /^string io_utils_real_app_path(string relativePath) {$/;" f -is case-insentive when the pattern contains no non-escaped uppercase letters (behavior copied from vim) src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "is case-insentive when the pattern contains no non-escaped uppercase letters (behavior copied from vim)", ->$/;" f -is selected src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "is selected", ->$/;" f -is selected in the tree view if the file's entry visible src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "is selected in the tree view if the file's entry visible", ->$/;" f -isAddress src/extensions/command-panel/src/commands/address.coffee /^ isAddress: -> true$/;" f -isAddress src/extensions/command-panel/src/commands/command.coffee /^ isAddress: -> false$/;" f -isAppAlreadyOpen native/main_mac.mm /^BOOL isAppAlreadyOpen() {$/;" f -isAtBeginningOfLine src/app/cursor.coffee /^ isAtBeginningOfLine: ->$/;" f -isAtEndOfLine src/app/cursor.coffee /^ isAtEndOfLine: ->$/;" f -isBracket src/app/token.coffee /^ isBracket: ->$/;" f -isBufferRowBlank src/app/edit-session.coffee /^ isBufferRowBlank: (bufferRow) -> @buffer.isRowBlank(bufferRow)$/;" f -isClosingBracket src/app/language-mode.coffee /^ isClosingBracket: (string) ->$/;" f -isContainedByFold src/app/fold.coffee /^ isContainedByFold: (fold) ->$/;" f -isContainedByRange src/app/fold.coffee /^ isContainedByRange: (range) ->$/;" f -isDirectory src/stdlib/fs.coffee /^ isDirectory: (path) ->$/;" f -isEmpty src/app/buffer.coffee /^ isEmpty: -> @lines.length is 1 and @lines[0].length is 0$/;" f -isEmpty src/app/range.coffee /^ isEmpty: ->$/;" f -isEmpty src/app/selection.coffee /^ isEmpty: ->$/;" f -isEqual src/app/edit-session.coffee /^ isEqual: (other) ->$/;" f -isEqual src/app/old-screen-line.coffee /^ isEqual: (other) ->$/;" f -isEqual src/app/point.coffee /^ isEqual: (other) ->$/;" f -isEqual src/app/range.coffee /^ isEqual: (other) ->$/;" f -isEqual src/app/token.coffee /^ isEqual: (other) ->$/;" f -isFile src/stdlib/fs.coffee /^ isFile: (path) ->$/;" f -isFoldContainedByActiveFold src/app/display-buffer.coffee /^ isFoldContainedByActiveFold: (fold) ->$/;" f -isFoldedAtScreenRow src/app/edit-session.coffee /^ isFoldedAtScreenRow: (screenRow) ->$/;" f -isFoldedAtScreenRow src/app/editor.coffee /^ isFoldedAtScreenRow: (screenRow) -> @activeEditSession.isFoldedAtScreenRow(screenRow)$/;" f -isGreaterThan src/app/point.coffee /^ isGreaterThan: (other) ->$/;" f -isGreaterThanOrEqual src/app/point.coffee /^ isGreaterThanOrEqual: (other) ->$/;" f -isInConflict src/app/buffer.coffee /^ isInConflict: -> @conflict$/;" f -isLastCursor src/app/cursor.coffee /^ isLastCursor: ->$/;" f -isLessThan src/app/point.coffee /^ isLessThan: (other) ->$/;" f -isLessThanOrEqual src/app/point.coffee /^ isLessThanOrEqual: (other) ->$/;" f -isMarkdownFile src/extensions/markdown-preview/src/markdown-preview.coffee /^ isMarkdownFile: (path) ->$/;" f -isModified src/app/buffer.coffee /^ isModified: ->$/;" f -isOnlyWhitespace src/app/token.coffee /^ isOnlyWhitespace: ->$/;" f -isOpeningBracket src/app/language-mode.coffee /^ isOpeningBracket: (string) ->$/;" f -isPathIgnored src/app/git.coffee /^ isPathIgnored: (path) ->$/;" f -isPathIgnored src/app/project.coffee /^ isPathIgnored: (path) ->$/;" f -isPathIgnored src/extensions/tree-view/src/directory-view.coffee /^ isPathIgnored: (path) ->$/;" f -isPathModified src/app/git.coffee /^ isPathModified: (path) ->$/;" f -isPathNew src/app/git.coffee /^ isPathNew: (path) ->$/;" f -isQuote src/app/language-mode.coffee /^ isQuote: (string) ->$/;" f -isRelative src/extensions/command-panel/src/commands/address-range.coffee /^ isRelative: ->$/;" f -isRelative src/extensions/command-panel/src/commands/current-selection-address.coffee /^ isRelative: -> true$/;" f -isRelative src/extensions/command-panel/src/commands/default-address-range.coffee /^ isRelative: -> false$/;" f -isRelative src/extensions/command-panel/src/commands/eof-address.coffee /^ isRelative: -> false$/;" f -isRelative src/extensions/command-panel/src/commands/line-address.coffee /^ isRelative: -> false$/;" f -isRelative src/extensions/command-panel/src/commands/regex-address.coffee /^ isRelative: -> true$/;" f -isRelative src/extensions/command-panel/src/commands/zero-address.coffee /^ isRelative: -> false$/;" f -isRelativeAddress src/extensions/command-panel/src/commands/composite-command.coffee /^ isRelativeAddress: ->$/;" f -isReversed src/app/selection.coffee /^ isReversed: ->$/;" f -isRowBlank src/app/buffer.coffee /^ isRowBlank: (row) ->$/;" f -isScreenRowVisible src/app/editor.coffee /^ isScreenRowVisible: (row) ->$/;" f -isSingleLine src/app/range.coffee /^ isSingleLine: ->$/;" f -isSingleScreenLine src/app/selection.coffee /^ isSingleScreenLine: ->$/;" f -isSoftWrapped src/app/old-screen-line.coffee /^ isSoftWrapped: ->$/;" f -isSoftWrapped src/app/screen-line.coffee /^ isSoftWrapped: ->$/;" f -isVisible src/app/cursor.coffee /^ isVisible: -> @visible$/;" f -is_allowed_reverse_match native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -is_allowed_reverse_match native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -is_allowed_reverse_match native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*is_allowed_reverse_match)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -is_code_ctype native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);$/;" m struct:OnigEncodingTypeST -is_code_ctype native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);$/;" m struct:OnigEncodingTypeST -is_code_ctype native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*is_code_ctype)(OnigCodePoint code, OnigCtype ctype);$/;" m struct:OnigEncodingTypeST -is_mbc_newline native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -is_mbc_newline native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -is_mbc_newline native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*is_mbc_newline)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -it repeats the last relative address in the reverse direction src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "it repeats the last relative address in the reverse direction", ->$/;" f -it returns an error messages src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "it returns an error messages", ->$/;" f -itemForElement src/extensions/event-palette/src/event-palette.coffee /^ itemForElement: ({eventName, eventDescription}) ->$/;" f -itemForElement src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ itemForElement: (path) ->$/;" f -itemForElement src/extensions/outline-view/src/outline-view.coffee /^ itemForElement: ({position, name}) ->$/;" f -iterateTokensInBufferRange src/app/tokenized-buffer.coffee /^ iterateTokensInBufferRange: (bufferRange, iterator) ->$/;" f -join src/stdlib/fs.coffee /^ join: (paths...) ->$/;" f -js src/stdlib/require.coffee /^ js: (file, code) ->$/;" f -jumpToDeclaration src/extensions/outline-view/src/outline-view.coffee /^ jumpToDeclaration: ->$/;" f -key native/v8_extensions/readtags.h /^ const char *key;$/;" m struct:__anon32 -keyFromCharCode src/app/keymap.coffee /^ keyFromCharCode: (charCode) ->$/;" f -keystrokeStringForEvent src/app/keymap.coffee /^ keystrokeStringForEvent: (event) ->$/;" f -killLine src/app/editor.coffee /^ killLine = (line) ->$/;" f -kind native/v8_extensions/readtags.h /^ const char *kind;$/;" m struct:__anon33 -largestFoldContainingBufferRow src/app/display-buffer.coffee /^ largestFoldContainingBufferRow: (bufferRow) ->$/;" f -largestFoldContainingBufferRow src/app/edit-session.coffee /^ largestFoldContainingBufferRow: (bufferRow) ->$/;" f -largestFoldStartingAtBufferRow src/app/display-buffer.coffee /^ largestFoldStartingAtBufferRow: (bufferRow) ->$/;" f -largestFoldStartingAtScreenRow src/app/display-buffer.coffee /^ largestFoldStartingAtScreenRow: (screenRow) ->$/;" f -largestFoldStartingAtScreenRow src/app/edit-session.coffee /^ largestFoldStartingAtScreenRow: (screenRow) ->$/;" f -lastMatchedString native/v8_extensions/onig_scanner.mm /^ std::string lastMatchedString;$/;" m class:v8_extensions::OnigScannerUserData file: -lastModified src/stdlib/fs.coffee /^ lastModified: (path) ->$/;" f -lastScreenRow src/app/line-map.coffee /^ lastScreenRow: ->$/;" f -lastScreenRow src/app/old-line-map.coffee /^ lastScreenRow: ->$/;" f -lastScreenRowForBufferRow src/app/display-buffer.coffee /^ lastScreenRowForBufferRow: (bufferRow) ->$/;" f -lastStartLocation native/v8_extensions/onig_scanner.mm /^ int lastStartLocation;$/;" m class:v8_extensions::OnigScannerUserData file: -left_adjust_char_head native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);$/;" m struct:OnigEncodingTypeST -left_adjust_char_head native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);$/;" m struct:OnigEncodingTypeST -left_adjust_char_head native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigUChar* (*left_adjust_char_head)(const OnigUChar* start, const OnigUChar* p);$/;" m struct:OnigEncodingTypeST -line native/v8_extensions/readtags.c /^ vstring line;$/;" m struct:sTagFile file: -lineCount src/app/display-buffer.coffee /^ lineCount: ->$/;" f -lineCountByDelta src/app/old-line-map.coffee /^ lineCountByDelta: (deltaType) ->$/;" f -lineElementForScreenRow src/app/editor.coffee /^ lineElementForScreenRow: (screenRow) ->$/;" f -lineForBufferRow src/app/edit-session.coffee /^ lineForBufferRow: (row) -> @buffer.lineForRow(row)$/;" f -lineForBufferRow src/app/editor.coffee /^ lineForBufferRow: (row) -> @getBuffer().lineForRow(row)$/;" f -lineForBufferRow src/app/old-line-map.coffee /^ lineForBufferRow: (row) ->$/;" f -lineForRow src/app/buffer.coffee /^ lineForRow: (row) ->$/;" f -lineForRow src/app/display-buffer.coffee /^ lineForRow: (row) ->$/;" f -lineForScreenRow src/app/edit-session.coffee /^ lineForScreenRow: (row) -> @displayBuffer.lineForRow(row)$/;" f -lineForScreenRow src/app/editor.coffee /^ lineForScreenRow: (screenRow) -> @activeEditSession.lineForScreenRow(screenRow)$/;" f -lineForScreenRow src/app/line-map.coffee /^ lineForScreenRow: (row) ->$/;" f -lineForScreenRow src/app/old-line-map.coffee /^ lineForScreenRow: (row) ->$/;" f -lineForScreenRow src/app/tokenized-buffer.coffee /^ lineForScreenRow: (row) ->$/;" f -lineLengthForBufferRow src/app/editor.coffee /^ lineLengthForBufferRow: (row) -> @getBuffer().lineLengthForRow(row)$/;" f -lineLengthForRow src/app/buffer.coffee /^ lineLengthForRow: (row) ->$/;" f -lineNumber native/v8_extensions/readtags.h /^ unsigned long lineNumber;$/;" m struct:__anon33::__anon34 -linesByDelta src/app/old-line-map.coffee /^ linesByDelta: (deltaType, startRow, endRow) ->$/;" f -linesForBufferRows src/app/old-line-map.coffee /^ linesForBufferRows: (startRow, endRow) ->$/;" f -linesForRows src/app/display-buffer.coffee /^ linesForRows: (startRow, endRow) ->$/;" f -linesForScreenRows src/app/edit-session.coffee /^ linesForScreenRows: (start, end) -> @displayBuffer.linesForRows(start, end)$/;" f -linesForScreenRows src/app/editor.coffee /^ linesForScreenRows: (start, end) -> @activeEditSession.linesForScreenRows(start, end)$/;" f -linesForScreenRows src/app/line-map.coffee /^ linesForScreenRows: (startRow, endRow) ->$/;" f -linesForScreenRows src/app/old-line-map.coffee /^ linesForScreenRows: (startRow, endRow) ->$/;" f -linesForScreenRows src/app/tokenized-buffer.coffee /^ linesForScreenRows: (startRow, endRow) ->$/;" f -list native/v8_extensions/readtags.c /^ tagExtensionField *list;$/;" m struct:sTagFile::__anon24 file: -list native/v8_extensions/readtags.h /^ tagExtensionField *list;$/;" m struct:__anon33::__anon35 -list src/stdlib/fs.coffee /^ list: (rootPath) ->$/;" f -listTags native/v8_extensions/readtags.c /^static void listTags (void)$/;" f file: -listTree src/stdlib/fs.coffee /^ listTree: (rootPath) ->$/;" f -listenForPathToOpen native/main_mac.mm /^void listenForPathToOpen(int fd, NSString *socketPath) {$/;" f -lists the paths of the current open buffers src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "lists the paths of the current open buffers", ->$/;" f -load src/stdlib/settings.coffee /^ load: (path) ->$/;" f -loadHtml src/extensions/markdown-preview/src/markdown-preview.coffee /^ loadHtml: (text) ->$/;" f -loadNextEditSession src/app/editor.coffee /^ loadNextEditSession: ->$/;" f -loadPreviousEditSession src/app/editor.coffee /^ loadPreviousEditSession: ->$/;" f -loadSnippets src/extensions/snippets/src/snippets.coffee /^ loadSnippets: ->$/;" f -loadSnippetsFile src/extensions/snippets/src/snippets.coffee /^ loadSnippetsFile: (path) ->$/;" f -loadUserConfiguration src/app/root-view.coffee /^ loadUserConfiguration: ->$/;" f -loads the snippets in the given file src/extensions/snippets/spec/snippets-spec.coffee /^ it "loads the snippets in the given file", ->$/;" f -logCursorScope src/app/editor.coffee /^ logCursorScope: ->$/;" f -logLines src/app/display-buffer.coffee /^ logLines: (start, end) ->$/;" f -logRenderedLines src/app/editor.coffee /^ logRenderedLines: ->$/;" f -logScreenLines src/app/edit-session.coffee /^ logScreenLines: (start, end) -> @displayBuffer.logLines(start, end)$/;" f -logScreenLines src/app/editor.coffee /^ logScreenLines: (start, end) ->$/;" f -loops through current selections and selects text matching the regex src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "loops through current selections and selects text matching the regex", ->$/;" f -losslessInvert src/stdlib/underscore-extensions.coffee /^ losslessInvert: (hash) ->$/;" f -lower native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int lower;$/;" m struct:__anon6 -lower native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int lower;$/;" m struct:__anon13 -lower native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int lower;$/;" m struct:__anon20 -m_Browser native/atom_cef_client.h /^ CefRefPtr m_Browser;$/;" m class:AtomCefClient -m_Browser native/linux/client_handler.h /^ CefRefPtr m_Browser;$/;" m class:ClientHandler -m_BrowserHwnd native/linux/client_handler.h /^ CefWindowHandle m_BrowserHwnd;$/;" m class:ClientHandler -m_BrowserId native/linux/client_handler.h /^ int m_BrowserId;$/;" m class:ClientHandler -m_HandlePasteboardCommands native/atom_cef_client.h /^ bool m_HandlePasteboardCommands = false;$/;" m class:AtomCefClient -m_MainHwnd native/linux/client_handler.h /^ CefWindowHandle m_MainHwnd;$/;" m class:ClientHandler -m_regex native/v8_extensions/onig_reg_exp.mm /^ OnigRegexp *m_regex;$/;" m class:v8_extensions::OnigRegExpUserData file: -main native/atom_gtk.cpp /^int main(int argc, char* argv[]) {$/;" f -main native/linux/atom_app.cpp /^int main(int argc, char *argv[]) {$/;" f -main native/main_helper_mac.mm /^int main(int argc, char* argv[]) {$/;" f -main native/main_mac.mm /^int main(int argc, char* argv[]) {$/;" f -main native/v8_extensions/readtags.c /^extern int main (int argc, char **argv)$/;" f -maintains the current selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "maintains the current selections", ->$/;" f -makeDirectory src/stdlib/fs.coffee /^ makeDirectory: (path) ->$/;" f -makeEditorActive src/app/root-view.coffee /^ makeEditorActive: (editor, focus) ->$/;" f -makeTree src/stdlib/fs.coffee /^ makeTree: (path) ->$/;" f -makes the tab text 'untitled' src/extensions/tabs/spec/tabs-spec.coffee /^ it "makes the tab text 'untitled'", ->$/;" f -map native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char map[ONIG_CHAR_TABLE_SIZE]; \/* used as BM skip or char-map *\/$/;" m struct:re_pattern_buffer -map native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char map[ONIG_CHAR_TABLE_SIZE]; \/* used as BM skip or char-map *\/$/;" m struct:re_pattern_buffer -map native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char map[ONIG_CHAR_TABLE_SIZE]; \/* used as BM skip or char-map *\/$/;" m struct:re_pattern_buffer -matches the beginning of each line and avoids infinitely looping on a zero-width match src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "matches the beginning of each line and avoids infinitely looping on a zero-width match", ->$/;" f -matches the end of each line and avoids infinitely looping on a zero-width match src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "matches the end of each line and avoids infinitely looping on a zero-width match", ->$/;" f -matches the end of each line in the selected region src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "matches the end of each line in the selected region", ->$/;" f -matchesInCharacterRange src/app/buffer.coffee /^ matchesInCharacterRange: (regex, startIndex, endIndex) ->$/;" f -matchesKeystrokePrefix src/app/binding-set.coffee /^ matchesKeystrokePrefix: (event) ->$/;" f -max native/v8_extensions/readtags.c /^ unsigned short max;$/;" m struct:sTagFile::__anon24 file: -maxCachedIndex native/v8_extensions/onig_scanner.mm /^ int maxCachedIndex;$/;" m class:v8_extensions::OnigScannerUserData file: -maxLineLength src/app/display-buffer.coffee /^ maxLineLength: ->$/;" f -maxScreenLineLength src/app/edit-session.coffee /^ maxScreenLineLength: -> @displayBuffer.maxLineLength()$/;" f -maxScreenLineLength src/app/editor.coffee /^ maxScreenLineLength: -> @activeEditSession.maxScreenLineLength()$/;" f -maxScreenLineLength src/app/old-line-map.coffee /^ maxScreenLineLength: ->$/;" f -max_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int max_enc_len;$/;" m struct:OnigEncodingTypeST -max_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int max_enc_len;$/;" m struct:OnigEncodingTypeST -max_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int max_enc_len;$/;" m struct:OnigEncodingTypeST -mbc_case_fold native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);$/;" m struct:OnigEncodingTypeST -mbc_case_fold native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);$/;" m struct:OnigEncodingTypeST -mbc_case_fold native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*mbc_case_fold)(OnigCaseFoldType flag, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to);$/;" m struct:OnigEncodingTypeST -mbc_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*mbc_enc_len)(const OnigUChar* p);$/;" m struct:OnigEncodingTypeST -mbc_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*mbc_enc_len)(const OnigUChar* p);$/;" m struct:OnigEncodingTypeST -mbc_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*mbc_enc_len)(const OnigUChar* p);$/;" m struct:OnigEncodingTypeST -mbc_to_code native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -mbc_to_code native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -mbc_to_code native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint (*mbc_to_code)(const OnigUChar* p, const OnigUChar* end);$/;" m struct:OnigEncodingTypeST -measure src/app/window.coffee /^ measure: (description, fn) ->$/;" f -merge src/app/selection.coffee /^ merge: (otherSelection, options) ->$/;" f -mergeCursors src/app/edit-session.coffee /^ mergeCursors: ->$/;" f -mergeIntersectingSelections src/app/edit-session.coffee /^ mergeIntersectingSelections: (options) ->$/;" f -meta_char_table native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigMetaCharTableType meta_char_table;$/;" m struct:__anon4 -meta_char_table native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigMetaCharTableType meta_char_table;$/;" m struct:__anon11 -meta_char_table native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigMetaCharTableType meta_char_table;$/;" m struct:__anon18 -min_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int min_enc_len;$/;" m struct:OnigEncodingTypeST -min_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int min_enc_len;$/;" m struct:OnigEncodingTypeST -min_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int min_enc_len;$/;" m struct:OnigEncodingTypeST -modifySelection src/app/selection.coffee /^ modifySelection: (fn) ->$/;" f -move src/stdlib/fs.coffee /^ move: (source, target) ->$/;" f -moveCursorDown src/app/edit-session.coffee /^ moveCursorDown: (lineCount) ->$/;" f -moveCursorDown src/app/editor.coffee /^ moveCursorDown: -> @activeEditSession.moveCursorDown()$/;" f -moveCursorLeft src/app/edit-session.coffee /^ moveCursorLeft: ->$/;" f -moveCursorLeft src/app/editor.coffee /^ moveCursorLeft: -> @activeEditSession.moveCursorLeft()$/;" f -moveCursorRight src/app/edit-session.coffee /^ moveCursorRight: ->$/;" f -moveCursorRight src/app/editor.coffee /^ moveCursorRight: -> @activeEditSession.moveCursorRight()$/;" f -moveCursorToBeginningOfLine src/app/edit-session.coffee /^ moveCursorToBeginningOfLine: ->$/;" f -moveCursorToBeginningOfLine src/app/editor.coffee /^ moveCursorToBeginningOfLine: -> @activeEditSession.moveCursorToBeginningOfLine()$/;" f -moveCursorToBeginningOfWord src/app/edit-session.coffee /^ moveCursorToBeginningOfWord: ->$/;" f -moveCursorToBeginningOfWord src/app/editor.coffee /^ moveCursorToBeginningOfWord: -> @activeEditSession.moveCursorToBeginningOfWord()$/;" f -moveCursorToBottom src/app/edit-session.coffee /^ moveCursorToBottom: ->$/;" f -moveCursorToBottom src/app/editor.coffee /^ moveCursorToBottom: -> @activeEditSession.moveCursorToBottom()$/;" f -moveCursorToEndOfLine src/app/edit-session.coffee /^ moveCursorToEndOfLine: ->$/;" f -moveCursorToEndOfLine src/app/editor.coffee /^ moveCursorToEndOfLine: -> @activeEditSession.moveCursorToEndOfLine()$/;" f -moveCursorToEndOfWord src/app/edit-session.coffee /^ moveCursorToEndOfWord: ->$/;" f -moveCursorToEndOfWord src/app/editor.coffee /^ moveCursorToEndOfWord: -> @activeEditSession.moveCursorToEndOfWord()$/;" f -moveCursorToFirstCharacterOfLine src/app/edit-session.coffee /^ moveCursorToFirstCharacterOfLine: ->$/;" f -moveCursorToFirstCharacterOfLine src/app/editor.coffee /^ moveCursorToFirstCharacterOfLine: -> @activeEditSession.moveCursorToFirstCharacterOfLine()$/;" f -moveCursorToTop src/app/edit-session.coffee /^ moveCursorToTop: ->$/;" f -moveCursorToTop src/app/editor.coffee /^ moveCursorToTop: -> @activeEditSession.moveCursorToTop()$/;" f -moveCursorUp src/app/edit-session.coffee /^ moveCursorUp: (lineCount) ->$/;" f -moveCursorUp src/app/editor.coffee /^ moveCursorUp: -> @activeEditSession.moveCursorUp()$/;" f -moveCursors src/app/edit-session.coffee /^ moveCursors: (fn) ->$/;" f -moveDown src/app/cursor.coffee /^ moveDown: (rowCount = 1) ->$/;" f -moveDown src/extensions/tree-view/src/tree-view.coffee /^ moveDown: ->$/;" f -moveHandler src/app/editor.coffee /^ moveHandler = (event = lastMoveEvent) =>$/;" f -moveLeft src/app/cursor.coffee /^ moveLeft: ->$/;" f -moveRight src/app/cursor.coffee /^ moveRight: ->$/;" f -moveSelectedEntry src/extensions/tree-view/src/tree-view.coffee /^ moveSelectedEntry: ->$/;" f -moveToBeginningOfLine src/app/cursor.coffee /^ moveToBeginningOfLine: ->$/;" f -moveToBeginningOfWord src/app/cursor.coffee /^ moveToBeginningOfWord: ->$/;" f -moveToBottom src/app/cursor.coffee /^ moveToBottom: ->$/;" f -moveToEndOfLine src/app/cursor.coffee /^ moveToEndOfLine: ->$/;" f -moveToEndOfWord src/app/cursor.coffee /^ moveToEndOfWord: ->$/;" f -moveToFirstCharacterOfLine src/app/cursor.coffee /^ moveToFirstCharacterOfLine: ->$/;" f -moveToPosition src/extensions/outline-view/src/outline-view.coffee /^ moveToPosition: (position) ->$/;" f -moveToTop src/app/cursor.coffee /^ moveToTop: ->$/;" f -moveUp src/app/cursor.coffee /^ moveUp: (rowCount = 1) ->$/;" f -moveUp src/extensions/tree-view/src/tree-view.coffee /^ moveUp: ->$/;" f -moves the cursor to the declaration src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "moves the cursor to the declaration", ->$/;" f -moves the cursor to the selected function src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "moves the cursor to the selected function", ->$/;" f -moves the file, updates the tree view, and closes the dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "moves the file, updates the tree view, and closes the dialog", ->$/;" f -multiKeystrokeStringForEvent src/app/keymap.coffee /^ multiKeystrokeStringForEvent: (event) ->$/;" f -multiplyString src/stdlib/underscore-extensions.coffee /^ multiplyString: (string, n) ->$/;" f -mutateSelectedText src/app/edit-session.coffee /^ mutateSelectedText: (fn) ->$/;" f -nakedLoad src/stdlib/require.coffee /^nakedLoad = (file) ->$/;" f -name native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ const char* name;$/;" m struct:OnigEncodingTypeST -name native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ const char* name;$/;" m struct:OnigEncodingTypeST -name native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ const char* name;$/;" m struct:OnigEncodingTypeST -name native/v8_extensions/readtags.c /^ char *name;$/;" m struct:sTagFile::__anon23 file: -name native/v8_extensions/readtags.c /^ char *name;$/;" m struct:sTagFile::__anon25 file: -name native/v8_extensions/readtags.c /^ vstring name;$/;" m struct:sTagFile file: -name native/v8_extensions/readtags.h /^ const char *name;$/;" m struct:__anon28::__anon31 -name native/v8_extensions/readtags.h /^ const char *name;$/;" m struct:__anon33 -nameComparison native/v8_extensions/readtags.c /^static int nameComparison (tagFile *const file)$/;" f file: -nameLength native/v8_extensions/readtags.c /^ size_t nameLength;$/;" m struct:sTagFile::__anon23 file: -name_table native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ void* name_table;$/;" m struct:re_pattern_buffer -name_table native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ void* name_table;$/;" m struct:re_pattern_buffer -name_table native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ void* name_table;$/;" m struct:re_pattern_buffer -narrows the list of completions with the fuzzy match algorithm src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "narrows the list of completions with the fuzzy match algorithm", ->$/;" f -navigateBackwardInHistory src/extensions/command-panel/src/command-panel.coffee /^ navigateBackwardInHistory: ->$/;" f -navigateForwardInHistory src/extensions/command-panel/src/command-panel.coffee /^ navigateForwardInHistory: ->$/;" f -navigates forward and backward through the command history src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "navigates forward and backward through the command history", ->$/;" f -needsAutoscroll src/app/cursor-view.coffee /^ needsAutoscroll: ->$/;" f -needsAutoscroll src/app/selection-view.coffee /^ needsAutoscroll: ->$/;" f -newSplitEditor src/app/editor.coffee /^ newSplitEditor: ->$/;" f -nextNonBlankBufferRow src/app/edit-session.coffee /^ nextNonBlankBufferRow: (bufferRow) -> @buffer.nextNonBlankRow(bufferRow)$/;" f -nextNonBlankRow src/app/buffer.coffee /^ nextNonBlankRow: (startRow) ->$/;" f -nextTick src/stdlib/underscore-extensions.coffee /^ nextTick: (fn) ->$/;" f -normalizeCommandsByKeystrokes src/app/binding-set.coffee /^ normalizeCommandsByKeystrokes: (commandsByKeystrokes) ->$/;" f -normalizeIndent src/app/selection.coffee /^ normalizeIndent: (text, options) ->$/;" f -normalizeKeystroke src/app/binding-set.coffee /^ normalizeKeystroke: (keystroke) ->$/;" f -normalizeKeystrokes src/app/binding-set.coffee /^ normalizeKeystrokes: (keystrokes) ->$/;" f -notifyFd native/v8_extensions/native_linux.h /^ int notifyFd;$/;" m class:v8_extensions::NativeHandler -num_call native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_call; \/* number of subexp call *\/$/;" m struct:re_pattern_buffer -num_call native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_call; \/* number of subexp call *\/$/;" m struct:re_pattern_buffer -num_call native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_call; \/* number of subexp call *\/$/;" m struct:re_pattern_buffer -num_childs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_childs;$/;" m struct:OnigCaptureTreeNodeStruct -num_childs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_childs;$/;" m struct:OnigCaptureTreeNodeStruct -num_childs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_childs;$/;" m struct:OnigCaptureTreeNodeStruct -num_comb_exp_check native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_comb_exp_check; \/* combination explosion check *\/$/;" m struct:re_pattern_buffer -num_comb_exp_check native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_comb_exp_check; \/* combination explosion check *\/$/;" m struct:re_pattern_buffer -num_comb_exp_check native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_comb_exp_check; \/* combination explosion check *\/$/;" m struct:re_pattern_buffer -num_mem native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_mem; \/* used memory(...) num counted from 1 *\/$/;" m struct:re_pattern_buffer -num_mem native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_mem; \/* used memory(...) num counted from 1 *\/$/;" m struct:re_pattern_buffer -num_mem native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_mem; \/* used memory(...) num counted from 1 *\/$/;" m struct:re_pattern_buffer -num_null_check native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_null_check; \/* OP_NULL_CHECK_START\/END id counter *\/$/;" m struct:re_pattern_buffer -num_null_check native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_null_check; \/* OP_NULL_CHECK_START\/END id counter *\/$/;" m struct:re_pattern_buffer -num_null_check native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_null_check; \/* OP_NULL_CHECK_START\/END id counter *\/$/;" m struct:re_pattern_buffer -num_of_elements native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_of_elements;$/;" m struct:__anon7 -num_of_elements native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_of_elements;$/;" m struct:__anon14 -num_of_elements native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_of_elements;$/;" m struct:__anon21 -num_regs native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_regs;$/;" m struct:re_registers -num_regs native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_regs;$/;" m struct:re_registers -num_regs native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_regs;$/;" m struct:re_registers -num_repeat native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int num_repeat; \/* OP_REPEAT\/OP_REPEAT_NG id-counter *\/$/;" m struct:re_pattern_buffer -num_repeat native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int num_repeat; \/* OP_REPEAT\/OP_REPEAT_NG id-counter *\/$/;" m struct:re_pattern_buffer -num_repeat native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int num_repeat; \/* OP_REPEAT\/OP_REPEAT_NG id-counter *\/$/;" m struct:re_pattern_buffer -off src/app/event-emitter.coffee /^ off: (eventName='', handler) ->$/;" f -off src/stdlib/event.coffee /^ off: (name, callback) ->$/;" f -on src/app/event-emitter.coffee /^ on: (eventName, handler) ->$/;" f -on src/stdlib/event.coffee /^ on: (name, callback) ->$/;" f -onConfirm src/extensions/tree-view/src/tree-view.coffee /^ onConfirm: (newPath) =>$/;" f -onConfirm src/extensions/tree-view/src/tree-view.coffee /^ onConfirm: (relativePath) =>$/;" f -onPath src/stdlib/fs.coffee /^ onPath = (path) =>$/;" f -one src/app/event-emitter.coffee /^ one: (eventName, handler) ->$/;" f -oneShotHandler src/app/event-emitter.coffee /^ oneShotHandler = (args...) =>$/;" f -one_or_more_time native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint one_or_more_time;$/;" m struct:__anon3 -one_or_more_time native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint one_or_more_time;$/;" m struct:__anon10 -one_or_more_time native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint one_or_more_time;$/;" m struct:__anon17 -onerror src/app/window.coffee /^ onerror: ->$/;" f -onig_enc_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^#define onig_enc_len(/;" d -onig_enc_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^#define onig_enc_len(/;" d -onig_enc_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^#define onig_enc_len(/;" d -only makes substitutions within given lines src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "only makes substitutions within given lines", ->$/;" f -only retains the configured max serialized history size src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "only retains the configured max serialized history size", ->$/;" f -op native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int op;$/;" m struct:__anon4 -op native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int op;$/;" m struct:__anon11 -op native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int op;$/;" m struct:__anon18 -op2 native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int op2;$/;" m struct:__anon4 -op2 native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int op2;$/;" m struct:__anon11 -op2 native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int op2;$/;" m struct:__anon18 -open src/app/root-view.coffee /^ open: (path, options = {}) ->$/;" f -openInExistingEditor src/app/root-view.coffee /^ openInExistingEditor: (path, allowActiveEditorChange, changeFocus) ->$/;" f -openSelectedEntry src/extensions/tree-view/src/tree-view.coffee /^ openSelectedEntry: (changeFocus) ->$/;" f -opened native/v8_extensions/readtags.h /^ int opened;$/;" m struct:__anon28::__anon29 -opens a move dialog with the file's current path (excluding extension) populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens a move dialog with the file's current path (excluding extension) populated", ->$/;" f -opens an add dialog with no path populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens an add dialog with no path populated", ->$/;" f -opens an add dialog with the directory's path populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens an add dialog with the directory's path populated", ->$/;" f -opens an add dialog with the file's current directory path populated src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens an add dialog with the file's current directory path populated", ->$/;" f -opens the file associated with that path in the editor src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "opens the file associated with that path in the editor", ->$/;" f -opens the file in the editor and focuses it src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "opens the file in the editor and focuses it", ->$/;" f -opens the operation's buffer, selects and scrolls to the search result, and focuses the active editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "opens the operation's buffer, selects and scrolls to the search result, and focuses the active editor", ->$/;" f -opens the operation's buffer, selects the search result, and focuses the active editor src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "opens the operation's buffer, selects the search result, and focuses the active editor", ->$/;" f -optimize native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int optimize; \/* optimize flag *\/$/;" m struct:re_pattern_buffer -optimize native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int optimize; \/* optimize flag *\/$/;" m struct:re_pattern_buffer -optimize native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int optimize; \/* optimize flag *\/$/;" m struct:re_pattern_buffer -option native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigOptionType option;$/;" m struct:__anon7 -option native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigOptionType option;$/;" m struct:__anon14 -option native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigOptionType option;$/;" m struct:__anon21 -options native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigOptionType options;$/;" m struct:re_pattern_buffer -options native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigOptionType options; \/* default option *\/$/;" m struct:__anon4 -options native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigOptionType options;$/;" m struct:re_pattern_buffer -options native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigOptionType options; \/* default option *\/$/;" m struct:__anon11 -options native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigOptionType options;$/;" m struct:re_pattern_buffer -options native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigOptionType options; \/* default option *\/$/;" m struct:__anon18 -outdentSelectedRows src/app/edit-session.coffee /^ outdentSelectedRows: ->$/;" f -outdentSelectedRows src/app/editor.coffee /^ outdentSelectedRows: -> @activeEditSession.outdentSelectedRows()$/;" f -outdentSelectedRows src/app/selection.coffee /^ outdentSelectedRows: ->$/;" f -p native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned char* p; \/* compiled pattern *\/$/;" m struct:re_pattern_buffer -p native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned char* p; \/* compiled pattern *\/$/;" m struct:re_pattern_buffer -p native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned char* p; \/* compiled pattern *\/$/;" m struct:re_pattern_buffer -pageDown src/app/editor.coffee /^ pageDown: ->$/;" f -pageUp src/app/editor.coffee /^ pageUp: ->$/;" f -pane src/app/editor.coffee /^ pane: ->$/;" f -par native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigUChar* par;$/;" m struct:__anon5 -par native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigUChar* par;$/;" m struct:__anon12 -par native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigUChar* par;$/;" m struct:__anon19 -par_end native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigUChar* par_end;$/;" m struct:__anon5 -par_end native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigUChar* par_end;$/;" m struct:__anon12 -par_end native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigUChar* par_end;$/;" m struct:__anon19 -parseExtensionFields native/v8_extensions/readtags.c /^static void parseExtensionFields (tagFile *const file, tagEntry *const entry,$/;" f file: -parsePrefix src/extensions/outline-view/src/tag-generator.coffee /^ parsePrefix: (section = "") ->$/;" f -parseTagLine native/v8_extensions/readtags.c /^static void parseTagLine (tagFile *file, tagEntry *const entry)$/;" f file: -parseTagLine src/extensions/outline-view/src/tag-generator.coffee /^ parseTagLine: (line) ->$/;" f -partial native/v8_extensions/readtags.c /^ short partial;$/;" m struct:sTagFile::__anon23 file: -paste src/app/editor.coffee /^ paste: -> @activeEditSession.pasteText()$/;" f -pasteText src/app/edit-session.coffee /^ pasteText: ->$/;" f -path native/v8_extensions/native_linux.h /^ std::string path;$/;" m class:v8_extensions::NativeHandler -pathCallbacks native/v8_extensions/native_linux.h /^ std::map > pathCallbacks;$/;" m class:v8_extensions::NativeHandler -pathDescriptors native/v8_extensions/native_linux.h /^ std::map pathDescriptors;$/;" m class:v8_extensions::NativeHandler -pattern native/v8_extensions/readtags.h /^ const char *pattern;$/;" m struct:__anon33::__anon34 -pattern_enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding pattern_enc;$/;" m struct:__anon7 -pattern_enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding pattern_enc;$/;" m struct:__anon14 -pattern_enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding pattern_enc;$/;" m struct:__anon21 -pauseEvents src/app/event-emitter.coffee /^ pauseEvents: ->$/;" f -performs a multiple substitutions within each of the selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a multiple substitutions within each of the selections", ->$/;" f -performs a multiple substitutions within the current selection as a batch that can be undone in a single operation src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a multiple substitutions within the current selection as a batch that can be undone in a single operation", ->$/;" f -performs a single substitution within the current selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a single substitution within the current selection", ->$/;" f -performs a single substitutions within each of the selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "performs a single substitutions within each of the selections", ->$/;" f -pixelOffsetForScreenPosition src/app/editor.coffee /^ pixelOffsetForScreenPosition: (position) ->$/;" f -pixelPositionForBufferPosition src/app/editor.coffee /^ pixelPositionForBufferPosition: (position) ->$/;" f -pixelPositionForScreenPosition src/app/editor.coffee /^ pixelPositionForScreenPosition: (position) ->$/;" f -placeAnchor src/app/selection.coffee /^ placeAnchor: ->$/;" f -placeTabStopAnchorRanges src/extensions/snippets/src/snippet-expansion.coffee /^ placeTabStopAnchorRanges: (startPosition, tabStopRanges) ->$/;" f -places the cursor at the first tab-stop, and moves the cursor in response to 'next-tab-stop' events src/extensions/snippets/spec/snippets-spec.coffee /^ it "places the cursor at the first tab-stop, and moves the cursor in response to 'next-tab-stop' events", ->$/;" f -popScope src/app/editor.coffee /^ popScope = ->$/;" f -populate src/extensions/command-panel/src/preview-list.coffee /^ populate: (operations) ->$/;" f -populate src/extensions/outline-view/src/outline-view.coffee /^ populate: ->$/;" f -populateList src/app/select-list.coffee /^ populateList: ->$/;" f -populateOpenBufferPaths src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ populateOpenBufferPaths: ->$/;" f -populateProjectPaths src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ populateProjectPaths: ->$/;" f -pos native/v8_extensions/readtags.c /^ off_t pos;$/;" m struct:sTagFile::__anon23 file: -pos native/v8_extensions/readtags.c /^ off_t pos;$/;" m struct:sTagFile file: -positionForCharacterIndex src/app/buffer.coffee /^ positionForCharacterIndex: (index) ->$/;" f -positions the guide at the configured column src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "positions the guide at the configured column", ->$/;" f -pre-populates the command panel's editor with / and moves the cursor to the last column src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "pre-populates the command panel's editor with \/ and moves the cursor to the last column", ->$/;" f -pre-populates the command panel's editor with Xx/ and moves the cursor to the last column src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "pre-populates the command panel's editor with Xx\/ and moves the cursor to the last column", ->$/;" f -prefixAndSuffixForRange src/app/buffer.coffee /^ prefixAndSuffixForRange: (range) ->$/;" f -prefixAndSuffixOfSelection src/extensions/autocomplete/src/autocomplete.coffee /^ prefixAndSuffixOfSelection: (selection) ->$/;" f -preserves the command panel's mini-editor text, visibility, focus, and history across reloads src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "preserves the command panel's mini-editor text, visibility, focus, and history across reloads", ->$/;" f -preview src/extensions/command-panel/src/operation.coffee /^ preview: ->$/;" f -previousNonBlankRow src/app/buffer.coffee /^ previousNonBlankRow: (startRow) ->$/;" f -printTag native/v8_extensions/readtags.c /^static void printTag (const tagEntry *entry)$/;" f file: -program native/v8_extensions/readtags.c /^ } program;$/;" m struct:sTagFile typeref:struct:sTagFile::__anon25 file: -program native/v8_extensions/readtags.h /^ } program;$/;" m struct:__anon28 typeref:struct:__anon28::__anon31 -properly handles escaped text in the replacement text src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "properly handles escaped text in the replacement text", ->$/;" f -property_name_to_ctype native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);$/;" m struct:OnigEncodingTypeST -property_name_to_ctype native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);$/;" m struct:OnigEncodingTypeST -property_name_to_ctype native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int (*property_name_to_ctype)(struct OnigEncodingTypeST* enc, OnigUChar* p, OnigUChar* end);$/;" m struct:OnigEncodingTypeST -pushOperation src/app/buffer.coffee /^ pushOperation: (operation, editSession) ->$/;" f -pushOperation src/app/edit-session.coffee /^ pushOperation: (operation) ->$/;" f -pushOperation src/app/undo-manager.coffee /^ pushOperation: (operation, editSession) ->$/;" f -pushScope src/app/editor.coffee /^ pushScope = (scope) ->$/;" f -rangeForAllLines src/app/display-buffer.coffee /^ rangeForAllLines: ->$/;" f -rangeForBufferRow src/app/editor.coffee /^ rangeForBufferRow: (row) -> @getBuffer().rangeForRow(row)$/;" f -rangeForRow src/app/buffer.coffee /^ rangeForRow: (row, { includeNewline } = {}) ->$/;" f -re_pattern_buffer native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^typedef struct re_pattern_buffer {$/;" s -re_pattern_buffer native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^typedef struct re_pattern_buffer {$/;" s -re_pattern_buffer native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^typedef struct re_pattern_buffer {$/;" s -re_registers native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^struct re_registers {$/;" s -re_registers native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^struct re_registers {$/;" s -re_registers native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^struct re_registers {$/;" s -read src/app/file.coffee /^ read: (flushCache)->$/;" f -read src/app/pasteboard.coffee /^ read: ->$/;" f -read src/stdlib/fs.coffee /^ read: (path) ->$/;" f -readFieldValue native/v8_extensions/readtags.c /^static const char *readFieldValue ($/;" f file: -readLine src/app/project.coffee /^ readLine = (line) ->$/;" f -readMatches src/app/project.coffee /^ readMatches = (matchInfo, lineText) ->$/;" f -readNext native/v8_extensions/readtags.c /^static tagResult readNext (tagFile *const file, tagEntry *const entry)$/;" f file: -readPath src/app/project.coffee /^ readPath = (line) ->$/;" f -readPseudoTags native/v8_extensions/readtags.c /^static void readPseudoTags (tagFile *const file, tagFileInfo *const info)$/;" f file: -readTagLine native/v8_extensions/readtags.c /^static int readTagLine (tagFile *const file)$/;" f file: -readTagLineRaw native/v8_extensions/readtags.c /^static int readTagLineRaw (tagFile *const file)$/;" f file: -readTagLineSeek native/v8_extensions/readtags.c /^static int readTagLineSeek (tagFile *const file, const off_t pos)$/;" f file: -recreates the snippet's tab stops src/extensions/snippets/spec/snippets-spec.coffee /^ it "recreates the snippet's tab stops", ->$/;" f -redo src/app/buffer.coffee /^ redo: (editSession) ->$/;" f -redo src/app/edit-session.coffee /^ redo: (editSession) ->$/;" f -redo src/app/edit-session.coffee /^ redo: ->$/;" f -redo src/app/editor.coffee /^ redo: -> @activeEditSession.redo()$/;" f -redo src/app/undo-manager.coffee /^ redo: (editSession) ->$/;" f -redo src/extensions/snippets/src/snippets.coffee /^ redo: (editSession) -> snippetExpansion.restore(editSession)$/;" f -refreshAnchorScreenPositions src/app/edit-session.coffee /^ refreshAnchorScreenPositions: ->$/;" f -refreshScreenPosition src/app/anchor.coffee /^ refreshScreenPosition: (options={}) ->$/;" f -refreshScreenPosition src/app/cursor.coffee /^ refreshScreenPosition: ->$/;" f -regExps native/v8_extensions/onig_scanner.mm /^ std::vector regExps;$/;" m class:v8_extensions::OnigScannerUserData file: -regex native/v8_extensions/onig_reg_exp_linux.cpp /^ regex_t* regex;$/;" m class:v8_extensions::OnigRegexpUserData file: -regex_t native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ typedef OnigRegexType regex_t;$/;" t -regex_t native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ typedef OnigRegexType regex_t;$/;" t -regex_t native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ typedef OnigRegexType regex_t;$/;" t -registerFold src/app/display-buffer.coffee /^ registerFold: (fold) ->$/;" f -relativize src/app/git.coffee /^ relativize: (path) ->$/;" f -relativize src/app/project.coffee /^ relativize: (fullPath) ->$/;" f -release src/app/buffer.coffee /^ release: ->$/;" f -reload src/app/buffer.coffee /^ reload: ->$/;" f -reload src/app/window.coffee /^ reload: ->$/;" f -reloads the match list based on the mini-editor's text src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "reloads the match list based on the mini-editor's text", ->$/;" f -remove src/app/cursor-view.coffee /^ remove: ->$/;" f -remove src/app/editor.coffee /^ remove: (selector, keepData) ->$/;" f -remove src/app/pane.coffee /^ remove: (selector, keepData) ->$/;" f -remove src/app/root-view.coffee /^ remove: ->$/;" f -remove src/app/selection-view.coffee /^ remove: ->$/;" f -remove src/stdlib/fs.coffee /^ remove: (path) ->$/;" f -remove src/stdlib/underscore-extensions.coffee /^ remove: (array, element) ->$/;" f -removeAllCursorAndSelectionViews src/app/editor.coffee /^ removeAllCursorAndSelectionViews: ->$/;" f -removeAnchor src/app/buffer.coffee /^ removeAnchor: (anchor) ->$/;" f -removeAnchor src/app/edit-session.coffee /^ removeAnchor: (anchor) ->$/;" f -removeAnchorRange src/app/buffer.coffee /^ removeAnchorRange: (anchorRange) ->$/;" f -removeAnchorRange src/app/edit-session.coffee /^ removeAnchorRange: (anchorRange) ->$/;" f -removeBuffer src/app/project.coffee /^ removeBuffer: (buffer) ->$/;" f -removeCursor src/app/edit-session.coffee /^ removeCursor: (cursor) ->$/;" f -removeCursorView src/app/editor.coffee /^ removeCursorView: (cursorView) ->$/;" f -removeEditSession src/app/project.coffee /^ removeEditSession: (editSession) ->$/;" f -removeErrorClass src/stdlib/jquery-extensions.coffee /^ removeErrorClass = => @removeClass 'error'$/;" f -removeIdleClassTemporarily src/app/cursor-view.coffee /^ removeIdleClassTemporarily: ->$/;" f -removeSelectedEntry src/extensions/tree-view/src/tree-view.coffee /^ removeSelectedEntry: ->$/;" f -removeSelection src/app/edit-session.coffee /^ removeSelection: (selection) ->$/;" f -removeSelectionView src/app/editor.coffee /^ removeSelectionView: (selectionView) ->$/;" f -removeTabAtIndex src/extensions/tabs/src/tabs.coffee /^ removeTabAtIndex: (index) ->$/;" f -removes folds that contain the selections src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "removes folds that contain the selections", ->$/;" f -removes markdown preview src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "removes markdown preview", ->$/;" f -removes the dialog and focuses root view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "removes the dialog and focuses root view", ->$/;" f -removes the dialog and focuses the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "removes the dialog and focuses the tree view", ->$/;" f -removes the error message when the command-panel is toggled src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "removes the error message when the command-panel is toggled", ->$/;" f -removes the tab for the removed edit session src/extensions/tabs/spec/tabs-spec.coffee /^ it "removes the tab for the removed edit session", ->$/;" f -renderLineNumbers src/app/gutter.coffee /^ renderLineNumbers: (startScreenRow, endScreenRow) ->$/;" f -renderMatchList src/extensions/autocomplete/src/autocomplete.coffee /^ renderMatchList: ->$/;" f -renders the root of the project and its contents alphabetically with subdirectories first in a collapsed state src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "renders the root of the project and its contents alphabetically with subdirectories first in a collapsed state", ->$/;" f -repeatRelativeAddress src/extensions/command-panel/src/command-interpreter.coffee /^ repeatRelativeAddress: (activeEditSession) ->$/;" f -repeatRelativeAddress src/extensions/command-panel/src/command-panel.coffee /^ repeatRelativeAddress: ->$/;" f -repeatRelativeAddressInReverse src/extensions/command-panel/src/command-interpreter.coffee /^ repeatRelativeAddressInReverse: (activeEditSession) ->$/;" f -repeatRelativeAddressInReverse src/extensions/command-panel/src/command-panel.coffee /^ repeatRelativeAddressInReverse: ->$/;" f -repeat_range native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigRepeatRange* repeat_range;$/;" m struct:re_pattern_buffer -repeat_range native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigRepeatRange* repeat_range;$/;" m struct:re_pattern_buffer -repeat_range native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigRepeatRange* repeat_range;$/;" m struct:re_pattern_buffer -repeat_range_alloc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int repeat_range_alloc;$/;" m struct:re_pattern_buffer -repeat_range_alloc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int repeat_range_alloc;$/;" m struct:re_pattern_buffer -repeat_range_alloc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int repeat_range_alloc;$/;" m struct:re_pattern_buffer -repeats the last search command if there is one src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "repeats the last search command if there is one", ->$/;" f -replace src/app/buffer.coffee /^ replace = (text) -> replacementText = text$/;" f -replaceBufferRows src/app/old-line-map.coffee /^ replaceBufferRows: (start, end, lineFragments) ->$/;" f -replaceLines src/app/buffer.coffee /^ replaceLines: (startRow, endRow, newLines) ->$/;" f -replaceScreenRows src/app/line-map.coffee /^ replaceScreenRows: (start, end, screenLines) ->$/;" f -replaceScreenRows src/app/old-line-map.coffee /^ replaceScreenRows: (start, end, lineFragments) ->$/;" f -replaceSelectedTextWithMatch src/extensions/autocomplete/src/autocomplete.coffee /^ replaceSelectedTextWithMatch: (match) ->$/;" f -replaces the prefix with the snippet text and places the cursor at its end src/extensions/snippets/spec/snippets-spec.coffee /^ it "replaces the prefix with the snippet text and places the cursor at its end", ->$/;" f -repo native/v8_extensions/git.mm /^ git_repository *repo;$/;" m class:v8_extensions::GitRepository file: -requestDisplayUpdate src/app/editor.coffee /^ requestDisplayUpdate: ()->$/;" f -require src/stdlib/require.coffee /^require = (path, cb) ->$/;" f -requireExtension src/app/window.coffee /^ requireExtension: (name, config) ->$/;" f -requireStylesheet src/app/window.coffee /^ requireStylesheet: (path) ->$/;" f -resetBlinking src/app/cursor-view.coffee /^ resetBlinking: ->$/;" f -resetCursorAnimation src/app/cursor-view.coffee /^ resetCursorAnimation: ->$/;" f -resetDisplay src/app/editor.coffee /^ resetDisplay: ->$/;" f -resolve src/app/project.coffee /^ resolve: (filePath) ->$/;" f -resolve src/stdlib/require.coffee /^resolve = (name, {verifyExistence}={}) ->$/;" f -resolveBackReferences src/app/text-mate-grammar.coffee /^ resolveBackReferences: (line, beginCaptureIndices) ->$/;" f -restore src/extensions/snippets/src/snippet-expansion.coffee /^ restore: (@editSession) ->$/;" f -restores expanded directories and selected file when deserialized src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores expanded directories and selected file when deserialized", ->$/;" f -restores tabs stops in active edit session even when the initial expansion was in a different edit session src/extensions/snippets/spec/snippets-spec.coffee /^ it "restores tabs stops in active edit session even when the initial expansion was in a different edit session", ->$/;" f -restores the expansion state of descendant directories src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores the expansion state of descendant directories", ->$/;" f -restores the focus state of the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores the focus state of the tree view", ->$/;" f -restores the original selections upon completion if it is the last command src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "restores the original selections upon completion if it is the last command", ->$/;" f -restores the scroll top when toggled src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "restores the scroll top when toggled", ->$/;" f -resumeEvents src/app/event-emitter.coffee /^ resumeEvents: ->$/;" f -retain src/app/buffer.coffee /^ retain: ->$/;" f -retains focus on the mini editor and does not show the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "retains focus on the mini editor and does not show the preview list", ->$/;" f -returns an error message if the last regex has no matches src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "returns an error message if the last regex has no matches", ->$/;" f -returns focus to the root view but does not hide the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "returns focus to the root view but does not hide the command panel", ->$/;" f -returns selection operations for all regex matches in all the project's files src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "returns selection operations for all regex matches in all the project's files", ->$/;" f -revealActiveFile src/extensions/tree-view/src/tree-view.coffee /^ revealActiveFile: ->$/;" f -reverse src/extensions/command-panel/src/commands/composite-command.coffee /^ reverse: ->$/;" f -reverse src/extensions/command-panel/src/commands/regex-address.coffee /^ reverse: ->$/;" f -rootView src/app/editor.coffee /^ rootView: ->$/;" f -rootView src/app/pane.coffee /^ rootView: ->$/;" f -rowRangeForFoldAtBufferRow src/app/language-mode.coffee /^ rowRangeForFoldAtBufferRow: (bufferRow) ->$/;" f -ruleForInclude src/app/text-mate-grammar.coffee /^ ruleForInclude: (name) ->$/;" f -sTagFile native/v8_extensions/readtags.c /^struct sTagFile {$/;" s file: -safeFn src/app/undo-manager.coffee /^ safeFn = ->$/;" f -save src/app/buffer.coffee /^ save: ->$/;" f -save src/app/edit-session.coffee /^ save: -> @buffer.save()$/;" f -save src/app/editor.coffee /^ save: (onSuccess) ->$/;" f -saveAll src/app/root-view.coffee /^ saveAll: ->$/;" f -saveAs src/app/buffer.coffee /^ saveAs: (path) ->$/;" f -saveAs src/app/edit-session.coffee /^ saveAs: (path) -> @buffer.saveAs(path)$/;" f -saveScrollPositionForActiveEditSession src/app/editor.coffee /^ saveScrollPositionForActiveEditSession: ->$/;" f -scan src/app/buffer.coffee /^ scan: (regex, iterator) ->$/;" f -scan src/app/project.coffee /^ scan: (regex, iterator) ->$/;" f -scanInRange src/app/buffer.coffee /^ scanInRange: (regex, range, iterator, reverse=false) ->$/;" f -scanInRange src/app/edit-session.coffee /^ scanInRange: (args...) -> @buffer.scanInRange(args...)$/;" f -scanInRange src/app/editor.coffee /^ scanInRange: (args...) -> @getBuffer().scanInRange(args...)$/;" f -schedulePopulateList src/app/select-list.coffee /^ schedulePopulateList: ->$/;" f -scheduleStoppedChangingEvent src/app/buffer.coffee /^ scheduleStoppedChangingEvent: ->$/;" f -scopesForBufferPosition src/app/display-buffer.coffee /^ scopesForBufferPosition: (bufferPosition) ->$/;" f -scopesForBufferPosition src/app/edit-session.coffee /^ scopesForBufferPosition: (bufferPosition) -> @displayBuffer.scopesForBufferPosition(bufferPosition)$/;" f -scopesForPosition src/app/tokenized-buffer.coffee /^ scopesForPosition: (position) ->$/;" f -scopesFromStack src/app/text-mate-grammar.coffee /^scopesFromStack = (stack) ->$/;" f -screenColumnForBufferColumn src/app/screen-line.coffee /^ screenColumnForBufferColumn: (bufferColumn, options) ->$/;" f -screenLineCount src/app/edit-session.coffee /^ screenLineCount: -> @displayBuffer.lineCount()$/;" f -screenLineCount src/app/editor.coffee /^ screenLineCount: -> @activeEditSession.screenLineCount()$/;" f -screenLineCount src/app/line-map.coffee /^ screenLineCount: ->$/;" f -screenLineCount src/app/old-line-map.coffee /^ screenLineCount: ->$/;" f -screenLineRangeForBufferRange src/app/display-buffer.coffee /^ screenLineRangeForBufferRange: (bufferRange) ->$/;" f -screenPositionForBufferPosition src/app/display-buffer.coffee /^ screenPositionForBufferPosition: (position, options) ->$/;" f -screenPositionForBufferPosition src/app/edit-session.coffee /^ screenPositionForBufferPosition: (bufferPosition, options) -> @displayBuffer.screenPositionForBufferPosition(bufferPosition, options)$/;" f -screenPositionForBufferPosition src/app/editor.coffee /^ screenPositionForBufferPosition: (position, options) -> @activeEditSession.screenPositionForBufferPosition(position, options)$/;" f -screenPositionForBufferPosition src/app/line-map.coffee /^ screenPositionForBufferPosition: (bufferPosition, options={}) ->$/;" f -screenPositionForBufferPosition src/app/old-line-map.coffee /^ screenPositionForBufferPosition: (bufferPosition, options) ->$/;" f -screenPositionFromMouseEvent src/app/editor.coffee /^ screenPositionFromMouseEvent: (e) ->$/;" f -screenPositionFromPixelPosition src/app/editor.coffee /^ screenPositionFromPixelPosition: ({top, left}) ->$/;" f -screenRangeChanged src/app/selection.coffee /^ screenRangeChanged: ->$/;" f -screenRangeForBufferRange src/app/display-buffer.coffee /^ screenRangeForBufferRange: (bufferRange) ->$/;" f -screenRangeForBufferRange src/app/edit-session.coffee /^ screenRangeForBufferRange: (range) -> @displayBuffer.screenRangeForBufferRange(range)$/;" f -screenRangeForBufferRange src/app/editor.coffee /^ screenRangeForBufferRange: (range) -> @activeEditSession.screenRangeForBufferRange(range)$/;" f -screenRangeForBufferRange src/app/line-map.coffee /^ screenRangeForBufferRange: (bufferRange) ->$/;" f -screenRangeForBufferRange src/app/old-line-map.coffee /^ screenRangeForBufferRange: (bufferRange) ->$/;" f -screenRowAndScreenLinesForBufferRow src/app/line-map.coffee /^ screenRowAndScreenLinesForBufferRow: (bufferRow) ->$/;" f -screenRowForBufferRow src/app/display-buffer.coffee /^ screenRowForBufferRow: (bufferRow) ->$/;" f -scrollBottom src/app/editor.coffee /^ scrollBottom: (scrollBottom) ->$/;" f -scrollHorizontally src/app/editor.coffee /^ scrollHorizontally: (pixelPosition) ->$/;" f -scrollToBottom src/app/editor.coffee /^ scrollToBottom: ->$/;" f -scrollToBufferPosition src/app/editor.coffee /^ scrollToBufferPosition: (bufferPosition, options) ->$/;" f -scrollToElement src/extensions/command-panel/src/preview-list.coffee /^ scrollToElement: (element) ->$/;" f -scrollToEntry src/extensions/tree-view/src/tree-view.coffee /^ scrollToEntry: (entry) ->$/;" f -scrollToItem src/app/select-list.coffee /^ scrollToItem: (item) ->$/;" f -scrollToPixelPosition src/app/editor.coffee /^ scrollToPixelPosition: (pixelPosition, options) ->$/;" f -scrollToScreenPosition src/app/editor.coffee /^ scrollToScreenPosition: (screenPosition, options) ->$/;" f -scrollTop src/app/editor.coffee /^ scrollTop: (scrollTop, options={}) ->$/;" f -scrollVertically src/app/editor.coffee /^ scrollVertically: (pixelPosition, {center}={}) ->$/;" f -scrolls down a page src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls down a page", ->$/;" f -scrolls the tree view to the selected item src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls the tree view to the selected item", ->$/;" f -scrolls to the bottom src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls to the bottom", ->$/;" f -scrolls to the selected match if it is out of view src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "scrolls to the selected match if it is out of view", ->$/;" f -scrolls to the top src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls to the top", ->$/;" f -scrolls up a page src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "scrolls up a page", ->$/;" f -search native/v8_extensions/readtags.c /^ } search;$/;" m struct:sTagFile typeref:struct:sTagFile::__anon23 file: -searches from the end of each selection in the buffer src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "searches from the end of each selection in the buffer", ->$/;" f -searches in reverse when prefixed with a - src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "searches in reverse when prefixed with a -", ->$/;" f -selectActiveFile src/extensions/tree-view/src/tree-view.coffee /^ selectActiveFile: ->$/;" f -selectAll src/app/edit-session.coffee /^ selectAll: ->$/;" f -selectAll src/app/editor.coffee /^ selectAll: -> @activeEditSession.selectAll()$/;" f -selectAll src/app/selection.coffee /^ selectAll: ->$/;" f -selectDown src/app/edit-session.coffee /^ selectDown: ->$/;" f -selectDown src/app/editor.coffee /^ selectDown: -> @activeEditSession.selectDown()$/;" f -selectDown src/app/selection.coffee /^ selectDown: ->$/;" f -selectEntry src/extensions/tree-view/src/tree-view.coffee /^ selectEntry: (entry) ->$/;" f -selectEntryForPath src/extensions/tree-view/src/tree-view.coffee /^ selectEntryForPath: (path) ->$/;" f -selectItem src/app/select-list.coffee /^ selectItem: (item) ->$/;" f -selectLeft src/app/edit-session.coffee /^ selectLeft: ->$/;" f -selectLeft src/app/editor.coffee /^ selectLeft: -> @activeEditSession.selectLeft()$/;" f -selectLeft src/app/selection.coffee /^ selectLeft: ->$/;" f -selectLine src/app/edit-session.coffee /^ selectLine: ->$/;" f -selectMatchAtIndex src/extensions/autocomplete/src/autocomplete.coffee /^ selectMatchAtIndex: (index) ->$/;" f -selectNextItem src/app/select-list.coffee /^ selectNextItem: ->$/;" f -selectNextMatch src/extensions/autocomplete/src/autocomplete.coffee /^ selectNextMatch: ->$/;" f -selectNextOperation src/extensions/command-panel/src/preview-list.coffee /^ selectNextOperation: ->$/;" f -selectOnMousemoveUntilMouseup src/app/editor.coffee /^ selectOnMousemoveUntilMouseup: ->$/;" f -selectPreviousItem src/app/select-list.coffee /^ selectPreviousItem: ->$/;" f -selectPreviousMatch src/extensions/autocomplete/src/autocomplete.coffee /^ selectPreviousMatch: ->$/;" f -selectPreviousOperation src/extensions/command-panel/src/preview-list.coffee /^ selectPreviousOperation: ->$/;" f -selectRight src/app/edit-session.coffee /^ selectRight: ->$/;" f -selectRight src/app/editor.coffee /^ selectRight: -> @activeEditSession.selectRight()$/;" f -selectRight src/app/selection.coffee /^ selectRight: ->$/;" f -selectToBeginningOfLine src/app/edit-session.coffee /^ selectToBeginningOfLine: ->$/;" f -selectToBeginningOfLine src/app/editor.coffee /^ selectToBeginningOfLine: -> @activeEditSession.selectToBeginningOfLine()$/;" f -selectToBeginningOfLine src/app/selection.coffee /^ selectToBeginningOfLine: ->$/;" f -selectToBeginningOfWord src/app/edit-session.coffee /^ selectToBeginningOfWord: ->$/;" f -selectToBeginningOfWord src/app/editor.coffee /^ selectToBeginningOfWord: -> @activeEditSession.selectToBeginningOfWord()$/;" f -selectToBeginningOfWord src/app/selection.coffee /^ selectToBeginningOfWord: ->$/;" f -selectToBottom src/app/edit-session.coffee /^ selectToBottom: ->$/;" f -selectToBottom src/app/editor.coffee /^ selectToBottom: -> @activeEditSession.selectToBottom()$/;" f -selectToBottom src/app/selection.coffee /^ selectToBottom: ->$/;" f -selectToBufferPosition src/app/selection.coffee /^ selectToBufferPosition: (position) ->$/;" f -selectToEndOfLine src/app/edit-session.coffee /^ selectToEndOfLine: ->$/;" f -selectToEndOfLine src/app/editor.coffee /^ selectToEndOfLine: -> @activeEditSession.selectToEndOfLine()$/;" f -selectToEndOfLine src/app/selection.coffee /^ selectToEndOfLine: ->$/;" f -selectToEndOfWord src/app/edit-session.coffee /^ selectToEndOfWord: ->$/;" f -selectToEndOfWord src/app/editor.coffee /^ selectToEndOfWord: -> @activeEditSession.selectToEndOfWord()$/;" f -selectToEndOfWord src/app/selection.coffee /^ selectToEndOfWord: ->$/;" f -selectToScreenPosition src/app/edit-session.coffee /^ selectToScreenPosition: (position) ->$/;" f -selectToScreenPosition src/app/editor.coffee /^ selectToScreenPosition: (position) -> @activeEditSession.selectToScreenPosition(position)$/;" f -selectToScreenPosition src/app/selection.coffee /^ selectToScreenPosition: (position) ->$/;" f -selectToTop src/app/edit-session.coffee /^ selectToTop: ->$/;" f -selectToTop src/app/editor.coffee /^ selectToTop: -> @activeEditSession.selectToTop()$/;" f -selectToTop src/app/selection.coffee /^ selectToTop: ->$/;" f -selectUp src/app/edit-session.coffee /^ selectUp: ->$/;" f -selectUp src/app/editor.coffee /^ selectUp: -> @activeEditSession.selectUp()$/;" f -selectUp src/app/selection.coffee /^ selectUp: ->$/;" f -selectWord src/app/edit-session.coffee /^ selectWord: ->$/;" f -selectWord src/app/editor.coffee /^ selectWord: -> @activeEditSession.selectWord()$/;" f -selectWord src/app/selection.coffee /^ selectWord: ->$/;" f -selected a file's parent dir if the file's entry is not visible src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selected a file's parent dir if the file's entry is not visible", ->$/;" f -selectedEntry src/extensions/tree-view/src/tree-view.coffee /^ selectedEntry: ->$/;" f -selectedMatch src/extensions/autocomplete/src/autocomplete.coffee /^ selectedMatch: ->$/;" f -selectionIntersectsBufferRange src/app/edit-session.coffee /^ selectionIntersectsBufferRange: (bufferRange) ->$/;" f -selects EOF src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects EOF", ->$/;" f -selects and confirms the match src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "selects and confirms the match", ->$/;" f -selects from the begining of buffer to the end of the right address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects from the begining of buffer to the end of the right address", ->$/;" f -selects from the begining of left address to the end file src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects from the begining of left address to the end file", ->$/;" f -selects from the begining of the left address to the end of the right address src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects from the begining of the left address to the end of the right address", ->$/;" f -selects the created directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the created directory", ->$/;" f -selects the entire file src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects the entire file", ->$/;" f -selects the entry after its grandparent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the entry after its grandparent directory", ->$/;" f -selects the entry after its parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the entry after its parent directory", ->$/;" f -selects the file and opens it in the active editor on the first click, then changes focus to the active editor on the second src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the file and opens it in the active editor on the first click, then changes focus to the active editor on the second", ->$/;" f -selects the file in that is open in that editor src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the file in that is open in that editor", ->$/;" f -selects the files and opens it in the active editor, without changing focus src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the files and opens it in the active editor, without changing focus", ->$/;" f -selects the first entry of the directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the first entry of the directory", ->$/;" f -selects the last entry in the expanded directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the last entry in the expanded directory", ->$/;" f -selects the next/previous operation (if there is one), and scrolls the list if needed src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "selects the next\/previous operation (if there is one), and scrolls the list if needed", ->$/;" f -selects the parent directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the parent directory", ->$/;" f -selects the previous entry src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the previous entry", ->$/;" f -selects the rootview src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "selects the rootview", ->$/;" f -selects the specified line src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects the specified line", ->$/;" f -selects the zero-length string at the start of the file src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "selects the zero-length string at the start of the file", ->$/;" f -sendPathToMainProcessAndExit native/main_mac.mm /^void sendPathToMainProcessAndExit(int fd, NSString *socketPath, NSString *path) {$/;" f -sep native/v8_extensions/readtags.c /^#define sep /;" d file: -sep native/v8_extensions/readtags.c /^#undef sep$/;" d file: -serialize src/app/edit-session.coffee /^ serialize: ->$/;" f -serialize src/app/editor.coffee /^ serialize: ->$/;" f -serialize src/app/pane-grid.coffee /^ serialize: ->$/;" f -serialize src/app/pane.coffee /^ serialize: ->$/;" f -serialize src/app/point.coffee /^ serialize: ->$/;" f -serialize src/app/root-view.coffee /^ serialize: ->$/;" f -serialize src/extensions/tree-view/src/tree-view.coffee /^ serialize: ->$/;" f -serializeEntryExpansionStates src/extensions/tree-view/src/directory-view.coffee /^ serializeEntryExpansionStates: ->$/;" f -serializeExtensions src/app/root-view.coffee /^ serializeExtensions: ->$/;" f -serializes without throwing an exception src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "serializes without throwing an exception", ->$/;" f -set src/stdlib/storage.coffee /^ set: (key, value) ->$/;" f -setActiveEditSessionIndex src/app/editor.coffee /^ setActiveEditSessionIndex: (index) ->$/;" f -setActiveTab src/extensions/tabs/src/tabs.coffee /^ setActiveTab: (index) ->$/;" f -setArray src/app/select-list.coffee /^ setArray: (@array) ->$/;" f -setAutoIndent src/app/edit-session.coffee /^ setAutoIndent: (@autoIndent) ->$/;" f -setAutoIndent src/app/project.coffee /^ setAutoIndent: (@autoIndent) ->$/;" f -setBufferPosition src/app/anchor.coffee /^ setBufferPosition: (position, options={}) ->$/;" f -setBufferPosition src/app/cursor.coffee /^ setBufferPosition: (bufferPosition, options) ->$/;" f -setBufferRange src/app/selection.coffee /^ setBufferRange: (bufferRange, options={}) ->$/;" f -setCurrentBuffer src/extensions/autocomplete/src/autocomplete.coffee /^ setCurrentBuffer: (@currentBuffer) ->$/;" f -setCursorBufferPosition src/app/edit-session.coffee /^ setCursorBufferPosition: (position, options) ->$/;" f -setCursorBufferPosition src/app/editor.coffee /^ setCursorBufferPosition: (position, options) -> @activeEditSession.setCursorBufferPosition(position, options)$/;" f -setCursorScreenPosition src/app/edit-session.coffee /^ setCursorScreenPosition: (position) ->$/;" f -setCursorScreenPosition src/app/editor.coffee /^ setCursorScreenPosition: (position) -> @activeEditSession.setCursorScreenPosition(position)$/;" f -setError src/app/select-list.coffee /^ setError: (message) ->$/;" f -setFontSize src/app/editor.coffee /^ setFontSize: (fontSize) ->$/;" f -setFontSize src/app/root-view.coffee /^ setFontSize: (newFontSize) ->$/;" f -setHideIgnoredFiles src/app/project.coffee /^ setHideIgnoredFiles: (@hideIgnoredFiles) ->$/;" f -setHtml src/extensions/markdown-preview/src/markdown-preview.coffee /^ setHtml: (html) ->$/;" f -setIndentationForBufferRow src/app/edit-session.coffee /^ setIndentationForBufferRow: (bufferRow, newLevel) ->$/;" f -setInvisibles src/app/editor.coffee /^ setInvisibles: (@invisibles={}) ->$/;" f -setInvisibles src/app/root-view.coffee /^ setInvisibles: (invisibles={}) ->$/;" f -setLoading src/app/select-list.coffee /^ setLoading: (message) ->$/;" f -setPath src/app/buffer.coffee /^ setPath: (path) ->$/;" f -setPath src/app/file.coffee /^ setPath: (@path) ->$/;" f -setPath src/app/project.coffee /^ setPath: (path) ->$/;" f -setPosition src/extensions/autocomplete/src/autocomplete.coffee /^ setPosition: (originalCursorPosition) ->$/;" f -setRootPane src/app/root-view.coffee /^ setRootPane: (pane) ->$/;" f -setScreenPosition src/app/anchor.coffee /^ setScreenPosition: (position, options={}) ->$/;" f -setScreenPosition src/app/cursor.coffee /^ setScreenPosition: (screenPosition, options) ->$/;" f -setScreenRange src/app/selection.coffee /^ setScreenRange: (screenRange, options) ->$/;" f -setScrollLeft src/app/edit-session.coffee /^ setScrollLeft: (@scrollLeft) ->$/;" f -setScrollPositionFromActiveEditSession src/app/editor.coffee /^ setScrollPositionFromActiveEditSession: ->$/;" f -setScrollTop src/app/edit-session.coffee /^ setScrollTop: (@scrollTop) ->$/;" f -setSelectedBufferRange src/app/edit-session.coffee /^ setSelectedBufferRange: (bufferRange, options) ->$/;" f -setSelectedBufferRange src/app/editor.coffee /^ setSelectedBufferRange: (bufferRange, options) -> @activeEditSession.setSelectedBufferRange(bufferRange, options)$/;" f -setSelectedBufferRanges src/app/edit-session.coffee /^ setSelectedBufferRanges: (bufferRanges, options={}) ->$/;" f -setSelectedBufferRanges src/app/editor.coffee /^ setSelectedBufferRanges: (bufferRanges, options) -> @activeEditSession.setSelectedBufferRanges(bufferRanges, options)$/;" f -setSelectedOperationIndex src/extensions/command-panel/src/preview-list.coffee /^ setSelectedOperationIndex: (index) ->$/;" f -setSelectionAsLastRelativeAddress src/extensions/command-panel/src/command-panel.coffee /^ setSelectionAsLastRelativeAddress: ->$/;" f -setShowInvisibles src/app/editor.coffee /^ setShowInvisibles: (showInvisibles) ->$/;" f -setShowInvisibles src/app/root-view.coffee /^ setShowInvisibles: (showInvisibles) ->$/;" f -setSoftTabs src/app/edit-session.coffee /^ setSoftTabs: (@softTabs) ->$/;" f -setSoftTabs src/app/project.coffee /^ setSoftTabs: (@softTabs) ->$/;" f -setSoftWrap src/app/edit-session.coffee /^ setSoftWrap: (@softWrap) ->$/;" f -setSoftWrap src/app/editor.coffee /^ setSoftWrap: (softWrap, softWrapColumn=undefined) ->$/;" f -setSoftWrap src/app/project.coffee /^ setSoftWrap: (@softWrap) ->$/;" f -setSoftWrapColumn src/app/display-buffer.coffee /^ setSoftWrapColumn: (@softWrapColumn) ->$/;" f -setSoftWrapColumn src/app/edit-session.coffee /^ setSoftWrapColumn: (@softWrapColumn) -> @displayBuffer.setSoftWrapColumn(@softWrapColumn)$/;" f -setSoftWrapColumn src/app/editor.coffee /^ setSoftWrapColumn: (softWrapColumn) ->$/;" f -setTabLength src/app/display-buffer.coffee /^ setTabLength: (tabLength) ->$/;" f -setTabLength src/app/edit-session.coffee /^ setTabLength: (tabLength) -> @displayBuffer.setTabLength(tabLength)$/;" f -setTabLength src/app/tokenized-buffer.coffee /^ setTabLength: (@tabLength) ->$/;" f -setTabStopIndex src/extensions/snippets/src/snippet-expansion.coffee /^ setTabStopIndex: (@tabStopIndex) ->$/;" f -setText src/app/buffer.coffee /^ setText: (text) ->$/;" f -setText src/app/editor.coffee /^ setText: (text) -> @getBuffer().setText(text)$/;" f -setTitle src/app/root-view.coffee /^ setTitle: (title) ->$/;" f -setUpKeymap src/app/window.coffee /^ setUpKeymap: ->$/;" f -setVisible src/app/cursor-view.coffee /^ setVisible: (visible) ->$/;" f -setVisible src/app/cursor.coffee /^ setVisible: (visible) ->$/;" f -setVisible src/app/display-buffer.coffee /^ setVisible: (visible) -> @tokenizedBuffer.setVisible(visible)$/;" f -setVisible src/app/edit-session.coffee /^ setVisible: (visible) -> @displayBuffer.setVisible(visible)$/;" f -setVisible src/app/tokenized-buffer.coffee /^ setVisible: (@visible) ->$/;" f -sets the @lastRelativeAddress to a RegexAddress of the current selection src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "sets the @lastRelativeAddress to a RegexAddress of the current selection", ->$/;" f -sets the current selection to every match of the regex in the current selection src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "sets the current selection to every match of the regex in the current selection", ->$/;" f -sharedApplication native/atom_application.h /^+ (AtomApplication *)sharedApplication;$/;" v -shiftCapture src/app/text-mate-grammar.coffee /^shiftCapture = (captureIndices) ->$/;" f -shifts focus to the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shifts focus to the tree view", ->$/;" f -show's that there are no matches found when there is no prefix or suffix src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "show's that there are no matches found when there is no prefix or suffix", ->$/;" f -showBufferConflictAlert src/app/editor.coffee /^ showBufferConflictAlert: (editSession) ->$/;" f -showError src/extensions/tree-view/src/dialog.coffee /^ showError: (message) ->$/;" f -shows a list of all valid event descriptions, names, and keybindings for the previously focused element src/extensions/event-palette/spec/event-palette-spec.coffee /^ it "shows a list of all valid event descriptions, names, and keybindings for the previously focused element", ->$/;" f -shows all relative file paths for the current project and selects the first src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "shows all relative file paths for the current project and selects the first", ->$/;" f -shows an error message and does not close the dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows an error message and does not close the dialog", ->$/;" f -shows an error message when no matching tags are found src/extensions/outline-view/spec/outline-view-spec.coffee /^ it "shows an error message when no matching tags are found", ->$/;" f -shows and focuses the command panel src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows and focuses the command panel", ->$/;" f -shows and focuses the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows and focuses the preview list", ->$/;" f -shows and focuses the tree view src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows and focuses the tree view", ->$/;" f -shows and focuses the tree view and selects the file src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows and focuses the tree view and selects the file", ->$/;" f -shows and focuses the tree view, but does not attempt to select a specific file src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows and focuses the tree view, but does not attempt to select a specific file", ->$/;" f -shows autocomplete view and focuses its mini-editor src/extensions/autocomplete/spec/autocomplete-spec.coffee /^ it "shows autocomplete view and focuses its mini-editor", ->$/;" f -shows the FuzzyFinder or hides it nad returns focus to the active editor if it already showing src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "shows the FuzzyFinder or hides it nad returns focus to the active editor if it already showing", ->$/;" f -shows the FuzzyFinder or hides it, returning focus to the active editor if src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "shows the FuzzyFinder or hides it, returning focus to the active editor if", ->$/;" f -shows the command panel and focuses the mini editor, but does not show the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows the command panel and focuses the mini editor, but does not show the preview list", ->$/;" f -shows the command panel and the preview list, and focuses the preview list src/extensions/command-panel/spec/command-panel-spec.coffee /^ it "shows the command panel and the preview list, and focuses the preview list", ->$/;" f -shows the native alert dialog src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "shows the native alert dialog", ->$/;" f -shutdown src/app/window.coffee /^ shutdown: ->$/;" f -simplifyClassName src/stdlib/settings.coffee /^ simplifyClassName: (className) ->$/;" f -size native/v8_extensions/readtags.c /^ off_t size;$/;" m struct:sTagFile file: -size native/v8_extensions/readtags.c /^ size_t size;$/;" m struct:__anon22 file: -skipLeadingWhitespace src/app/cursor.coffee /^ skipLeadingWhitespace: ->$/;" f -skips to the next directory src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "skips to the next directory", ->$/;" f -softWrapAt src/app/screen-line.coffee /^ softWrapAt: (column) ->$/;" f -sort native/v8_extensions/readtags.h /^ sortType sort;$/;" m struct:__anon28::__anon30 -sortMethod native/v8_extensions/readtags.c /^ sortType sortMethod;$/;" m struct:sTagFile file: -sortType native/v8_extensions/readtags.h /^} sortType ;$/;" t typeref:enum:__anon26 -spliceAtBufferRow src/app/old-line-map.coffee /^ spliceAtBufferRow: (startRow, rowCount, lineFragments) ->$/;" f -spliceAtScreenRow src/app/line-map.coffee /^ spliceAtScreenRow: (startRow, rowCount, screenLines) ->$/;" f -spliceAtScreenRow src/app/old-line-map.coffee /^ spliceAtScreenRow: (startRow, rowCount, lineFragments) ->$/;" f -spliceByDelta src/app/old-line-map.coffee /^ spliceByDelta: (deltaType, startRow, rowCount, lineFragments) ->$/;" f -split src/app/pane.coffee /^ split: (view, axis, side) ->$/;" f -split src/stdlib/fs.coffee /^ split: (path) ->$/;" f -splitAt src/app/old-screen-line.coffee /^ splitAt: (column) ->$/;" f -splitAt src/app/point.coffee /^ splitAt: (column) ->$/;" f -splitAt src/app/token.coffee /^ splitAt: (splitIndex) ->$/;" f -splitDown src/app/editor.coffee /^ splitDown: ->$/;" f -splitDown src/app/pane.coffee /^ splitDown: (view) ->$/;" f -splitLeft src/app/editor.coffee /^ splitLeft: ->$/;" f -splitLeft src/app/pane.coffee /^ splitLeft: (view) ->$/;" f -splitRight src/app/editor.coffee /^ splitRight: ->$/;" f -splitRight src/app/pane.coffee /^ splitRight: (view) ->$/;" f -splitUp src/app/editor.coffee /^ splitUp: ->$/;" f -splitUp src/app/pane.coffee /^ splitUp: (view) ->$/;" f -splitView native/atom_window_controller.h /^@property (nonatomic, retain) IBOutlet NSSplitView *splitView;$/;" v -splitView native/atom_window_controller.mm /^@synthesize splitView=_splitView;$/;" v -stackForRow src/app/tokenized-buffer.coffee /^ stackForRow: (row) ->$/;" f -stack_pop_level native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int stack_pop_level;$/;" m struct:re_pattern_buffer -stack_pop_level native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int stack_pop_level;$/;" m struct:re_pattern_buffer -stack_pop_level native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int stack_pop_level;$/;" m struct:re_pattern_buffer -startBlinking src/app/cursor-view.coffee /^ startBlinking: ->$/;" f -startup src/app/window.coffee /^ startup: ->$/;" f -state native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int state; \/* normal, searching, compiling *\/$/;" m struct:re_pattern_buffer -state native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int state; \/* normal, searching, compiling *\/$/;" m struct:re_pattern_buffer -state native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int state; \/* normal, searching, compiling *\/$/;" m struct:re_pattern_buffer -status native/v8_extensions/readtags.h /^ } status;$/;" m struct:__anon28 typeref:struct:__anon28::__anon29 -stdout src/extensions/outline-view/src/tag-generator.coffee /^ stdout: (data) =>$/;" f -stop src/app/buffer.coffee /^ stop = -> keepLooping = false$/;" f -stop src/app/tokenized-buffer.coffee /^ stop = -> keepLooping = false$/;" f -stopBlinking src/app/cursor-view.coffee /^ stopBlinking: ->$/;" f -stoppedChangingCallback src/app/buffer.coffee /^ stoppedChangingCallback = =>$/;" f -storage src/stdlib/storage.coffee /^ storage: ->$/;" f -stringFromCefV8Value native/v8_extensions/native.mm /^NSString *stringFromCefV8Value(const CefRefPtr& value) {$/;" f namespace:v8_extensions -stripTrailingWhitespaceBeforeSave src/extensions/strip-trailing-whitespace/src/strip-trailing-whitespace.coffee /^ stripTrailingWhitespaceBeforeSave: (buffer) ->$/;" f -strips trailing whitespace before an editor saves a buffer src/extensions/strip-trailing-whitespace/spec/strip-trailing-whitespace-spec.coffee /^ it "strips trailing whitespace before an editor saves a buffer", ->$/;" f -strnuppercmp native/v8_extensions/readtags.c /^static int strnuppercmp (const char *s1, const char *s2, size_t n)$/;" f file: -struppercmp native/v8_extensions/readtags.c /^static int struppercmp (const char *s1, const char *s2)$/;" f file: -sub_anchor native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int sub_anchor; \/* start-anchor for exact or map *\/$/;" m struct:re_pattern_buffer -sub_anchor native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int sub_anchor; \/* start-anchor for exact or map *\/$/;" m struct:re_pattern_buffer -sub_anchor native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int sub_anchor; \/* start-anchor for exact or map *\/$/;" m struct:re_pattern_buffer -subscribeToBuffer src/app/status-bar.coffee /^ subscribeToBuffer: ->$/;" f -subscribeToFile src/app/buffer.coffee /^ subscribeToFile: ->$/;" f -subscribeToFontSize src/app/editor.coffee /^ subscribeToFontSize: ->$/;" f -subscribeToNativeChangeEvents src/app/directory.coffee /^ subscribeToNativeChangeEvents: ->$/;" f -subscribeToNativeChangeEvents src/app/file.coffee /^ subscribeToNativeChangeEvents: ->$/;" f -subscriptionCount src/app/event-emitter.coffee /^ subscriptionCount: ->$/;" f -success src/extensions/markdown-preview/src/markdown-preview.coffee /^ success: (html) => @setHtml(html)$/;" f -suggestedIndentForBufferRow src/app/edit-session.coffee /^ suggestedIndentForBufferRow: (bufferRow) ->$/;" f -suggestedIndentForBufferRow src/app/language-mode.coffee /^ suggestedIndentForBufferRow: (bufferRow) ->$/;" f -sum src/stdlib/underscore-extensions.coffee /^ sum: (array) ->$/;" f -surrenders focus to the root view but remains open src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "surrenders focus to the root view but remains open", ->$/;" f -switches the active editor to the edit session for the selected path src/extensions/fuzzy-finder/spec/fuzzy-finder-spec.coffee /^ it "switches the active editor to the edit session for the selected path", ->$/;" f -syncCursorAnimations src/app/editor.coffee /^ syncCursorAnimations: ->$/;" f -syntax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:re_pattern_buffer -syntax native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:__anon7 -syntax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:re_pattern_buffer -syntax native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:__anon14 -syntax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:re_pattern_buffer -syntax native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigSyntaxType* syntax;$/;" m struct:__anon21 -szPath native/linux/atom_app.cpp /^const char* szPath; \/\/ The folder the application is in$/;" v -szPathToOpen native/linux/atom_app.cpp /^const char* szPathToOpen; \/\/ The file to open$/;" v -szTitle native/atom_win.cpp /^TCHAR szTitle[MAX_LOADSTRING]; \/\/ The title bar text$/;" v -szWindowClass native/atom_win.cpp /^TCHAR szWindowClass[MAX_LOADSTRING]; \/\/ the main window class name$/;" v -szWorkingDir native/atom_gtk.cpp /^char szWorkingDir[512]; \/\/ The current working directory$/;" v -szWorkingDir native/atom_win.cpp /^char szWorkingDir[MAX_PATH]; \/\/ The current working directory$/;" v -szWorkingDir native/linux/atom_app.cpp /^char* szWorkingDir; \/\/ The current working directory$/;" v -tabStopsForBufferPosition src/extensions/snippets/src/snippet-expansion.coffee /^ tabStopsForBufferPosition: (bufferPosition) ->$/;" f -tagEntry native/v8_extensions/readtags.h /^} tagEntry;$/;" t typeref:struct:__anon33 -tagExtensionField native/v8_extensions/readtags.h /^} tagExtensionField;$/;" t typeref:struct:__anon32 -tagFile native/v8_extensions/readtags.h /^typedef struct sTagFile tagFile;$/;" t typeref:struct:sTagFile -tagFileInfo native/v8_extensions/readtags.h /^} tagFileInfo;$/;" t typeref:struct:__anon28 -tagResult native/v8_extensions/readtags.h /^typedef enum { TagFailure = 0, TagSuccess = 1 } tagResult;$/;" t typeref:enum:__anon27 -tagsClose native/v8_extensions/readtags.c /^extern tagResult tagsClose (tagFile *const file)$/;" f -tagsField native/v8_extensions/readtags.c /^extern const char *tagsField (const tagEntry *const entry, const char *const key)$/;" f -tagsFind native/v8_extensions/readtags.c /^extern tagResult tagsFind (tagFile *const file, tagEntry *const entry,$/;" f -tagsFindNext native/v8_extensions/readtags.c /^extern tagResult tagsFindNext (tagFile *const file, tagEntry *const entry)$/;" f -tagsFirst native/v8_extensions/readtags.c /^extern tagResult tagsFirst (tagFile *const file, tagEntry *const entry)$/;" f -tagsNext native/v8_extensions/readtags.c /^extern tagResult tagsNext (tagFile *const file, tagEntry *const entry)$/;" f -tagsOpen native/v8_extensions/readtags.c /^extern tagFile *tagsOpen (const char *const filePath, tagFileInfo *const info)$/;" f -tagsSetSortType native/v8_extensions/readtags.c /^extern tagResult tagsSetSortType (tagFile *const file, const sortType type)$/;" f -target_enc native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigEncoding target_enc;$/;" m struct:__anon7 -target_enc native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigEncoding target_enc;$/;" m struct:__anon14 -target_enc native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigEncoding target_enc;$/;" m struct:__anon21 -terminate native/v8_extensions/readtags.c /^static void terminate (tagFile *const file)$/;" f file: -terminates the snippet src/extensions/snippets/spec/snippets-spec.coffee /^ it "terminates the snippet", ->$/;" f -textLength src/app/old-screen-line.coffee /^ textLength: ->$/;" f -threshold_len native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int threshold_len; \/* search str-length for apply optimize *\/$/;" m struct:re_pattern_buffer -threshold_len native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int threshold_len; \/* search str-length for apply optimize *\/$/;" m struct:re_pattern_buffer -threshold_len native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int threshold_len; \/* search str-length for apply optimize *\/$/;" m struct:re_pattern_buffer -throwException native/v8_extensions/native.mm /^void throwException(const CefRefPtr& global, CefRefPtr exception, NSString *message) {$/;" f namespace:v8_extensions -toArray src/app/point.coffee /^ toArray: ->$/;" f -toDelta src/app/range.coffee /^ toDelta: ->$/;" f -toJS src/stdlib/storage.coffee /^ toJS: (value) ->$/;" f -toString src/app/point.coffee /^ toString: ->$/;" f -toggle src/extensions/command-panel/src/command-panel.coffee /^ toggle: ->$/;" f -toggle src/extensions/markdown-preview/src/markdown-preview.coffee /^ toggle: ->$/;" f -toggle src/extensions/outline-view/src/outline-view.coffee /^ toggle: ->$/;" f -toggle src/extensions/tree-view/src/tree-view.coffee /^ toggle: ->$/;" f -toggleBufferFinder src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ toggleBufferFinder: ->$/;" f -toggleExpansion src/extensions/tree-view/src/directory-view.coffee /^ toggleExpansion: ->$/;" f -toggleFileFinder src/extensions/fuzzy-finder/src/fuzzy-finder.coffee /^ toggleFileFinder: ->$/;" f -toggleIgnoredFiles src/app/project.coffee /^ toggleIgnoredFiles: -> @setHideIgnoredFiles(not @hideIgnoredFiles)$/;" f -toggleIgnoredFiles src/app/root-view.coffee /^ toggleIgnoredFiles: ->$/;" f -toggleLineComments src/app/selection.coffee /^ toggleLineComments: ->$/;" f -toggleLineCommentsForBufferRows src/app/edit-session.coffee /^ toggleLineCommentsForBufferRows: (start, end) ->$/;" f -toggleLineCommentsForBufferRows src/app/language-mode.coffee /^ toggleLineCommentsForBufferRows: (start, end) ->$/;" f -toggleLineCommentsInSelection src/app/edit-session.coffee /^ toggleLineCommentsInSelection: ->$/;" f -toggleLineCommentsInSelection src/app/editor.coffee /^ toggleLineCommentsInSelection: ->$/;" f -togglePreview src/extensions/command-panel/src/command-panel.coffee /^ togglePreview: ->$/;" f -toggleSoftTabs src/app/editor.coffee /^ toggleSoftTabs: ->$/;" f -toggleSoftWrap src/app/editor.coffee /^ toggleSoftWrap: ->$/;" f -toggles display of ignored path when setting is toggled src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "toggles display of ignored path when setting is toggled", ->$/;" f -toggles on/off a preview for a .md file src/extensions/markdown-preview/spec/markdown-preview-spec.coffee /^ it "toggles on\/off a preview for a .md file", ->$/;" f -toggles the directory expansion state and does not change the focus to the editor src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "toggles the directory expansion state and does not change the focus to the editor", ->$/;" f -tokenAtBufferColumn src/app/old-screen-line.coffee /^ tokenAtBufferColumn: (bufferColumn) ->$/;" f -tokenAtBufferColumn src/app/screen-line.coffee /^ tokenAtBufferColumn: (bufferColumn) ->$/;" f -tokenizeInBackground src/app/tokenized-buffer.coffee /^ tokenizeInBackground: ->$/;" f -tokenizeLine src/app/language-mode.coffee /^ tokenizeLine: (line, stack) ->$/;" f -tokenizeLine src/app/text-mate-grammar.coffee /^ tokenizeLine: (line, ruleStack=[@initialRule]) ->$/;" f -tokenizeNextChunk src/app/tokenized-buffer.coffee /^ tokenizeNextChunk: ->$/;" f -transact src/app/buffer.coffee /^ transact: (fn) ->$/;" f -transact src/app/edit-session.coffee /^ transact: (fn) ->$/;" f -transact src/app/undo-manager.coffee /^ transact: (fn) ->$/;" f -translateColor src/app/text-mate-theme.coffee /^ translateColor: (textmateColor) ->$/;" f -translateColumn src/app/old-screen-line.coffee /^ translateColumn: (sourceDeltaType, targetDeltaType, sourceColumn, options={}) ->$/;" f -translatePosition src/app/old-line-map.coffee /^ translatePosition: (sourceDeltaType, targetDeltaType, sourcePosition, options={}) ->$/;" f -translateScopeSelector src/app/text-mate-theme.coffee /^ translateScopeSelector: (textmateScopeSelector) ->$/;" f -translateScopeSelectorSettings src/app/text-mate-theme.coffee /^ translateScopeSelectorSettings: ({ foreground, background, fontStyle }) ->$/;" f -transpose src/app/edit-session.coffee /^ transpose: ->$/;" f -transpose src/app/editor.coffee /^ transpose: -> @activeEditSession.transpose()$/;" f -traverseByDelta src/app/old-line-map.coffee /^ traverseByDelta: (deltaType, startPosition, endPosition=startPosition, iterator=null) ->$/;" f -traverseTree src/stdlib/fs.coffee /^ traverseTree: (rootPath, onFile, onDirectory) ->$/;" f -trigger src/app/event-emitter.coffee /^ trigger: (eventName, args...) ->$/;" f -trigger src/stdlib/event.coffee /^ trigger: (name, data...) ->$/;" f -triggerCommandEvent src/app/keymap.coffee /^ triggerCommandEvent: (keyEvent, commandName) ->$/;" f -truncateIntactRanges src/app/editor.coffee /^ truncateIntactRanges: (intactRanges, renderFrom, renderTo) ->$/;" f -undo src/app/buffer-change-operation.coffee /^ undo: ->$/;" f -undo src/app/buffer.coffee /^ undo: (editSession) ->$/;" f -undo src/app/edit-session.coffee /^ undo: (editSession) ->$/;" f -undo src/app/edit-session.coffee /^ undo: ->$/;" f -undo src/app/editor.coffee /^ undo: -> @activeEditSession.undo()$/;" f -undo src/app/undo-manager.coffee /^ undo: (editSession) ->$/;" f -undo src/extensions/snippets/src/snippets.coffee /^ undo: -> snippetExpansion.destroy()$/;" f -unfoldAll src/app/display-buffer.coffee /^ unfoldAll: ->$/;" f -unfoldAll src/app/edit-session.coffee /^ unfoldAll: ->$/;" f -unfoldAll src/app/editor.coffee /^ unfoldAll: -> @activeEditSession.unfoldAll()$/;" f -unfoldBufferRow src/app/display-buffer.coffee /^ unfoldBufferRow: (bufferRow) ->$/;" f -unfoldBufferRow src/app/edit-session.coffee /^ unfoldBufferRow: (bufferRow) ->$/;" f -unfoldCurrentRow src/app/edit-session.coffee /^ unfoldCurrentRow: ->$/;" f -unfoldCurrentRow src/app/editor.coffee /^ unfoldCurrentRow: -> @activeEditSession.unfoldCurrentRow()$/;" f -unhighlight src/app/selection-view.coffee /^ unhighlight: ->$/;" f -union src/app/range.coffee /^ union: (otherRange) ->$/;" f -unregisterFold src/app/display-buffer.coffee /^ unregisterFold: (bufferRow, fold) ->$/;" f -unsubscribeFromNativeChangeEvents src/app/directory.coffee /^ unsubscribeFromNativeChangeEvents: ->$/;" f -unsubscribeFromNativeChangeEvents src/app/file.coffee /^ unsubscribeFromNativeChangeEvents: ->$/;" f -unwatchDescendantEntries src/extensions/tree-view/src/directory-view.coffee /^ unwatchDescendantEntries: ->$/;" f -unwatchEntries src/extensions/tree-view/src/directory-view.coffee /^ unwatchEntries: ->$/;" f -updateAnchors src/app/buffer.coffee /^ updateAnchors: (change) ->$/;" f -updateBranchText src/app/status-bar.coffee /^ updateBranchText: ->$/;" f -updateBufferHasModifiedText src/app/status-bar.coffee /^ updateBufferHasModifiedText: (differsFromDisk)->$/;" f -updateCachedDiskContents src/app/buffer.coffee /^ updateCachedDiskContents: ->$/;" f -updateCursorPositionText src/app/status-bar.coffee /^ updateCursorPositionText: ->$/;" f -updateCursorViews src/app/editor.coffee /^ updateCursorViews: ->$/;" f -updateDisplay src/app/cursor-view.coffee /^ updateDisplay: ->$/;" f -updateDisplay src/app/editor.coffee /^ updateDisplay: (options={}) ->$/;" f -updateDisplay src/app/selection-view.coffee /^ updateDisplay: ->$/;" f -updateEndRow src/app/fold.coffee /^ updateEndRow: (event) ->$/;" f -updateFileName src/extensions/tabs/src/tab.coffee /^ updateFileName: ->$/;" f -updateGuide src/extensions/wrap-guide/src/wrap-guide.coffee /^ updateGuide: (editor) ->$/;" f -updateInvalidRows src/app/tokenized-buffer.coffee /^ updateInvalidRows: (start, end, delta) ->$/;" f -updateLayerDimensions src/app/editor.coffee /^ updateLayerDimensions: ->$/;" f -updateLineNumbers src/app/gutter.coffee /^ updateLineNumbers: (changes, renderFrom, renderTo) ->$/;" f -updatePaddingOfRenderedLines src/app/editor.coffee /^ updatePaddingOfRenderedLines: ->$/;" f -updatePathText src/app/status-bar.coffee /^ updatePathText: ->$/;" f -updateRenderedLines src/app/editor.coffee /^ updateRenderedLines: ->$/;" f -updateRoot src/extensions/tree-view/src/tree-view.coffee /^ updateRoot: ->$/;" f -updateScopeStack src/app/editor.coffee /^ updateScopeStack = (desiredScopes) ->$/;" f -updateSelectionViews src/app/editor.coffee /^ updateSelectionViews: ->$/;" f -updateStartRow src/app/fold.coffee /^ updateStartRow: (event) ->$/;" f -updateStatusBar src/app/status-bar.coffee /^ updateStatusBar: ->$/;" f -updateStatusText src/app/status-bar.coffee /^ updateStatusText: ->$/;" f -updateWindowTitle src/app/root-view.coffee /^ updateWindowTitle: ->$/;" f -updates the directory view to display the directory's new contents src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "updates the directory view to display the directory's new contents", ->$/;" f -updates the file name in the tab src/extensions/tabs/spec/tabs-spec.coffee /^ it "updates the file name in the tab", ->$/;" f -updates the wrap guide position src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "updates the wrap guide position", ->$/;" f -upper native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ int upper;$/;" m struct:__anon6 -upper native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ int upper;$/;" m struct:__anon13 -upper native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ int upper;$/;" m struct:__anon20 -url native/v8_extensions/readtags.c /^ char *url;$/;" m struct:sTagFile::__anon25 file: -url native/v8_extensions/readtags.h /^ const char *url;$/;" m struct:__anon28::__anon31 -used native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ unsigned int used; \/* used space for p *\/$/;" m struct:re_pattern_buffer -used native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ unsigned int used; \/* used space for p *\/$/;" m struct:re_pattern_buffer -used native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ unsigned int used; \/* used space for p *\/$/;" m struct:re_pattern_buffer -uses the entire file as the address range src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "uses the entire file as the address range", ->$/;" f -uses the function from the config data src/extensions/wrap-guide/spec/wrap-guide-spec.coffee /^ it "uses the function from the config data", ->$/;" f -uses the selection as the address range src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "uses the selection as the address range", ->$/;" f -usesSoftTabs src/app/buffer.coffee /^ usesSoftTabs: ->$/;" f -v8_extensions native/v8_extensions/atom.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/atom.mm /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/atom_linux.cpp /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/git.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/git.mm /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/native.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/native.mm /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/native_linux.cpp /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/native_linux.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/onig_reg_exp.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/onig_reg_exp.mm /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/onig_reg_exp_linux.cpp /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/onig_scanner.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/onig_scanner.mm /^namespace v8_extensions {$/;" n file: -v8_extensions native/v8_extensions/tags.h /^namespace v8_extensions {$/;" n -v8_extensions native/v8_extensions/tags.mm /^namespace v8_extensions {$/;" n file: -validateRow src/app/tokenized-buffer.coffee /^ validateRow: (row) ->$/;" f -value native/v8_extensions/readtags.h /^ const char *value;$/;" m struct:__anon32 -version native/v8_extensions/readtags.c /^ char *version;$/;" m struct:sTagFile::__anon25 file: -version native/v8_extensions/readtags.h /^ const char *version;$/;" m struct:__anon28::__anon31 -verticalChildUnits src/app/pane-grid.coffee /^ verticalChildUnits: ->$/;" f -verticalGridUnits src/app/pane-column.coffee /^ verticalGridUnits: ->$/;" f -verticalGridUnits src/app/pane-row.coffee /^ verticalGridUnits: ->$/;" f -verticalGridUnits src/app/pane.coffee /^ verticalGridUnits: ->$/;" f -vstring native/v8_extensions/readtags.c /^} vstring;$/;" t typeref:struct:__anon22 file: -wWinMain native/atom_win.cpp /^int APIENTRY wWinMain(HINSTANCE hInstance,$/;" f -watchEntries src/extensions/tree-view/src/directory-view.coffee /^ watchEntries: ->$/;" f -webView native/atom_window_controller.h /^@property (nonatomic, retain) IBOutlet NSView *webView;$/;" v -webView native/atom_window_controller.mm /^@synthesize webView=_webView;$/;" v -when collapsing a directory, removes change subscriptions from the collapsed directory and its descendants src/extensions/tree-view/spec/tree-view-spec.coffee /^ it "when collapsing a directory, removes change subscriptions from the collapsed directory and its descendants", ->$/;" f -window native/linux/client_handler.h /^ GtkWidget* window;$/;" m class:ClientHandler -window native/v8_extensions/native_linux.h /^ GtkWidget* window;$/;" m class:v8_extensions::NativeHandler -wraps around to the beginning of the buffer, but doesn't infinitely loop if no matches are found src/extensions/command-panel/spec/command-interpreter-spec.coffee /^ it "wraps around to the beginning of the buffer, but doesn't infinitely loop if no matches are found", ->$/;" f -write src/app/file.coffee /^ write: (text) ->$/;" f -write src/app/pasteboard.coffee /^ write: (text, metadata) ->$/;" f -write src/stdlib/fs.coffee /^ write: (path, content) ->$/;" f -zero_or_one_time native/frameworks/CocoaOniguruma.framework/Headers/oniguruma.h /^ OnigCodePoint zero_or_one_time;$/;" m struct:__anon3 -zero_or_one_time native/frameworks/CocoaOniguruma.framework/Versions/A/Headers/oniguruma.h /^ OnigCodePoint zero_or_one_time;$/;" m struct:__anon10 -zero_or_one_time native/frameworks/CocoaOniguruma.framework/Versions/Current/Headers/oniguruma.h /^ OnigCodePoint zero_or_one_time;$/;" m struct:__anon17 -~AtomCefClient native/atom_cef_client.cpp /^AtomCefClient::~AtomCefClient() {$/;" f class:AtomCefClient -~ClientHandler native/linux/client_handler.cpp /^ClientHandler::~ClientHandler() {$/;" f class:ClientHandler -~GitRepository native/v8_extensions/git.mm /^ ~GitRepository() {$/;" f class:v8_extensions::GitRepository -~OnigRegExpUserData native/v8_extensions/onig_reg_exp.mm /^ ~OnigRegExpUserData() {$/;" f class:v8_extensions::OnigRegExpUserData -~OnigRegexpUserData native/v8_extensions/onig_reg_exp_linux.cpp /^ ~OnigRegexpUserData() {$/;" f class:v8_extensions::OnigRegexpUserData -~OnigScannerUserData native/v8_extensions/onig_scanner.mm /^ ~OnigScannerUserData() {$/;" f class:v8_extensions::OnigScannerUserData From 0bb14426524975f2a1151b4664c3a0c70f971b67 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Fri, 14 Dec 2012 10:17:26 -0800 Subject: [PATCH 23/23] Clear loading message when setting error --- src/app/select-list.coffee | 1 + src/extensions/outline-view/spec/outline-view-spec.coffee | 1 + 2 files changed, 2 insertions(+) diff --git a/src/app/select-list.coffee b/src/app/select-list.coffee index 36319c7c8..dbfa71aa5 100644 --- a/src/app/select-list.coffee +++ b/src/app/select-list.coffee @@ -52,6 +52,7 @@ class SelectList extends View @error.text("").hide() @removeClass("error") else + @setLoading() @error.text(message).show() @addClass("error") diff --git a/src/extensions/outline-view/spec/outline-view-spec.coffee b/src/extensions/outline-view/spec/outline-view-spec.coffee index 518c43fe5..81574e5fd 100644 --- a/src/extensions/outline-view/spec/outline-view-spec.coffee +++ b/src/extensions/outline-view/spec/outline-view-spec.coffee @@ -79,6 +79,7 @@ describe "OutlineView", -> expect(outlineView.error).toBeVisible() expect(outlineView.error.text().length).toBeGreaterThan 0 expect(outlineView).toHaveClass "error" + expect(outlineView.find('.loading')).not.toBeVisible() it "moves the cursor to the selected function", -> tags = []