Home
last modified time | relevance | path

Searched refs:Meta (Results 1 – 25 of 106) sorted by relevance

12345

/external/python/cpython2/Lib/idlelib/
Dconfig-keys.def17 close-window=<Alt-Key-F4> <Meta-Key-F4>
22 history-next=<Alt-Key-n> <Meta-Key-n> <Alt-Key-N> <Meta-Key-N>
23 history-previous=<Alt-Key-p> <Meta-Key-p> <Alt-Key-P> <Meta-Key-P>
27 open-class-browser=<Alt-Key-c> <Meta-Key-c> <Alt-Key-C> <Meta-Key-C>
28 open-module=<Alt-Key-m> <Meta-Key-m> <Alt-Key-M> <Meta-Key-M>
43 find-in-files=<Alt-Key-F3> <Meta-Key-F3>
46 goto-line=<Alt-Key-g> <Meta-Key-g> <Alt-Key-G> <Meta-Key-G>
52 comment-region=<Alt-Key-3> <Meta-Key-3>
53 uncomment-region=<Alt-Key-4> <Meta-Key-4>
54 tabify-region=<Alt-Key-5> <Meta-Key-5>
[all …]
/external/markdown/markdown/extensions/
Dwikilinks.py139 if self.md.Meta.has_key('wiki_base_url'):
140 base_url = self.md.Meta['wiki_base_url'][0]
141 if self.md.Meta.has_key('wiki_end_url'):
142 end_url = self.md.Meta['wiki_end_url'][0]
143 if self.md.Meta.has_key('wiki_html_class'):
144 html_class = self.md.Meta['wiki_html_class'][0]
Dheaderid.py129 if self.md.Meta.has_key('header_level'):
130 level = int(self.md.Meta['header_level'][0]) - 1
131 if self.md.Meta.has_key('header_forceid'):
132 force = self._str2bool(self.md.Meta['header_forceid'][0])
Dmeta.py81 self.markdown.Meta = meta
/external/markdown/docs/extensions/
DMeta-Data.txt1 Meta-Data
8 a document. The Meta-Data extension is inspired by and follows the syntax of
10 way, but simply provides it as a `Meta` attribute of a markdown instance for
20 Meta-data consists of a series of keywords and values defined at the beginning
42 Accessing the Meta-Data
45 The meta-data is made available as a python Dict in the `Meta` attribute of an
50 >>> # Meta-data has been stripped from output
55 >>> print md.Meta
69 `Meta` attribute.
78 The following are extensions currently known to work with the Meta-Data
DHeaderId.txt83 Using with Meta-Data
86 The HeaderId Extension also supports the [[Meta-Data]] Extension. Please see the documentation for …
/external/clang/test/CXX/temp/temp.param/
Dp11-0x.cpp57 template<template<int> class... Meta> struct X1tt;
58 template<template<int> class... Meta, template<int> class M>
59 struct X1tt<M, Meta...> { };
67 template<template<int> class... Meta, template<int> class M>
68 void f1tt(X1tt<M, Meta...>);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dmetafunctions.cpp171 template<typename T, template<class> class ...Meta>
173 typedef tuple<typename Meta<T>::type...> type;
195 template<typename T, template<class> class ...Meta>
197 typedef typename apply_each<T, Meta...>::type type;
204 template<typename T, typename ...Meta>
206 typedef typename apply_each<T, Meta::template apply...>::type type;
/external/autotest/frontend/tko/
Dmodels.py131 class Meta: class in Machine
143 class Meta: class in Kernel
155 class Meta: class in Patch
165 class Meta: class in Status
184 class Meta: class in Job
195 class Meta: class in JobKeyval
235 class Meta: class in Test
249 class Meta: class in TestAttribute
265 class Meta: class in IterationAttribute
280 class Meta: class in IterationResult
[all …]
/external/autotest/frontend/afe/
Dmodels.py86 class Meta: class in AtomicGroup
138 class Meta: class in Label
156 class Meta: class in Shard
211 class Meta: class in Drone
309 class Meta: class in DroneSet
420 class Meta: class in User
743 class Meta: class in Host
763 class Meta: class in HostAttribute
857 class Meta: class in Test
872 class Meta: class in TestParameter
[all …]
Dadmin.py28 model = self.Meta.model
33 needs_remove = bool(self.Meta.model.objects.filter(**filter_data))
42 class Meta: class in AtomicGroupForm
58 class Meta: class in LabelForm
147 class Meta: class in HostForm
/external/autotest/frontend/server/
Dmodels.py41 class Meta: class in Server
119 class Meta: class in ServerRole
133 class Meta: class in ServerAttribute
/external/python/cpython2/Demo/metaclasses/
DMeta.py93 Meta = MetaClass('Meta', (), {}) variable
97 class C(Meta):
Dmeta-vladimir.txt121 2. Meta-classes
153 a) Meta-class definition
175 b) Meta-class instantiation
210 c) Meta-class inheritance (meta-class composition and specialization)
212 Meta-classes can be defined in terms of other existing meta-classes
233 Meta-classes define one special property, indicating whether a
/external/googletest/googletest/docs/
DV1_7_PumpManual.md28 Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta
29 Programming, or Practical Utility for Meta Programming, whichever you
55 $$ Meta loop.
130 | `[[ code ]]` | Meta lexical block. …
132 | `$$ comment` | Meta comment. …
DPumpManual.md28 Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta
29 Programming, or Practical Utility for Meta Programming, whichever you
55 $$ Meta loop.
130 | `[[ code ]]` | Meta lexical block. …
132 | `$$ comment` | Meta comment. …
DV1_5_PumpManual.md28 Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta
29 Programming, or Practical Utility for Meta Programming, whichever you
55 $$ Meta loop.
130 | `[[ code ]]` | Meta lexical block. …
132 | `$$ comment` | Meta comment. …
DV1_6_PumpManual.md28 Pump (for Pump is Useful for Meta Programming, Pretty Useful for Meta
29 Programming, or Practical Utility for Meta Programming, whichever you
55 $$ Meta loop.
130 | `[[ code ]]` | Meta lexical block. …
132 | `$$ comment` | Meta comment. …
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c386 assert(!ctx->Meta); in _mesa_meta_init()
388 ctx->Meta = CALLOC_STRUCT(gl_meta_state); in _mesa_meta_init()
400 _mesa_meta_glsl_blit_cleanup(ctx, &ctx->Meta->Blit); in _mesa_meta_free()
401 meta_glsl_clear_cleanup(ctx, &ctx->Meta->Clear); in _mesa_meta_free()
402 _mesa_meta_glsl_generate_mipmap_cleanup(ctx, &ctx->Meta->Mipmap); in _mesa_meta_free()
403 cleanup_temp_texture(&ctx->Meta->TempTex); in _mesa_meta_free()
404 meta_decompress_cleanup(ctx, &ctx->Meta->Decompress); in _mesa_meta_free()
405 meta_drawpix_cleanup(ctx, &ctx->Meta->DrawPix); in _mesa_meta_free()
410 free(ctx->Meta); in _mesa_meta_free()
411 ctx->Meta = NULL; in _mesa_meta_free()
[all …]
/external/v8/tools/mb/docs/
DREADME.md1 # The MB (Meta-Build wrapper) documentation
/external/e2fsprogs/util/
Dall.exclude15 Meta
Dsubset.exclude14 Meta
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
DCHANGES.txt15 * Meta change: there now is a CHANGES.txt
/external/libchrome/sandbox/
DBUILD.gn5 # Meta-target that forwards to the proper platform one.
/external/libmojo/mojo/public/
DBUILD.gn6 # Meta-target, don't link into production code.

12345