Searched refs:Dependent (Results 1 - 25 of 60) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/docs/
H A DMESA_window_pos.spec118 New Implementation Dependent State
H A DMESA_resize_buffers.spec75 New Implementation Dependent State
H A DMESA_shader_debug.spec250 New Implementation Dependent State
H A DMESA_swap_control.spec119 New Implementation Dependent State
/external/mesa3d/docs/
H A DMESA_window_pos.spec118 New Implementation Dependent State
H A DMESA_resize_buffers.spec75 New Implementation Dependent State
H A DMESA_shader_debug.spec250 New Implementation Dependent State
H A DMESA_swap_control.spec119 New Implementation Dependent State
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterfaceDocument.cpp26 const WrapperTypeInfo V8TestInterfaceDocument::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceDocument::domTemplate, V8TestInterfaceDocument::refObject, V8TestInterfaceDocument::derefObject, V8TestInterfaceDocument::createPersistentHandle, 0, V8TestInterfaceDocument::toEventTarget, 0, V8TestInterfaceDocument::installConditionallyEnabledMethods, V8TestInterfaceDocument::installConditionallyEnabledProperties, &V8Document::wrapperTypeInfo, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::NodeClassId, WrapperTypeInfo::Dependent, WrapperTypeInfo::WillBeGarbageCollectedObject };
H A DV8SVGTestInterface.cpp25 const WrapperTypeInfo V8SVGTestInterface::wrapperTypeInfo = { gin::kEmbedderBlink, V8SVGTestInterface::domTemplate, V8SVGTestInterface::refObject, V8SVGTestInterface::derefObject, V8SVGTestInterface::createPersistentHandle, 0, 0, 0, V8SVGTestInterface::installConditionallyEnabledMethods, V8SVGTestInterface::installConditionallyEnabledProperties, 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::Dependent, WrapperTypeInfo::RefCountedObject };
H A DV8TestInterfaceNamedConstructor.cpp24 const WrapperTypeInfo V8TestInterfaceNamedConstructor::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceNamedConstructor::domTemplate, V8TestInterfaceNamedConstructor::refObject, V8TestInterfaceNamedConstructor::derefObject, V8TestInterfaceNamedConstructor::createPersistentHandle, V8TestInterfaceNamedConstructor::toActiveDOMObject, 0, 0, V8TestInterfaceNamedConstructor::installConditionallyEnabledMethods, V8TestInterfaceNamedConstructor::installConditionallyEnabledProperties, 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::Dependent, WrapperTypeInfo::RefCountedObject };
62 const WrapperTypeInfo V8TestInterfaceNamedConstructorConstructor::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterfaceNamedConstructorConstructor::domTemplate, V8TestInterfaceNamedConstructor::refObject, V8TestInterfaceNamedConstructor::derefObject, V8TestInterfaceNamedConstructor::createPersistentHandle, V8TestInterfaceNamedConstructor::toActiveDOMObject, 0, 0, V8TestInterfaceNamedConstructor::installConditionallyEnabledMethods, V8TestInterfaceNamedConstructor::installConditionallyEnabledProperties, 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::Dependent, WrapperTypeInfo::RefCountedObject };
H A DV8TestInterface3.cpp24 const WrapperTypeInfo V8TestInterface3::wrapperTypeInfo = { gin::kEmbedderBlink, V8TestInterface3::domTemplate, V8TestInterface3::refObject, V8TestInterface3::derefObject, V8TestInterface3::createPersistentHandle, 0, 0, V8TestInterface3::visitDOMWrapper, V8TestInterface3::installConditionallyEnabledMethods, V8TestInterface3::installConditionallyEnabledProperties, 0, WrapperTypeInfo::WrapperTypeObjectPrototype, WrapperTypeInfo::ObjectClassId, WrapperTypeInfo::Dependent, WrapperTypeInfo::RefCountedObject };
/external/clang/lib/AST/
H A DDeclBase.cpp1572 bool Dependent = isDependentContext(); local
1573 if (Dependent)
1578 C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent);
1590 void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { argument
1595 if (Dependent)
1601 Dependent = Next.getInt();
H A DExprCXX.cpp373 bool Dependent = false; local
377 Dependent,
381 if (Dependent) {
438 bool Dependent = true; local
443 Dependent,
1207 bool Dependent = true; local
1211 Dependent,
1330 // Dependent
H A DTypeLoc.cpp286 case BuiltinType::Dependent:
H A DItaniumMangle.cpp656 DependentTemplateName *Dependent = Template.getAsDependentTemplateName();
657 assert(Dependent && "Not a dependent template name?");
658 if (const IdentifierInfo *Id = Dependent->getIdentifier())
661 mangleOperatorName(Dependent->getOperator(), UnknownArity);
1539 DependentTemplateName *Dependent = Template.getAsDependentTemplateName(); local
1540 assert(Dependent && "Unknown template name kind?");
1541 manglePrefix(Dependent->getQualifier());
1599 const DependentTemplateName *Dependent = TN.getAsDependentTemplateName(); local
1600 assert(Dependent->isIdentifier());
1604 mangleUnresolvedPrefix(Dependent
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h597 bool &Dependent, bool &InstantiationDependent,
632 bool &Dependent, bool &InstantiationDependent,
H A DDeclContextInternals.h245 static void DestroyAll(StoredDeclsMap *Map, bool Dependent);
H A DType.h1177 /// Dependent - Whether this type is a dependent type (C++ [temp.dep.type]).
1178 unsigned Dependent : 1;
1363 Type(TypeClass tc, QualType canon, bool Dependent, argument
1369 TypeBits.Dependent = Dependent;
1370 TypeBits.InstantiationDependent = Dependent || InstantiationDependent;
1381 TypeBits.Dependent = D;
1612 bool isDependentType() const { return TypeBits.Dependent; }
1843 : Type(Builtin, QualType(), /*Dependent=*/(K == Dependent),
3950 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, QualType Canonical, bool Dependent, bool InstantiationDependent, bool VariablyModified, bool ContainsUnexpandedParameterPack) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWrapperTypeInfo.h82 Dependent, enumerator in enum:blink::WrapperTypeInfo::Lifetime
/external/clang/lib/Serialization/
H A DASTCommon.cpp57 case BuiltinType::Dependent: ID = PREDEF_TYPE_DEPENDENT_ID; break;
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp146 namespace Dependent { namespace
/external/chromium_org/third_party/mesa/src/docs/OLD/
H A DMESA_program_debug.spec294 New Implementation Dependent State
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp348 const SymbolRef Dependent) {
357 dependencies->push_back(Dependent);
347 addSymbolDependency(const SymbolRef Primary, const SymbolRef Dependent) argument
/external/mesa3d/docs/OLD/
H A DMESA_program_debug.spec294 New Implementation Dependent State

Completed in 1471 milliseconds

123