OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tab_name
(Results
1 - 11
of
11
) sorted by null
/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/chromium/chrome/browser/
accessibility_events.h
130
const std::string&
tab_name
,
138
void SetTab(int tab_index, std::string
tab_name
) {
140
name_ =
tab_name
;
accessibility_events.cc
107
const std::string&
tab_name
,
110
: AccessibilityControlInfo(profile,
tab_name
),
/external/chromium/chrome/browser/ui/webui/options/
certificate_manager_handler.h
127
void PopulateTree(const std::string&
tab_name
, net::CertType type);
certificate_manager_handler.cc
[
all
...]
/external/chromium_org/chrome/browser/accessibility/
accessibility_events.h
160
const std::string&
tab_name
,
169
void SetTab(int tab_index, std::string
tab_name
) {
171
name_ =
tab_name
;
accessibility_events.cc
120
const std::string&
tab_name
,
124
: AccessibilityControlInfo(profile,
tab_name
),
/external/chromium_org/chrome/browser/ui/webui/options/
certificate_manager_handler.h
140
void PopulateTree(const std::string&
tab_name
,
certificate_manager_handler.cc
[
all
...]
/external/valgrind/main/coregrind/m_debuginfo/
readelf.c
616
struct _DebugInfo* di, UChar*
tab_name
,
634
vg_assert(VG_(strlen)(
tab_name
) < 40);
635
VG_(sprintf)(buf, " object doesn't have a %s",
tab_name
);
641
tab_name
, symtab_szB/sizeof(ElfXX_Sym) );
719
struct _DebugInfo* di, UChar*
tab_name
,
742
vg_assert(VG_(strlen)(
tab_name
) < 40);
743
VG_(sprintf)(buf, " object doesn't have a %s",
tab_name
);
749
tab_name
, symtab_szB/sizeof(ElfXX_Sym) );
[
all
...]
Completed in 1433 milliseconds