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

1 2 3 4 5 6

  /external/chromium_org/chrome/browser/chromeos/file_manager/
path_util.cc 67 std::vector<std::pair<base::FilePath, base::FilePath> > bases; local
68 bases.push_back(std::make_pair(base::FilePath(kOldDownloadsFolderPath),
70 bases.push_back(std::make_pair(DownloadPrefs::GetDefaultDownloadDirectory(),
72 bases.push_back(std::make_pair(base::FilePath(kOldDriveFolderPath), drive));
73 bases.push_back(std::make_pair(base::FilePath(kBuggyDriveFolderPath), drive));
86 bases.push_back(std::make_pair(hashed_downloads, downloads));
90 for (size_t i = 0; i < bases.size(); ++i) {
91 const base::FilePath& old_base = bases[i].first;
92 const base::FilePath& new_base = bases[i].second;
  /external/chromium_org/third_party/protobuf/python/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)
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/chromium_org/mojo/public/python/mojo/bindings/
reflection.py 28 def __new__(mcs, name, bases, dictionary):
39 return type.__new__(mcs, name, bases, dictionary)
81 def __new__(mcs, name, bases, dictionary):
118 return type.__new__(mcs, name, bases, dictionary)
  /external/chromium_org/tools/traceline/traceline/
sym_resolver.h 60 std::vector<DWORD64> bases; local
68 if (SymEnumerateModules64(proc_, enumer, &bases) != TRUE) {
71 for (size_t i = 0; i < bases.size(); ++i) {
76 if (SymGetModuleInfo64(proc_, bases[i], &info) != TRUE) {
85 dlls_[static_cast<int>(bases[i])] = filename;
  /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)");
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 150 struct dwarf_eh_bases *bases) {
160 bases->tbase = (uintptr_t)info.extra;
161 bases->dbase = 0; // dbase not used on Mac OS X
162 bases->func = (uintptr_t)info.start_ip;
  /external/chromium_org/third_party/cython/src/Cython/Utility/
ObjectHandling.c 669 static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases);
673 static PyObject *__Pyx_CalculateMetaclass(PyTypeObject *metaclass, PyObject *bases) {
674 Py_ssize_t i, nbases = PyTuple_GET_SIZE(bases);
677 PyObject *tmp = PyTuple_GET_ITEM(bases, i);
698 "of the metaclasses of all its bases");
716 static PyObject *__Pyx_FindInheritedMetaclass(PyObject *bases); /*proto*/
722 static PyObject *__Pyx_FindInheritedMetaclass(PyObject *bases) {
724 if (PyTuple_Check(bases) && PyTuple_GET_SIZE(bases) > 0) {
726 PyObject *base = PyTuple_GET_ITEM(bases, 0)
    [all...]
  /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...]
InheritViz.cpp 34 /// differentiate between uses of types as virtual bases
35 /// vs. non-virtual bases.
71 // its bases.
96 for (const auto &Base : Decl->bases()) {
  /external/lldb/scripts/Python/interface/
SBType.i 285 bases = []
287 bases.append(self.GetDirectBaseClassAtIndex(idx))
288 return bases
307 bases = self.get_bases_array()
310 for base in bases:
342 __swig_getmethods__["bases"] = get_bases_array
343 if _newclass: bases = property(get_bases_array, None, doc='''A read only property that returns a list() of lldb.SBTypeMember objects that represent all of the direct base classes for this type.''')
  /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/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:
  /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,))
test_long_future.py 145 bases = (0, DBL_MANT_DIG, DBL_MIN_EXP,
147 for base in bases:
  /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,))
test_long_future.py 145 bases = (0, DBL_MANT_DIG, DBL_MIN_EXP,
147 for base in bases:
  /external/strace/linux/
ioctlent.sh 105 # Collect potential ioctl names. ('bases' is a bad name. Sigh)
108 bases=$(sed -n \
113 for base in $bases; do
  /external/libcxxabi/src/Unwind/
UnwindLevel1-gcc-ext.c 172 struct dwarf_eh_bases *bases) {
182 bases->tbase = (uintptr_t)info.extra;
183 bases->dbase = 0; // dbase not used on Mac OS X
184 bases->func = (uintptr_t)info.start_ip;
  /external/chromium_org/third_party/jinja2/
_compat.py 92 def with_metaclass(meta, *bases):
108 return meta(name, bases, d)
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 160 int[] bases = {2, 5, 7, 8, 10, 16}; local
162 for (int base : bases) {
UnsignedLongsTest.java 169 int[] bases = {2, 5, 7, 8, 10, 16}; local
170 for (int base : bases) {
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
tclapi.swg 49 struct swig_class **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]();

Completed in 1780 milliseconds

1 2 3 4 5 6