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

1 2 3 4

  /packages/apps/Test/connectivity/sl4n/rapidjson/example/serialize/
serialize.cpp 64 class Dependent : public Person {
66 Dependent(const std::string& name, unsigned age, Education* education = 0) : Person(name, age), education_(education) {}
67 Dependent(const Dependent& rhs) : Person(rhs), education_(0) { education_ = (rhs.education_ == 0) ? 0 : new Education(*rhs.education_); }
68 virtual ~Dependent();
70 Dependent& operator=(const Dependent& rhs) {
98 Dependent::~Dependent() {
107 void AddDependent(const Dependent& dependent) {
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
LoopDependenceAnalysis.h 46 enum DependenceResult { Independent = 0, Dependent = 1, Unknown = 2 };
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopDependenceAnalysis.cpp 43 STATISTIC(NumDependent, "Number of pairs with dependent accesses");
174 return A == B ? Dependent : Independent;
199 return Dependent;
284 if (result != Dependent) {
292 return Dependent;
304 case Dependent: ++NumDependent; break;
357 << ": " << (LDA->depends(*x, *y) ? "dependent" : "independent")
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Dispatcher/
Dispatcher.c 281 DriverEntry->Dependent = TRUE;
287 // Driver will be put in Dependent or Unrequested state
303 @param DriverName The Driver name to put in the Dependent state.
330 // Move the driver from the Unrequested to the Dependent state
334 DriverEntry->Dependent = TRUE;
401 which is implementation-dependent.
584 if (DriverEntry->Dependent) {
634 if (DriverEntry->Before && DriverEntry->Dependent && DriverEntry != InsertedDriverEntry) {
650 // Convert driver from Dependent to Scheduled state
654 InsertedDriverEntry->Dependent = FALSE;
    [all...]
Dependency.c 180 DriverEntry->Dependent = TRUE;
  /external/mesa3d/docs/specs/
MESA_window_pos.spec 118 New Implementation Dependent State
EXT_shader_integer_mix.spec 107 New Implementation Dependent State
MESA_shader_debug.spec 206 implementation dependent double-quoted string, each of this
250 New Implementation Dependent State
MESA_swap_control.spec 93 the maximum implementation-dependent value supported before being
119 New Implementation Dependent State
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Dispatcher.c 701 DriverEntry->Dependent = TRUE;
765 DriverEntry->Dependent = TRUE;
771 // Driver will be put in Dependent state
913 // as all the dependent SMM Drivers for SMM Mode have been dispatched.
    [all...]
  /external/mesa3d/docs/specs/OLD/
MESA_resize_buffers.spec 75 New Implementation Dependent State
  /external/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
Type.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
DeclContextInternals.h 243 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
  /external/clang/lib/AST/
DeclBase.cpp 941 // Friend function declarations are dependent if their *lexical*
942 // context is dependent.
947 // FIXME: A variable template is a dependent context, but is not a
949 // should be considered dependent.
    [all...]
ExprCXX.cpp 146 // The type-to-delete may not be a pointer if it's a dependent type.
277 // Determine whether this expression is type-dependent.
293 // If we have explicit template arguments, check for dependent
297 bool Dependent = false;
302 Dependent, InstantiationDependent, ContainsUnexpandedParameterPack);
304 if (Dependent) {
360 bool Dependent = true;
366 Dependent, InstantiationDependent, ContainsUnexpandedParameterPack);
380 assert(QualifierLoc && "should be created for dependent qualifiers");
    [all...]
  /external/clang/lib/Serialization/
ASTCommon.cpp 115 case BuiltinType::Dependent:
324 // Friend declarations in dependent contexts aren't anonymous in the usual
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 146 namespace Dependent {

Completed in 1003 milliseconds

1 2 3 4