HomeSort by relevance Sort by last modified time
    Searched refs:Meta (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /external/clang/test/CXX/temp/temp.param/
p11-0x.cpp 57 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/markdown/markdown/extensions/
wikilinks.py 50 >>> md = markdown.Markdown(extensions=['meta', 'wikilinks'])
134 """ Return meta data or config data. """
138 if hasattr(self.md, 'Meta'):
139 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]
meta.py 4 Meta Data Extension for Python-Markdown
7 This extension adds Meta Data handling to markdown.
19 >>> md = markdown.Markdown(['meta'])
22 >>> md.Meta
25 Make sure text without Meta Data still works (markdown < 1.6b returns a <p>).
27 >>> text = ' Some Code - not extra lines of meta data.'
28 >>> md = markdown.Markdown(['meta'])
30 u'<pre><code>Some Code - not extra lines of meta data.\\n</code></pre>'
31 >>> md.Meta
36 Project website: <http://www.freewisdom.org/project/python-markdown/Meta-Data
    [all...]
headerid.py 51 >>> md = markdown.markdown(text, ['headerid', 'meta'])
125 """ Return meta data suported by this ext as a tuple """
128 if hasattr(self.md, 'Meta'):
129 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])
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 171 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;
p5.cpp 157 template<typename T, template<class> class ...Meta>
159 typedef tuple<typename Meta<T>::type> type; // expected-error{{declaration type contains unexpanded parameter pack 'Meta'}}
  /external/autotest/frontend/server/
models.py 41 class Meta:
119 class Meta:
133 class Meta:
  /external/autotest/frontend/afe/
models.py 87 class Meta:
141 class Meta:
159 class Meta:
214 class Meta:
312 class Meta:
423 class Meta:
713 class Meta:
733 class Meta:
827 class Meta:
842 class Meta
    [all...]
admin.py 29 model = self.Meta.model
34 needs_remove = bool(self.Meta.model.objects.filter(**filter_data))
43 class Meta:
59 class Meta:
151 class Meta:
rdb_model_extensions.py 204 class Meta:
  /external/autotest/frontend/tko/
models.py 131 class Meta:
143 class Meta:
155 class Meta:
165 class Meta:
184 class Meta:
195 class Meta:
235 class Meta:
249 class Meta:
265 class Meta:
280 class Meta
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/six/
test_six.py 677 class Meta(type):
679 class X(six.with_metaclass(Meta)):
681 assert type(X) is Meta
685 class X(six.with_metaclass(Meta, Base)):
687 assert type(X) is Meta
691 class X(six.with_metaclass(Meta, Base, Base2)):
693 assert type(X) is Meta
730 class Meta(type):
734 X = six.add_metaclass(Meta)(X)
735 assert type(X) is Meta
    [all...]
  /external/chromium-trace/catapult/third_party/six/
test_six.py 711 class Meta(type):
713 class X(six.with_metaclass(Meta)):
715 assert type(X) is Meta
719 class X(six.with_metaclass(Meta, Base)):
721 assert type(X) is Meta
725 class X(six.with_metaclass(Meta, Base, Base2)):
727 assert type(X) is Meta
764 class Meta(type):
768 X = six.add_metaclass(Meta)(X)
769 assert type(X) is Meta
    [all...]
  /system/extras/tests/net_test/
cstruct.py 63 class Meta(type):
75 __metaclass__ = Meta
157 if hasattr(value, "__metaclass__"):# and value.__metaclass__ == Meta:
  /external/mesa3d/src/mesa/drivers/common/
meta.c 26 * Meta operations. Some GL operations can be expressed in terms of
76 #include "drivers/common/meta.h"
85 * State which we may save/restore across meta ops.
202 * This is currently shared by all the meta ops. But we could create a
273 struct temp_texture Tex; /**< separate texture from other meta ops */
326 * All per-context meta state.
330 /** Stack of state saved during meta-ops */
382 "meta program compile failed:\n%s\n"
413 _mesa_problem(ctx, "meta program link failed:\n%s", info);
421 * Initialize meta-ops for a context
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/
naming.py 101 1. Adding a special Meta tag to a site's homepage.
105 Meta tag verification and HTML file verification are easier to perform and
110 precedence over meta tag and HTML file verification. For example, you might
155 use the Meta tag method or HTML file method to verify domain ownership
170 use the Meta tag verification method or the HTML file verification method.
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 705 static MachineOperand CreateMetadata(const MDNode *Meta) {
707 Op.Contents.MD = Meta;
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 68 class Meta:
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_exceptions.py 437 class Meta(type):
442 __metaclass__ = Meta
test_copy.py 192 class Meta(type):
195 __metaclass__ = Meta
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_exceptions.py 437 class Meta(type):
442 __metaclass__ = Meta
test_copy.py 192 class Meta(type):
195 __metaclass__ = Meta
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 437 class Meta(type):
442 __metaclass__ = Meta
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 437 class Meta(type):
442 __metaclass__ = Meta
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_context.c 40 #include "drivers/common/meta.h"
221 if (ctx->Meta)

Completed in 668 milliseconds

1 2 3 4 5 6