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

1 2 3 4 5 6 7 8 91011>>

  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/configs/de-DE/
de-DE_dbg.txt 1 # collection of de-DE dbg knowledge bases
de-DE_gl0_sg.txt 1 # collection of de-DE gl0 siggen knowledge bases
de-DE_ta.txt 1 # collection of de-DE textana 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
en-GB_kh0_sg.txt 1 # collection of en-GB kh0 siggen knowledge bases
en-GB_ta.txt 1 # collection of en-GB textana 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
en-US_ta.txt 1 # collection of en-US textana 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
es-ES_ta.txt 1 # collection of es-ES textana knowledge bases
es-ES_zl0_sg.txt 1 # collection of es-ES zl0 siggen 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
fr-FR_nk0_sg.txt 1 # collection of fr-FR nk0 siggen 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
  /ndk/tests/device/test-stlport_shared-exception/jni/
spec3.cpp 2 // Test that exception-specs work properly for classes with virtual bases.
  /ndk/tests/device/test-stlport_static-exception/jni/
spec3.cpp 2 // Test that exception-specs work properly for classes with virtual bases.
  /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)
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 16 f(a); // expected-warning {{use of identifier 'f' found via unqualified lookup into dependent bases of class templates is a Microsoft extension}}
17 g(); // expected-warning {{use of identifier 'g' found via unqualified lookup into dependent bases of class templates 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}}
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}}
  /external/clang/lib/AST/
VTTBuilder.cpp 62 // Don't layout virtual bases.
86 // We're not interested in bases that don't have virtual bases, and not
87 // morally virtual bases.
97 // Secondary virtual pointers are present for all bases with either
98 // virtual bases or virtual function declarations overridden along a
110 // Ignore virtual bases that we've already visited.
129 // bases or is reachable along a virtual path from D, and (b) is not a
174 // virtual bases.
RecordLayoutBuilder.cpp 47 /// Bases - Information about the base subobjects.
48 SmallVector<BaseSubobjectInfo*, 4> Bases;
142 // Check the bases.
192 // We only need to check empty bases.
210 // We only care about empty bases.
238 // Traverse all non-virtual bases.
240 for (unsigned I = 0, E = Info->Bases.size(); I != E; ++I) {
241 BaseSubobjectInfo* Base = Info->Bases[I];
280 // subobject of non-empty bases, are empty bases that can be placed a
    [all...]
  /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)");
  /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/chromium_org/remoting/host/
capture_scheduler.h 6 // a specified %age. It bases this on the CPU usage of recent capture and encode

Completed in 947 milliseconds

1 2 3 4 5 6 7 8 91011>>