Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:SearchDialogBase
(Results
1 - 5
of
5
) sorted by relevance
/third_party/python/Lib/idlelib/
H
A
D
grep.py
3
Inherits from
SearchDialogBase
for GUI and uses searchengine
13
from idlelib.searchbase import
SearchDialogBase
namespace
64
class GrepDialog(
SearchDialogBase
):
74
Uses
SearchDialogBase
as the basis for the GUI and a
93
Extend the
SearchDialogBase
open() to set the initial value
101
SearchDialogBase
.open(self, text, searchphrase)
114
SearchDialogBase
.create_entries(self)
126
SearchDialogBase
.create_command_buttons(self)
H
A
D
replace.py
1
"""Replace dialog for IDLE. Inherits
SearchDialogBase
for GUI.
10
from idlelib.searchbase import
SearchDialogBase
namespace
31
class ReplaceDialog(
SearchDialogBase
):
40
Uses
SearchDialogBase
as the basis for the GUI and a
63
SearchDialogBase
.open(self, text)
80
SearchDialogBase
.create_entries(self)
89
SearchDialogBase
.create_command_buttons(self)
264
SearchDialogBase
.close(self, event)
H
A
D
search.py
4
Inherits from
SearchDialogBase
for GUI and uses searchengine
10
from idlelib.searchbase import
SearchDialogBase
namespace
62
class SearchDialog(
SearchDialogBase
):
67
SearchDialogBase
.create_widgets(self)
H
A
D
searchbase.py
1
'''Define
SearchDialogBase
used by Search, Replace, and Grep dialogs.'''
8
class
SearchDialogBase
:
class
188
class _searchbase(
SearchDialogBase
): # htest #
/third_party/python/Lib/idlelib/idle_test/
H
A
D
test_searchbase.py
41
self.dialog = sdb.
SearchDialogBase
(root=self.root, engine=self.engine)
Completed in 3 milliseconds