HomeSort by relevance Sort by last modified time
    Searched full:bases (Results 1 - 25 of 737) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
meta_class.py 11 def __new__(cls, name, bases, attrs):
16 return super(TracedMetaClass, cls).__new__(cls, name, bases, attrs)
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/de-DE/
de-DE_dbg.txt 1 # collection of de-DE dbg knowledge bases
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-GB/
en-GB_dbg.txt 1 # collection of en-GB dbg knowledge bases
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-US/
en-US_dbg.txt 1 # collection of en-US dbg knowledge bases
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/es-ES/
es-ES_dbg.txt 1 # collection of es-ES dbg knowledge bases
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/fr-FR/
fr-FR_dbg.txt 1 # collection of fr-FR dbg knowledge bases
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/
it-IT_dbg.txt 1 # collection of it-IT dbg knowledge bases
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 16 f(a); // expected-warning 2{{use of identifier 'f' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
17 g(); // expected-warning 2{{use of identifier 'g' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
67 var = 3; // expected-warning {{use of undeclared identifier 'var'; unqualified lookup into dependent bases of class template 'B' is a Microsoft extension}}
91 static_func(); // expected-warning {{use of identifier 'static_func' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
92 func(); // expected-warning {{use of identifier 'func' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}} expected-error {{call to non-static member function without an object argument}}
113 void g1(int p = f1());// expected-warning {{use of identifier 'f1' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
114 void g2(int p = f2());// expected-warning {{use of identifier 'f2' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}} expected-error {{call to non-static member function without an object argument}}
139 g(); // expected-warning {{use of identifier 'g' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
163 m_hWnd = 1; // expected-warning {{use of undeclared identifier 'm_hWnd'; unqualified lookup into dependent bases of class template 'A' is a Microsoft extension}}
188 return base_fun(rhs); // expected-warning {{use of identifier 'base_fun' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}
    [all...]
lookup-dependent-bases.cpp 15 D::foo2(); // expected-warning {{use of undeclared identifier 'D'; unqualified lookup into dependent bases of class template 'B' is a Microsoft extension}}
49 D::foo2(); // expected-warning {{use of undeclared identifier 'D'; unqualified lookup into dependent bases of class template 'C' is a Microsoft extension}}
  /external/clang/lib/AST/
VTTBuilder.cpp 59 for (const auto &I : RD->bases()) {
60 // Don't layout virtual bases.
84 // We're not interested in bases that don't have virtual bases, and not
85 // morally virtual bases.
89 for (const auto &I : RD->bases()) {
94 // Secondary virtual pointers are present for all bases with either
95 // virtual bases or virtual function declarations overridden along a
107 // Ignore virtual bases that we've already visited.
126 // bases or is reachable along a virtual path from D, and (b) is not
    [all...]
RecordLayoutBuilder.cpp 46 /// Bases - Information about the base subobjects.
47 SmallVector<BaseSubobjectInfo*, 4> Bases;
187 // Check the bases.
188 for (const CXXBaseSpecifier &Base : Class->bases()) {
233 // We only need to check empty bases.
251 // We only care about empty bases.
279 // Traverse all non-virtual bases.
281 for (const BaseSubobjectInfo *Base : Info->Bases) {
320 // subobject of non-empty bases, are empty bases that can be placed a
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Simple.py 4 def __init__(self, name, bases, namespace):
7 self.__bases__ = bases
Enum.py 27 def __init__(self, name, bases, dict):
38 for base in bases:
41 bases = filter(lambda x: x is not Enum, bases)
43 self.__bases__ = bases
Meta.py 52 def __init__(self, name, bases, dict):
61 self.__bases__ = bases
  /external/nanopb-c/generator/google/protobuf/
reflection.py 100 def __new__(cls, name, bases, dictionary):
110 bases: Base classes of the class we're constructing.
122 bases = _NewMessage(bases, descriptor, dictionary)
125 new_class = superclass.__new__(cls, name, bases, dictionary)
129 def __init__(cls, name, bases, dictionary):
138 bases: Base classes of the class we're constructing.
149 superclass.__init__(name, bases, dictionary)
  /external/clang/test/CoverageMapping/
classtemplate.cpp 13 double bases[BaseCount]; member in class:Test
22 return bases[position];
26 bases[position] = value;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_isinstance.py 14 # class's bases is masked. This was actually a bug in Python 2.2 and
142 def __init__(self, bases):
143 self.bases = bases
146 return self.bases
161 AbstractSuper = AbstractClass(bases=())
163 AbstractChild = AbstractClass(bases=(AbstractSuper,))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
classfix.py 176 bases = basepart.split(',')
179 for i in range(len(bases)):
180 if baseprog.match(bases[i]) >= 0:
182 bases[i] = bases[i][x1:y1]
184 # Join the bases back again and build the new line
185 basepart = ', '.join(bases)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_isinstance.py 14 # class's bases is masked. This was actually a bug in Python 2.2 and
142 def __init__(self, bases):
143 self.bases = bases
146 return self.bases
161 AbstractSuper = AbstractClass(bases=())
163 AbstractChild = AbstractClass(bases=(AbstractSuper,))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_isinstance.py 14 # class's bases is masked. This was actually a bug in Python 2.2 and
142 def __init__(self, bases):
143 self.bases = bases
146 return self.bases
161 AbstractSuper = AbstractClass(bases=())
163 AbstractChild = AbstractClass(bases=(AbstractSuper,))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_isinstance.py 14 # class's bases is masked. This was actually a bug in Python 2.2 and
142 def __init__(self, bases):
143 self.bases = bases
146 return self.bases
161 AbstractSuper = AbstractClass(bases=())
163 AbstractChild = AbstractClass(bases=(AbstractSuper,))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_isinstance.py 14 # class's bases is masked. This was actually a bug in Python 2.2 and
142 def __init__(self, bases):
143 self.bases = bases
146 return self.bases
161 AbstractSuper = AbstractClass(bases=())
163 AbstractChild = AbstractClass(bases=(AbstractSuper,))
  /external/clang/utils/VtableTest/
gen.cc 72 static int bases[N_BASES]; local
75 // PARAM: 1/2 of all clases should have no bases
102 // PARAM: 1/8th the bases are virtual
128 bases[n_bases] = base;
188 int base = bases[i];
275 g(" calc_s"); g(bases[i]); gl("(t);");
281 g(" if ((char *)dynamic_cast<s"); g(bases[i]); gl("*>(this))");
282 g(" mix(\"base dyn cast\", t - (char *)dynamic_cast<s"); g(bases[i]); gl("*>(this));");
314 g("s"); g(bases[i]); g("((char *)this)");
  /prebuilts/misc/common/swig/include/2.0.11/python/
builtin.swg 471 SwigPyBuiltin_InitBases (PyTypeObject *type, PyTypeObject **bases) {
477 if (!bases[0]) {
478 bases[0] = SwigPyObject_type();
479 bases[1] = NULL;
481 type->tp_base = bases[0];
482 Py_INCREF((PyObject *)bases[0]);
483 for (b = bases; *b != NULL; ++b)
487 PyTuple_SET_ITEM(tuple, i, (PyObject *)bases[i]);
488 Py_INCREF((PyObject *)bases[i]);
  /external/v8/tools/clang/blink_gc_plugin/
RecordInfo.cpp 112 // but without stepping over dependent bases -- these might also
118 for (const auto& it : base_record->bases()) {
164 // This is a mixin if all GC bases are mixins.
208 for (Bases::iterator it = GetBases().begin();
278 // or if it inherits from multiple bases that need tracing.
283 for (Bases::iterator it = GetBases().begin(); it != GetBases().end(); ++it) {
311 RecordInfo::Bases& RecordInfo::GetBases() {
320 for (Bases::iterator it = GetBases().begin(); it != GetBases().end(); ++it) {
330 for (Bases::iterator it = GetBases().begin(); it != GetBases().end(); ++it) {
377 RecordInfo::Bases* RecordInfo::CollectBases()
379 Bases* bases = new Bases; local
    [all...]

Completed in 3761 milliseconds

1 2 3 4 5 6 7 8 91011>>