Home
last modified time | relevance | path

Searched refs:ObjectType (Results 1 – 25 of 31) sorted by relevance

12

/minix3/minix/drivers/power/acpi/dispatcher/
H A Ddswload.c154 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad1BeginOp() local
188 ObjectType = WalkState->OpInfo->ObjectType; in AcpiDsLoad1BeginOp()
191 "State=%p Op=%p [%s]\n", WalkState, Op, AcpiUtGetTypeName (ObjectType))); in AcpiDsLoad1BeginOp()
201 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType, in AcpiDsLoad1BeginOp()
212 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType, in AcpiDsLoad1BeginOp()
330 AcpiUtGetTypeName (ObjectType))); in AcpiDsLoad1BeginOp()
336 AcpiUtGetTypeName (ObjectType))); in AcpiDsLoad1BeginOp()
345 Status = AcpiNsLookup (WalkState->ScopeInfo, Path, ObjectType, in AcpiDsLoad1BeginOp()
360 Node->Type = (UINT8) ObjectType; in AcpiDsLoad1BeginOp()
364 if (AcpiNsOpensScope (ObjectType)) in AcpiDsLoad1BeginOp()
[all …]
H A Ddswload2.c78 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad2BeginOp() local
140 ObjectType = WalkState->OpInfo->ObjectType; in AcpiDsLoad2BeginOp()
143 "State=%p Op=%p Type=%X\n", WalkState, Op, ObjectType)); in AcpiDsLoad2BeginOp()
161 Status = AcpiNsLookup (WalkState->ScopeInfo, BufferPtr, ObjectType, in AcpiDsLoad2BeginOp()
174 Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState); in AcpiDsLoad2BeginOp()
187 Status = AcpiNsLookup (WalkState->ScopeInfo, BufferPtr, ObjectType, in AcpiDsLoad2BeginOp()
281 if (AcpiNsOpensScope (ObjectType)) in AcpiDsLoad2BeginOp()
283 Status = AcpiDsScopeStackPush (Node, ObjectType, WalkState); in AcpiDsLoad2BeginOp()
325 Status = AcpiNsLookup (WalkState->ScopeInfo, BufferPtr, ObjectType, in AcpiDsLoad2BeginOp()
390 ACPI_OBJECT_TYPE ObjectType; in AcpiDsLoad2EndOp() local
[all …]
H A Ddswexec.c256 if (AcpiNsOpensScope (WalkState->OpInfo->ObjectType)) in AcpiDsExecBeginOp()
260 AcpiUtGetTypeName (WalkState->OpInfo->ObjectType), Op)); in AcpiDsExecBeginOp()
H A Ddsutils.c664 if (OpInfo->ObjectType == ACPI_TYPE_INVALID) in AcpiDsCreateOperand()
697 ObjDesc = AcpiUtCreateInternalObject (OpInfo->ObjectType); in AcpiDsCreateOperand()
H A Ddsobject.c225 (AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode))->ObjectType); in AcpiDsBuildInternalObject()
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/function.objects/func.require/
H A Dbullet_3_and_4.pass.cpp50 template <class ObjectType>
57 typedef TestMemberObject<ObjectType> TestType;
71 typedef ObjectType (TestType::*MemPtr); in doTest() typedef
72 typedef ObjectType E; in doTest()
82 typedef ObjectType const (TestType::*CMemPtr); in doTest()
83 typedef ObjectType const E; in doTest()
93 typedef ObjectType volatile (TestType::*VMemPtr); in doTest()
94 typedef ObjectType volatile E; in doTest()
104 typedef ObjectType const volatile (TestType::*CVMemPtr); in doTest()
105 typedef ObjectType const volatile E; in doTest()
[all …]
/minix3/minix/drivers/power/acpi/executer/
H A Dexresop.c151 UINT8 ObjectType; in AcpiExResolveOperands() local
210 ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type; in AcpiExResolveOperands()
217 if (ObjectType == ACPI_TYPE_LOCAL_ALIAS) in AcpiExResolveOperands()
221 ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type; in AcpiExResolveOperands()
229 ObjectType = ObjDesc->Common.Type; in AcpiExResolveOperands()
233 if (!AcpiUtValidObjectType (ObjectType)) in AcpiExResolveOperands()
236 "Bad operand object type [0x%X]", ObjectType)); in AcpiExResolveOperands()
241 if (ObjectType == (UINT8) ACPI_TYPE_LOCAL_REFERENCE) in AcpiExResolveOperands()
333 ObjectType, ObjDesc); in AcpiExResolveOperands()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaCXXScopeSpec.cpp346 QualType ObjectType = GetTypeFromParser(ObjectTypePtr); in isNonTypeNestedNameSpecifier() local
352 if (!ObjectType.isNull()) { in isNonTypeNestedNameSpecifier()
356 LookupCtx = computeDeclContext(ObjectType); in isNonTypeNestedNameSpecifier()
357 isDependent = ObjectType->isDependentType(); in isNonTypeNestedNameSpecifier()
447 QualType ObjectType, in BuildCXXNestedNameSpecifier() argument
461 if (!ObjectType.isNull()) { in BuildCXXNestedNameSpecifier()
465 LookupCtx = computeDeclContext(ObjectType); in BuildCXXNestedNameSpecifier()
466 isDependent = ObjectType->isDependentType(); in BuildCXXNestedNameSpecifier()
489 if (!ObjectType.isNull() && Found.empty()) { in BuildCXXNestedNameSpecifier()
603 if (!ObjectType.isNull() && !ObjectTypeSearchedInScope && in BuildCXXNestedNameSpecifier()
[all …]
H A DSemaExprCXX.cpp324 ParsedType Sema::getDestructorType(const DeclSpec& DS, ParsedType ObjectType) { in getDestructorType() argument
325 if (DS.getTypeSpecType() == DeclSpec::TST_error || !ObjectType) in getDestructorType()
330 QualType SearchType = GetTypeFromParser(ObjectType); in getDestructorType()
5207 tok::TokenKind OpKind, ParsedType &ObjectType, in ActOnStartCXXMemberReference() argument
5228 ObjectType = ParsedType::make(BaseType); in ActOnStartCXXMemberReference()
5318 ObjectType = ParsedType(); in ActOnStartCXXMemberReference()
5338 ObjectType = ParsedType::make(BaseType); in ActOnStartCXXMemberReference()
5356 static bool CheckArrow(Sema& S, QualType& ObjectType, Expr *&Base, in CheckArrow() argument
5363 ObjectType = Base->getType(); in CheckArrow()
5372 if (const PointerType *Ptr = ObjectType->getAs<PointerType>()) { in CheckArrow()
[all …]
H A DSemaDeclObjC.cpp2479 QualType ObjectType) { in HelperIsMethodInObjCType() argument
2480 if (ObjectType.isNull()) in HelperIsMethodInObjCType()
2482 if (S.LookupMethodInObjectType(Sel, ObjectType, true/*Instance method*/)) in HelperIsMethodInObjCType()
2484 return S.LookupMethodInObjectType(Sel, ObjectType, false/*Class method*/) != in HelperIsMethodInObjCType()
2490 QualType ObjectType) { in SelectorsForTypoCorrection() argument
2494 if (ObjectType.isNull()) in SelectorsForTypoCorrection()
2496 else if (!ObjectType->isObjCObjectPointerType()) in SelectorsForTypoCorrection()
2499 ObjectType->getAsObjCInterfacePointerType()) { in SelectorsForTypoCorrection()
2500 ObjectType = QualType(ObjCPtr->getInterfaceType(), 0); in SelectorsForTypoCorrection()
2503 else if (ObjectType->isObjCIdType() || ObjectType->isObjCQualifiedIdType()) in SelectorsForTypoCorrection()
[all …]
H A DTreeTransform.h459 QualType ObjectType = QualType(),
494 QualType ObjectType = QualType(),
1048 QualType ObjectType,
1061 QualType ObjectType);
2833 QualType ObjectType,
2838 QualType ObjectType,
2842 TypeSourceInfo *TransformTSIInObjectScope(TypeLoc TL, QualType ObjectType,
3111 QualType ObjectType, in TransformNestedNameSpecifierLoc() argument
3129 ObjectType, false, SS, in TransformNestedNameSpecifierLoc()
3171 TypeLoc TL = TransformTypeInObjectScope(Q.getTypeLoc(), ObjectType, in TransformNestedNameSpecifierLoc()
[all …]
H A DSemaTemplate.cpp166 QualType ObjectType = ObjectTypePtr.get(); in isTemplateName() local
169 LookupTemplateName(R, S, SS, ObjectType, EnteringContext, in isTemplateName()
248 QualType ObjectType, in LookupTemplateName() argument
255 if (!ObjectType.isNull()) { in LookupTemplateName()
259 LookupCtx = computeDeclContext(ObjectType); in LookupTemplateName()
260 isDependent = ObjectType->isDependentType(); in LookupTemplateName()
261 assert((isDependent || !ObjectType->isIncompleteType() || in LookupTemplateName()
262 ObjectType->castAs<TagType>()->isBeingDefined()) && in LookupTemplateName()
266 if (ObjectType->isObjCObjectOrInterfaceType()) { in LookupTemplateName()
289 if (!ObjectType.isNull() && Found.empty()) { in LookupTemplateName()
[all …]
H A DSemaExprMember.cpp601 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0); in LookupMemberExprInRecord() local
604 SemaRef.LookupTemplateName(R, nullptr, SS, ObjectType, false, MOUS); in LookupMemberExprInRecord()
963 ParsedType ObjectType; in BuildMemberReferenceExpr() local
966 OpLoc, tok::arrow, ObjectType, in BuildMemberReferenceExpr()
/minix3/minix/drivers/power/acpi/namespace/
H A Dnsobject.c83 ACPI_OBJECT_TYPE ObjectType = ACPI_TYPE_ANY; in AcpiNsAttachObject() local
134 ObjectType = ACPI_TYPE_ANY; in AcpiNsAttachObject()
149 ObjectType = ((ACPI_NAMESPACE_NODE *) Object)->Type; in AcpiNsAttachObject()
162 ObjectType = Type; in AcpiNsAttachObject()
198 Node->Type = (UINT8) ObjectType; in AcpiNsAttachObject()
H A Dnsprepkg.c218 Package->RetInfo3.ObjectType[i], i); in AcpiNsCheckPackage()
508 Package->RetInfo2.ObjectType[j], j); in AcpiNsCheckPackageList()
/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseExprCXX.cpp80 void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, in CheckForTemplateAndDigraph() argument
95 TemplateName, ObjectType, EnteringContext, in CheckForTemplateAndDigraph()
187 ParsedType ObjectType, in ParseOptionalCXXScopeSpecifier() argument
283 ObjectType = ParsedType(); in ParseOptionalCXXScopeSpecifier()
308 if (!HasScopeSpecifier && !ObjectType) in ParseOptionalCXXScopeSpecifier()
324 if (ParseUnqualifiedIdOperator(SS, EnteringContext, ObjectType, in ParseOptionalCXXScopeSpecifier()
357 ObjectType, EnteringContext, in ParseOptionalCXXScopeSpecifier()
433 Next.getLocation(), ObjectType, in ParseOptionalCXXScopeSpecifier()
460 getCurScope(), SS, Tok.getLocation(), II, ObjectType)) { in ParseOptionalCXXScopeSpecifier()
497 ObjectType, EnteringContext, SS, in ParseOptionalCXXScopeSpecifier()
[all …]
H A DParseExpr.cpp1478 ParsedType ObjectType; in ParsePostfixExpressionSuffix() local
1493 OpLoc, OpKind, ObjectType, in ParsePostfixExpressionSuffix()
1498 ParseOptionalCXXScopeSpecifier(SS, ObjectType, in ParsePostfixExpressionSuffix()
1502 ObjectType = ParsedType(); in ParsePostfixExpressionSuffix()
1516 ObjectType); in ParsePostfixExpressionSuffix()
1545 ObjectType, TemplateKWLoc, Name)) { in ParsePostfixExpressionSuffix()
/minix3/minix/drivers/power/acpi/hardware/
H A Dhwpci.c375 ACPI_OBJECT_TYPE ObjectType; in AcpiHwGetPciDeviceInfo() local
382 Status = AcpiGetType (PciDevice, &ObjectType); in AcpiHwGetPciDeviceInfo()
388 if (ObjectType != ACPI_TYPE_DEVICE) in AcpiHwGetPciDeviceInfo()
/minix3/minix/drivers/power/acpi/utilities/
H A Dutcopy.c63 UINT8 ObjectType,
91 UINT8 ObjectType,
263 UINT8 ObjectType, in AcpiUtCopyIelementToEelement() argument
282 switch (ObjectType) in AcpiUtCopyIelementToEelement()
871 UINT8 ObjectType, in AcpiUtCopyIelementToIelement() argument
889 switch (ObjectType) in AcpiUtCopyIelementToIelement()
H A Dutobject.c66 UINT8 ObjectType,
640 UINT8 ObjectType, in AcpiUtGetElementLength() argument
650 switch (ObjectType) in AcpiUtGetElementLength()
/minix3/minix/drivers/power/acpi/include/
H A Daclocal.h387 UINT8 ObjectType[4]; member
398 UINT8 ObjectType[2]; member
823 UINT8 ObjectType; /* Corresponding internal object type */ member
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DExprEngineCXX.cpp299 void ExprEngine::VisitCXXDestructor(QualType ObjectType, in VisitCXXDestructor() argument
314 DestVal = makeZeroElementRegion(State, DestVal, ObjectType); in VisitCXXDestructor()
317 const CXXRecordDecl *RecordDecl = ObjectType->getAsCXXRecordDecl(); in VisitCXXDestructor()
/minix3/crypto/external/bsd/netpgp/dist/bindings/python/
H A Dnetpgppython.py43 _object = types.ObjectType
/minix3/external/bsd/llvm/dist/clang/include/clang/Parse/
H A DParser.h1419 ParsedType ObjectType,
1456 ParsedType ObjectType);
2322 ParsedType ObjectType,
2326 ParsedType ObjectType,
2389 ParsedType ObjectType,
/minix3/external/bsd/llvm/dist/clang/include/clang/Sema/
H A DSema.h1430 ParsedType ObjectType = ParsedType(),
2285 QualType ObjectType,
2292 CXXRecordDecl *ActingContext, QualType ObjectType,
2301 QualType ObjectType,
3035 QualType ObjectType=QualType());
4303 ParsedType ObjectType,
4306 ParsedType getDestructorType(const DeclSpec& DS, ParsedType ObjectType);
4554 ParsedType &ObjectType,
4641 ParsedType ObjectType);
4647 QualType ObjectType,
[all …]

12