OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tab_name
(Results
1 - 6
of
6
) sorted by null
/external/python/cpython2/Lib/idlelib/
tabbedpages.py
68
def add_tab(self,
tab_name
):
69
"""Add a new tab with the name given in
tab_name
."""
70
if not
tab_name
:
71
raise InvalidNameError("Invalid Tab name: '%s'" %
tab_name
)
72
if
tab_name
in self._tab_names:
73
raise AlreadyExistsError("Tab named '%s' already exists" %
tab_name
)
75
self._tab_names.append(
tab_name
)
78
def remove_tab(self,
tab_name
):
79
"""Remove the tab named <
tab_name
>"""
80
if not
tab_name
in self._tab_names
[
all
...]
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
tabbedpages.py
68
def add_tab(self,
tab_name
):
69
"""Add a new tab with the name given in
tab_name
."""
70
if not
tab_name
:
71
raise InvalidNameError("Invalid Tab name: '%s'" %
tab_name
)
72
if
tab_name
in self._tab_names:
73
raise AlreadyExistsError("Tab named '%s' already exists" %
tab_name
)
75
self._tab_names.append(
tab_name
)
78
def remove_tab(self,
tab_name
):
79
"""Remove the tab named <
tab_name
>"""
80
if not
tab_name
in self._tab_names
[
all
...]
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
tabbedpages.py
68
def add_tab(self,
tab_name
):
69
"""Add a new tab with the name given in
tab_name
."""
70
if not
tab_name
:
71
raise InvalidNameError("Invalid Tab name: '%s'" %
tab_name
)
72
if
tab_name
in self._tab_names:
73
raise AlreadyExistsError("Tab named '%s' already exists" %
tab_name
)
75
self._tab_names.append(
tab_name
)
78
def remove_tab(self,
tab_name
):
79
"""Remove the tab named <
tab_name
>"""
80
if not
tab_name
in self._tab_names
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py
68
def add_tab(self,
tab_name
):
69
"""Add a new tab with the name given in
tab_name
."""
70
if not
tab_name
:
71
raise InvalidNameError("Invalid Tab name: '%s'" %
tab_name
)
72
if
tab_name
in self._tab_names:
73
raise AlreadyExistsError("Tab named '%s' already exists" %
tab_name
)
75
self._tab_names.append(
tab_name
)
78
def remove_tab(self,
tab_name
):
79
"""Remove the tab named <
tab_name
>"""
80
if not
tab_name
in self._tab_names
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py
68
def add_tab(self,
tab_name
):
69
"""Add a new tab with the name given in
tab_name
."""
70
if not
tab_name
:
71
raise InvalidNameError("Invalid Tab name: '%s'" %
tab_name
)
72
if
tab_name
in self._tab_names:
73
raise AlreadyExistsError("Tab named '%s' already exists" %
tab_name
)
75
self._tab_names.append(
tab_name
)
78
def remove_tab(self,
tab_name
):
79
"""Remove the tab named <
tab_name
>"""
80
if not
tab_name
in self._tab_names
[
all
...]
/external/valgrind/coregrind/m_debuginfo/
readelf.c
782
struct _DebugInfo* di, const HChar*
tab_name
,
790
HChar buf[VG_(strlen)(
tab_name
) + 40];
791
VG_(sprintf)(buf, " object doesn't have a %s",
tab_name
);
797
tab_name
, escn_symtab->szB/sizeof(ElfXX_Sym) );
[
all
...]
Completed in 3998 milliseconds