/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)");
|
/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()) {
|
CXXInheritance.cpp | 140 for (const auto &I : Record->bases()) { 184 for (const auto &BaseSpec : Record->bases()) { 496 for (const auto &Base : RD->bases()) { 687 CXXIndirectPrimaryBaseSet& Bases) { 691 Bases.insert(Layout.getPrimaryBase()); 693 for (const auto &I : RD->bases()) { 695 "Cannot get indirect primary bases for class with dependent bases."); 700 // Only bases with virtual bases participate in computing th [all...] |
RecordLayoutBuilder.cpp | 47 /// Bases - Information about the base subobjects. 48 SmallVector<BaseSubobjectInfo*, 4> Bases; 142 // Check the bases. 143 for (const auto &I : Class->bases()) { 188 // We only need to check empty bases. 206 // We only care about empty bases. 234 // Traverse all non-virtual bases. 236 for (unsigned I = 0, E = Info->Bases.size(); I != E; ++I) { 237 BaseSubobjectInfo* Base = Info->Bases[I]; 276 // subobject of non-empty bases, are empty bases that can be placed a [all...] |
/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/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)
|
nodes.py | 64 def __new__(cls, name, bases, d): 67 storage.extend(getattr(bases[0], attr, ())) 69 assert len(bases) == 1, 'multiple inheritance not allowed' 73 return type.__new__(cls, name, bases, d)
|
ext.py | 35 def __new__(cls, name, bases, d): 36 rv = type.__new__(cls, 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) {
|
/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]();
|
/external/llvm/utils/ |
llvm-compilers-check | 193 bases = [os.path.basename(src) for src in unique_paths] 194 components = { c for c in bases } 196 if len(components) > 1 or len(components) == len(bases): 199 if bases.count(c) == 1: 200 index = bases.index(c)
|
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
dojo-1.6.1.js | [all...] |
/external/chromium_org/courgette/ |
ensemble_create.cc | 157 std::vector<DifferenceEstimator::Base*> bases; local 161 bases.push_back( 164 VLOG(1) << "done make bases " 195 DifferenceEstimator::Base* old_base = bases[old_index];
|
/external/chromium_org/tools/clang/blink_gc_plugin/ |
RecordInfo.cpp | 134 // This is a mixin if all GC bases are mixins. 157 for (Bases::iterator it = GetBases().begin(); 227 // or if it inherits from multiple bases that need tracing. 232 for (Bases::iterator it = GetBases().begin(); it != GetBases().end(); ++it) { 260 RecordInfo::Bases& RecordInfo::GetBases() { 269 for (Bases::iterator it = GetBases().begin(); it != GetBases().end(); ++it) { 279 for (Bases::iterator it = GetBases().begin(); it != GetBases().end(); ++it) { 304 RecordInfo::Bases* RecordInfo::CollectBases() { 306 Bases* bases = new Bases local [all...] |
/external/libvorbis/examples/ |
frameview.pl | 9 my %bases; 547 foreach $key (sort (keys %bases)){ 596 %bases=(); 606 $bases{"$1"}="0";
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
Nodes.py | 109 def __new__(cls, name, bases, attrs): 116 return super(VerboseCodeWriter, cls).__new__(cls, name, bases, attrs) 126 def __new__(cls, name, bases, attrs): 140 return super(CheckAnalysers, cls).__new__(cls, name, bases, attrs) [all...] |