HomeSort by relevance Sort by last modified time
    Searched full:bases (Results 26 - 50 of 441) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/it-IT/
it-IT_cm0_sg.txt 1 # collection of it-IT cm0 siggen knowledge bases
it-IT_ta.txt 1 # collection of it-IT textana knowledge bases
  /external/clang/test/CXX/special/class.ctor/
p5-0x.cpp 152 #define ASSERT_NONTRIVIAL_IMPL(Class, Bases, Body) \
153 class Class Bases { Body }; \
155 #define ASSERT_NONTRIVIAL(Class, Bases, Body) \
156 ASSERT_NONTRIVIAL_IMPL(Class, Bases, Body) \
157 ASSERT_NONTRIVIAL_IMPL(Def ## Class, Bases, Def ## Class() = default; Body) \
158 ASSERT_NONTRIVIAL_IMPL(Del ## Class, Bases, Del ## Class() = delete; Body)
  /external/dropbear/libtommath/etc/
pprime.c 179 static const mp_digit bases[] = { 2, 3, 5, 7, 11, 13, 17, 19 }; local
263 /* now try base x=bases[ii] */
265 mp_set (&x, bases[ii]);
321 /* no bases worked? */
333 printf("B == \n%s\n\nG == %d\n", buf, bases[ii]);
376 printf ("Enter number of bases to try (1 to 8):\n");
  /external/clang/lib/AST/
CXXInheritance.cpp 699 CXXIndirectPrimaryBaseSet& Bases) {
703 Bases.insert(Layout.getPrimaryBase());
708 "Cannot get indirect primary bases for class with dependent bases.");
713 // Only bases with virtual bases participate in computing the
716 AddIndirectPrimaryBases(BaseDecl, Context, Bases);
722 CXXRecordDecl::getIndirectPrimaryBases(CXXIndirectPrimaryBaseSet& Bases) const {
731 "Cannot get indirect primary bases for class with dependent bases.")
    [all...]
VTableBuilder.cpp 339 // Traverse our bases.
381 // Ignore bases that don't have any virtual member functions.
550 /// VisitedVirtualBases - Visited virtual bases.
649 // We only want to add vcall offsets for virtual bases.
717 // And iterate over all non-virtual bases (ignoring the primary base).
775 /// primary bases.
815 /// bases in this vtable.
    [all...]
InheritViz.cpp 34 /// differentiate between uses of types as virtual bases
35 /// vs. non-virtual bases.
71 // its bases.
  /abi/cpp/include/
cxxabi.h 70 // Typeinfo for classes with no bases.
132 // Typeinfo for classes with bases that do not satisfy the
  /external/chromium_org/third_party/jinja2/
_compat.py 92 def with_metaclass(meta, *bases):
108 return meta(name, bases, d)
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cxxabi.h 70 // Typeinfo for classes with no bases.
132 // Typeinfo for classes with bases that do not satisfy the
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cxxabi.h 68 // Typeinfo for classes with no bases.
130 // Typeinfo for classes with bases that do not satisfy the
  /external/clang/include/clang/AST/
RecordLayout.h 78 /// the size of the object without virtual bases.
82 /// which is the alignment of the object without virtual bases.
166 /// which is the size of the object without virtual bases.
174 /// which is the alignment of the object without virtual bases.
VTableBuilder.h 318 /// \brief vtable offsets for offsets of virtual bases of a class.
321 /// where the offsets for virtual bases of a class are stored.
370 /// offsets from the vbptr to virtual bases. The bases are ordered the same way
392 "for vfptrs in virtual bases");
403 /// or the complete type if there are no virtual bases.
421 /// complete type if there are no virtual bases.
  /external/clang/test/CodeGenCXX/
virtual-destructor-calls.cpp 16 // Complete dtor: just an alias because there are no virtual bases.
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 26 TEST(ASTNodeKind, Bases) {
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/en-US/
en-US_lh0_sg.txt 1 # collection of en-US lh0 siggen knowledge bases
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/fr-FR/
fr-FR_ta.txt 1 # collection of fr-FR textana knowledge bases
  /external/chromium_org/v8/test/mjsunit/
readonly.js 61 var bases = [CreateFromLiteral, CreateFromObject, CreateDefault]; variable
73 for (var i = 0; i < bases.length; ++i) {
74 var p = bases[i]();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
abc.py 86 def __new__(mcls, name, bases, namespace):
87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)
92 for base in bases:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
abc.py 86 def __new__(mcls, name, bases, namespace):
87 cls = super(ABCMeta, mcls).__new__(mcls, name, bases, namespace)
92 for base in bases:
  /external/clang/lib/CodeGen/
CGRTTI.cpp 48 /// classes with bases that do not satisfy the abi::__si_class_type_info
365 // Check the number of bases.
727 /// SeenBases - Contains virtual and non-virtual bases seen when traversing
739 SeenBases &Bases) {
748 if (!Bases.VirtualBases.insert(BaseDecl)) {
753 if (Bases.NonVirtualBases.count(BaseDecl))
758 if (!Bases.NonVirtualBases.insert(BaseDecl)) {
763 if (Bases.VirtualBases.count(BaseDecl))
768 // Walk all bases.
771 Flags |= ComputeVMIClassTypeInfoFlags(I, Bases);
    [all...]
MicrosoftVBTables.cpp 78 // Recurse onto any bases which themselves have virtual bases.
84 continue; // Bases without virtual bases have no vbptrs.
89 continue; // Don't visit virtual bases twice.
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
service_reflection.py 64 def __init__(cls, name, bases, dictionary):
70 bases: Base classes of the class being constructed.
94 def __init__(cls, name, bases, dictionary):
99 bases: Base classes of the class being constructed.
104 super(GeneratedServiceStubType, cls).__init__(name, bases, dictionary)
  /external/protobuf/python/google/protobuf/
service_reflection.py 64 def __init__(cls, name, bases, dictionary):
70 bases: Base classes of the class being constructed.
94 def __init__(cls, name, bases, dictionary):
99 bases: Base classes of the class being constructed.
104 super(GeneratedServiceStubType, cls).__init__(name, bases, dictionary)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
cxxabi.h 432 // Helper for upcast. See if DST is us, or one of our bases.
442 // of our SRC_TYPE bases, indicate the virtuality. Returns
463 // bases are inherited by the type started from -- which is not
508 // Type information for a class with multiple and/or virtual bases.
513 unsigned int __base_count; // Number of direct bases.
515 // The array of bases uses the trailing array struct hack so this
518 __base_class_type_info __base_info[1]; // Array of bases.

Completed in 551 milliseconds

12 3 4 5 6 7 8 91011>>