Home
last modified time | relevance | path

Searched refs:topics (Results 1 - 8 of 8) sorted by relevance

/third_party/python/Lib/
H A Dcmd.py13 calls the command `help_topic'. With no arguments, it lists all topics
14 with defined help_ functions, broken into up to three topics; documented
15 commands, miscellaneous help topics, and undocumented commands.
41 listings of documented functions, miscellaneous topics, and undocumented
71 misc_header = "Miscellaneous help topics:"
288 topics = set(a[5:] for a in self.get_names()
290 return list(commands | topics)
313 topics = set()
316 topics.add(name[5:])
326 if cmd in topics
[all...]
H A Dpydoc.py1808 # in pydoc_data/topics.py.
1812 # regenerate the pydoc_data/topics.py file by running
1813 # make pydoc-topics
1886 topics = symbols.get(symbol, topic) variable in Helper
1887 if topic not in topics:
1888 topics = topics + ' ' + topic variable in Helper
1889 symbols[symbol] = topics
1890 del topic, symbols_, symbol, topics
1892 topics variable in Helper
2120 import pydoc_data.topics global() namespace
2160 import pydoc_data.topics global() namespace
[all...]
/third_party/python/Doc/
H A DMakefile27 suspicious coverage doctest pydoc-topics htmlview clean dist check serve \
45 @echo " pydoc-topics to regenerate the pydoc topics file"
138 pydoc-topics: BUILDER = pydoc-topics
139 pydoc-topics: build
141 "cp build/pydoc-topics/topics.py ../Lib/pydoc_data/topics.py"
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client/
H A Dminimal-mqtt-client.c59 static lws_mqtt_topic_elem_t topics[] = { variable
65 .topic = &topics[0],
66 .num_topics = LWS_ARRAY_SIZE(topics),
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/
H A Dminimal-mqtt-client-multi.c69 static lws_mqtt_topic_elem_t topics[] = { variable
75 .topic = &topics[0],
76 .num_topics = LWS_ARRAY_SIZE(topics),
/third_party/skia/third_party/externals/abseil-cpp/
H A Dconanfile.py20 topics = ("conan", "abseil", "abseil-cpp", "google", "common-libraries") variable in AbseilConan
/third_party/python/Lib/pydoc_data/
H A Dtopics.py3 topics = {'assert': 'The "assert" statement\n' variable
/third_party/python/Doc/tools/extensions/
H A Dpyspecific.py534 name = 'pydoc-topics'
539 self.topics = {}
543 return 'all pydoc topics'
551 'building topics... ',
562 self.topics[label] = writer.output
565 f = open(path.join(self.outdir, 'topics.py'), 'wb')
569 f.write(('topics = ' + pformat(self.topics) + '\n').encode('utf-8'))

Completed in 57 milliseconds