Searched defs:Void (Results 1 - 21 of 21) sorted by relevance

/external/clang/test/Sema/
H A Dvoid_arg.c4 typedef void Void; typedef
13 X = sizeof(int (Void a)); // expected-error {{argument may not have 'void' type}}
14 X = sizeof(int (int, Void)); // expected-error {{must be the first and only parameter}}
15 X = sizeof(int (Void, ...)); // expected-error {{must be the first and only parameter}}
19 X = sizeof(int (Void));
23 void bar(Void) {
/external/junit-params/src/main/java/junitparams/
H A DParameters.java35 Class<?> source() default Void.class;
/external/llvm/include/llvm/IR/
H A DIntrinsics.h91 Void, VarArg, MMX, Token, Metadata, Half, Float, Double, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DIntrinsics.h100 Void, VarArg, MMX, Token, Metadata, Half, Float, Double, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h22 Void = 0x0003, // void member in class:llvm::codeview::SimpleTypeKind
119 static TypeIndex Void() { return TypeIndex(SimpleTypeKind::Void); } function in class:llvm::codeview::SimpleTypeMode::TypeIndex
121 return TypeIndex(SimpleTypeKind::Void, SimpleTypeMode::NearPointer32);
124 return TypeIndex(SimpleTypeKind::Void, SimpleTypeMode::NearPointer64);
/external/llvm/lib/Target/AMDGPU/
H A DSIAnnotateControlFlow.cpp50 Type *Void; member in class:__anon12995::SIAnnotateControlFlow
133 Void = Type::getVoidTy(Context);
162 EndCfIntrinsic, Void, Int64, (Type *)nullptr);
/external/swiftshader/third_party/subzero/src/
H A DIceASanInstrumentation.cpp437 constexpr Variable *Void = nullptr; local
439 auto *Call = InstCall::create(Context.getNode()->getCfg(), NumArgs, Void,
475 constexpr Variable *Void = nullptr; local
477 auto *Call = InstCall::create(Func, NumArgs, Void, ShadowMemInit, NoTailCall);
H A DIceCfg.cpp205 constexpr Variable *Void = nullptr; local
208 InstCall::create(this, NumArgs, Void, ProfileSummarySym, HasTailCall);
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h236 Void = 1, member in class:llvm::pdb::PDB_Checksum::PDB_Machine::PDB_BuiltinType
/external/spirv-llvm/lib/SPIRV/
H A DSPIRVInternal.h281 const static char Void[] = "void"; member in namespace:SPIRV::kSPIRVImageSampledTypeName
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp136 bool Float, Signed, Immediate, Void, Poly, Constant, Pointer; member in class:__anon3419::Type
145 : Float(false), Signed(false), Immediate(false), Void(true), Poly(false),
151 Void(false), Poly(false), Constant(false), Pointer(false),
184 bool isVoid() const { return Void; }
555 if (Void)
667 T.Void = false;
733 Void = false;
799 Void = true;
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml23 | Void Constructor in type:TypeKind/t
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.ml22 | Void Constructor in type:TypeKind/t
1237 | TypeKind.Void -> "void"
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderBuiltinPrecisionTests.cpp118 * maximum, Void us used as the type for unused arguments.
124 struct Void struct in namespace:vkt::shaderexecutor
126 typedef Void Element;
133 explicit Void (const T&) {} function in struct:vkt::shaderexecutor::Void
134 Void (void) {} function in struct:vkt::shaderexecutor::Void
138 Void& operator[] (int) { return *this; }
139 const Void& operator[] (int) const { return *this; }
142 ostream& operator<< (ostream& os, Void) { return os << "()"; }
144 //! Returns true for all other types except Void
146 template <> bool isTypeValid<Void> (voi
475 doUnion(const Void&, const Void&) argument
476 doContains(const Void&, Void) argument
480 doPrintValue(const FloatFormat&, const Void&, ostream& os) argument
485 doPrintIVal(const FloatFormat&, const Void&, ostream& os) argument
1355 call(const EvalContext& ctx, const typename F::IArg0& arg0 = Void(), const typename F::IArg1& arg1 = Void(), const typename F::IArg2& arg2 = Void(), const typename F::IArg3& arg3 = Void()) argument
[all...]
/external/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp139 * maximum, Void us used as the type for unused arguments.
145 struct Void struct in namespace:deqp::gls::BuiltinPrecisionTests
147 typedef Void Element;
154 explicit Void (const T&) {} function in struct:deqp::gls::BuiltinPrecisionTests::Void
155 Void (void) {} function in struct:deqp::gls::BuiltinPrecisionTests::Void
159 Void& operator[] (int) { return *this; }
160 const Void& operator[] (int) const { return *this; }
163 ostream& operator<< (ostream& os, Void) { return os << "()"; }
165 //! Returns true for all other types except Void
167 template <> bool isTypeValid<Void> (voi
496 doUnion(const Void&, const Void&) argument
497 doContains(const Void&, Void) argument
501 doPrintValue(const FloatFormat&, const Void&, ostream& os) argument
506 doPrintIVal(const FloatFormat&, const Void&, ostream& os) argument
1376 call(const EvalContext& ctx, const typename F::IArg0& arg0 = Void(), const typename F::IArg1& arg1 = Void(), const typename F::IArg2& arg2 = Void(), const typename F::IArg3& arg3 = Void()) argument
[all...]
/external/swiftshader/src/Reactor/
H A DReactor.hpp56 class Void class in namespace:sw
2246 class Function<Return()> : public Function<Return(Void)>
2722 if(type != Void::getType())
/external/v8/src/parsing/
H A Dparser-base.h777 static void Void() {} function in class:v8::internal::ParseFunctionFlags::ParserBase
809 Expect(Token::IDENTIFIER, CHECK_OK_CUSTOM(Void));
3452 ExpectContextualKeyword(property_name, CHECK_OK_CUSTOM(Void));
3554 ExpressionT pattern = ParsePrimaryExpression(CHECK_OK_CUSTOM(Void));
3555 ValidateBindingPattern(CHECK_OK_CUSTOM(Void));
3559 ValidateFormalParameterInitializer(CHECK_OK_CUSTOM(Void));
3566 initializer = ParseAssignmentExpression(true, CHECK_OK_CUSTOM(Void));
3567 impl()->RewriteNonPattern(CHECK_OK_CUSTOM(Void));
3568 ValidateFormalParameterInitializer(CHECK_OK_CUSTOM(Void));
3604 ParseFormalParameter(parameters, CHECK_OK_CUSTOM(Void));
[all...]
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 1619 milliseconds