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

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
type_traits 88 struct bases
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
type_traits 88 struct bases
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 196 struct dwarf_eh_bases *bases) {
206 bases->tbase = (uintptr_t)info.extra;
207 bases->dbase = 0; // dbase not used on Mac OS X
208 bases->func = (uintptr_t)info.start_ip;
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr2/
type_traits 88 struct bases
  /toolchain/binutils/binutils-2.25/bfd/
libieee.h 94 * special order, we remember various bases here.. */
  /external/llvm/lib/CodeGen/SelectionDAG/
StatepointLowering.cpp 249 removeDuplicateGCPtrs(SmallVectorImpl<const Value *> &Bases,
264 NewBases.push_back(Bases[i]);
273 assert(Bases.size() >= NewBases.size());
276 Bases = NewBases;
279 assert(Ptrs.size() == Bases.size());
423 // Check that each of the gc pointer and bases we've gotten out of the
429 for (const Value *V : SI.Bases) {
444 assert(SI.Bases.empty() && "No gc specified, so cannot relocate pointers!");
457 for (unsigned i = 0; i < SI.Bases.size(); ++i) {
458 reservePreviousStackSlotForValue(SI.Bases[i], Builder)
    [all...]
  /external/clang/test/CodeGenCXX/
rtti-layout.cpp 110 // A does not have any bases.
135 // VMI4 has two bases.
  /external/google-breakpad/src/testing/scripts/generator/
README.cppclean 4 in large code bases, for example various forms of unused code.
15 * Find classes with virtual methods, no virtual destructor, and no bases
  /external/googletest/googlemock/scripts/generator/
README.cppclean 4 in large code bases, for example various forms of unused code.
15 * Find classes with virtual methods, no virtual destructor, and no bases
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
UnsignedIntsTest.java 238 int[] bases = {2, 5, 7, 8, 10, 16}; local
240 for (int base : bases) {
  /external/v8/testing/gmock/scripts/generator/
README.cppclean 4 in large code bases, for example various forms of unused code.
15 * Find classes with virtual methods, no virtual destructor, and no bases
  /frameworks/rs/tests/lldb/tests/testcases/
test_call_api_funs.py 40 def __new__(self, name, bases, class_dict):
70 return type(name, bases, class_dict)
  /libcore/luni/src/test/java/libcore/java/math/
BigIntegerTest.java 57 new BigInteger("-a"); // no digits from other bases.
62 new BigInteger("-1a"); // no trailing digits from other bases.
  /prebuilts/go/darwin-x86/src/math/big/
prime_test.go 56 "1195068768795265792518361315725116351898245581", // strong pseudoprime to prime bases 2 through 29
57 // strong pseudoprime to all prime bases up to 200
  /prebuilts/go/linux-x86/src/math/big/
prime_test.go 56 "1195068768795265792518361315725116351898245581", // strong pseudoprime to prime bases 2 through 29
57 // strong pseudoprime to all prime bases up to 200
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_data_transfer.py 401 def __new__(mcs, name, bases, attrs):
402 if object in bases:
404 mcs, name, bases, attrs)
413 # Prepend the class created via namedtuple to |bases| in order to
417 mcs, name, (header_class,) + bases, attrs)
usb_descriptors.py 95 def __new__(mcs, name, bases, attrs):
99 if object in bases:
100 return super(DescriptorMeta, mcs).__new__(mcs, name, bases, attrs)
158 # Prepend the class created via namedtuple to |bases| in order to
162 (descriptor_class,) + bases,
  /external/clang/include/clang/AST/
CXXInheritance.h 56 /// is no base numbering for the zero or one virtual bases of a
67 /// direct bases and identification describing which base class
89 /// one of its (direct or indirect) bases. For example, given the
206 /// \brief Whether we are detecting virtual bases.
359 /// \brief A set of all the primary bases for a class.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
classobject.c 29 PyClass_New(PyObject *bases, PyObject *dict, PyObject *name)
30 /* bases is NULL or tuple of classobjects! */
73 if (bases == NULL) {
74 bases = PyTuple_New(0);
75 if (bases == NULL)
81 if (!PyTuple_Check(bases)) {
83 "PyClass_New: bases must be a tuple");
86 n = PyTuple_Size(bases);
88 base = PyTuple_GET_ITEM(bases, i);
94 name, bases, dict, NULL);
177 PyObject *name, *bases, *dict; local
    [all...]
abstract.c 2795 PyObject *bases; local
2819 PyObject *bases = NULL; local
2856 PyObject *bases = abstract_get_bases(cls); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
classobject.c 29 PyClass_New(PyObject *bases, PyObject *dict, PyObject *name)
30 /* bases is NULL or tuple of classobjects! */
73 if (bases == NULL) {
74 bases = PyTuple_New(0);
75 if (bases == NULL)
81 if (!PyTuple_Check(bases)) {
83 "PyClass_New: bases must be a tuple");
86 n = PyTuple_Size(bases);
88 base = PyTuple_GET_ITEM(bases, i);
94 name, bases, dict, NULL);
177 PyObject *name, *bases, *dict; local
    [all...]
abstract.c 2799 PyObject *bases; local
2823 PyObject *bases = NULL; local
2860 PyObject *bases = abstract_get_bases(cls); local
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 53 /// * Clang ignores 0 sized bitfields and 0 sized bases but *not* zero sized
69 /// * Itanium allows nearly empty primary virtual bases. These bases don't get
72 /// gets storage awkwardly involves a walk of all bases.
113 /// The Itanium base layout rule allows virtual bases to overlap
114 /// other bases, which complicates layout in specific ways.
180 /// \brief Recursively searches all of the bases to find out if a vbase is
245 // 1) Store all members (fields and bases) in a list and sort them by offset.
442 // If we've got a primary virtual base, we need to add it with the bases.
448 // Accumulate the non-virtual bases
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cxxabi.h 444 // Helper for upcast. See if DST is us, or one of our bases.
454 // of our SRC_TYPE bases, indicate the virtuality. Returns
475 // bases are inherited by the type started from -- which is not
520 // Type information for a class with multiple and/or virtual bases.
525 unsigned int __base_count; // Number of direct bases.
527 // The array of bases uses the trailing array struct hack so this
530 __base_class_type_info __base_info[1]; // Array of bases.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cxxabi.h 444 // Helper for upcast. See if DST is us, or one of our bases.
454 // of our SRC_TYPE bases, indicate the virtuality. Returns
475 // bases are inherited by the type started from -- which is not
520 // Type information for a class with multiple and/or virtual bases.
525 unsigned int __base_count; // Number of direct bases.
527 // The array of bases uses the trailing array struct hack so this
530 __base_class_type_info __base_info[1]; // Array of bases.

Completed in 3015 milliseconds

1 2 3 45 6 7 8 91011>>