Home
last modified time | relevance | path

Searched refs:explicit (Results 1 – 25 of 4636) sorted by relevance

12345678910>>...186

/external/ImageMagick/Magick++/lib/Magick++/
DException.h67 explicit Error(const std::string& what_);
68 explicit Error(const std::string& what_,Exception *nested_);
75 explicit ErrorBlob(const std::string& what_);
76 explicit ErrorBlob(const std::string& what_,Exception *nested_);
83 explicit ErrorCache(const std::string& what_);
84 explicit ErrorCache(const std::string& what_,Exception *nested_);
91 explicit ErrorCoder(const std::string& what_);
92 explicit ErrorCoder(const std::string& what_,Exception *nested_);
99 explicit ErrorConfigure(const std::string& what_);
100 explicit ErrorConfigure(const std::string& what_,Exception *nested_);
[all …]
/external/clang/lib/Headers/
Dmodule.modulemap25 explicit module altivec {
30 explicit module arm {
33 explicit module acle {
38 explicit module neon {
45 explicit module intel {
65 explicit module mm_malloc {
70 explicit module cpuid {
74 explicit module mmx {
78 explicit module sse {
85 explicit module sse2 {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
DSymbolRecord.h32 explicit SymbolRecord(SymbolRecordKind Kind) : Kind(Kind) {} in SymbolRecord()
46 explicit ProcSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in ProcSym()
72 explicit Thunk32Sym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in Thunk32Sym()
92 explicit TrampolineSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in TrampolineSym()
109 explicit SectionSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in SectionSym()
126 explicit CoffGroupSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in CoffGroupSym()
141 explicit ScopeEndSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in ScopeEndSym()
150 explicit CallerSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in CallerSym()
340 explicit InlineSiteSym(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in InlineSiteSym()
361 explicit PublicSym32(SymbolRecordKind Kind) : SymbolRecord(Kind) {} in PublicSym32()
[all …]
DTypeRecord.h56 explicit MemberAttributes(MemberAccess Access) in MemberAttributes()
122 explicit TypeRecord(TypeRecordKind Kind) : Kind(Kind) {} in TypeRecord()
134 explicit ModifierRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in ModifierRecord()
150 explicit ProcedureRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in ProcedureRecord()
175 explicit MemberFunctionRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in MemberFunctionRecord()
210 explicit LabelRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in LabelRecord()
221 explicit MemberFuncIdRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in MemberFuncIdRecord()
240 explicit ArgListRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in ArgListRecord()
254 explicit StringListRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in StringListRecord()
279 explicit PointerRecord(TypeRecordKind Kind) : TypeRecord(Kind) {} in PointerRecord()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1TaggedObject.java16 boolean explicit = true; field in ASN1TaggedObject
21 boolean explicit) in getInstance() argument
23 if (explicit) in getInstance()
64 boolean explicit, in ASN1TaggedObject() argument
70 this.explicit = true; in ASN1TaggedObject()
74 this.explicit = explicit; in ASN1TaggedObject()
79 if (this.explicit) in ASN1TaggedObject()
106 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit) in asn1Equals()
167 return explicit; in isExplicit()
227 return new DERTaggedObject(explicit, tagNo, obj); in toDERObject()
[all …]
/external/tensorflow/tensorflow/core/lib/bfloat16/
Dbfloat16.h65 B16_DEVICE_FUNC explicit bfloat16(const float v) { in bfloat16()
69 B16_DEVICE_FUNC explicit bfloat16(const double val) in bfloat16()
73 B16_DEVICE_FUNC explicit bfloat16(const complex64& val) in bfloat16()
76 B16_DEVICE_FUNC explicit bfloat16(const complex128& val) in bfloat16()
79 B16_DEVICE_FUNC explicit bfloat16(const unsigned short val) in bfloat16()
82 B16_DEVICE_FUNC explicit bfloat16(const unsigned int val) in bfloat16()
85 B16_DEVICE_FUNC explicit bfloat16(const int val) in bfloat16()
88 B16_DEVICE_FUNC explicit bfloat16(const long val) in bfloat16()
91 B16_DEVICE_FUNC explicit bfloat16(const long long val) in bfloat16()
95 B16_DEVICE_FUNC explicit bfloat16(const T& val) in bfloat16()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
DASN1TaggedObject.java19 boolean explicit = true; field in ASN1TaggedObject
24 boolean explicit) in getInstance() argument
26 if (explicit) in getInstance()
67 boolean explicit, in ASN1TaggedObject() argument
73 this.explicit = true; in ASN1TaggedObject()
77 this.explicit = explicit; in ASN1TaggedObject()
82 if (this.explicit) in ASN1TaggedObject()
109 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit) in asn1Equals()
171 return explicit; in isExplicit()
232 return new DERTaggedObject(explicit, tagNo, obj); in toDERObject()
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
DMergeTagTest.java51 Map<Object, Object> explicit = (Map<Object, Object>) list.get(4); in testMerge() local
52 assertEquals(4, explicit.size()); in testMerge()
53 assertEquals(new Integer(1), explicit.get("x")); in testMerge()
54 assertEquals(new Integer(2), explicit.get("y")); in testMerge()
55 assertEquals(new Integer(10), explicit.get("r")); in testMerge()
56 assertEquals("center/big", explicit.get("label")); in testMerge()
59 assertEquals(explicit, merged1); in testMerge()
60 assertNotSame(explicit, merged1); in testMerge()
63 assertEquals(explicit, merged2); in testMerge()
64 assertNotSame(explicit, merged2); in testMerge()
[all …]
/external/libcxx/include/
Dstdexcept35 explicit xxx_error(const string& what_arg);
36 explicit xxx_error(const char* what_arg);
64 explicit __libcpp_refstring(const char* __msg);
83 explicit logic_error(const string&);
84 explicit logic_error(const char*);
100 explicit runtime_error(const string&);
101 explicit runtime_error(const char*);
115 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const string& __s) : logic_error(__s) {}
116 _LIBCPP_INLINE_VISIBILITY explicit domain_error(const char* __s) : logic_error(__s) {}
125 _LIBCPP_INLINE_VISIBILITY explicit invalid_argument(const string& __s) : logic_error(__s) {}
[all …]
/external/clang/test/ARCMT/Inputs/
Dmodule.map29 explicit module b { header "macros_top_b.h" }
30 explicit module c { header "macros_top_c.h" }
39 explicit module undef {
50 explicit module sub {
58 explicit module sub {
77 explicit module Decl { header "decl.h" }
78 explicit module Decl2 { header "decl2.h" }
79 explicit module Def { header "def.h" }
84 explicit module Explicit { header "redecl-merge-top-explicit.h" }
100 explicit module prefix {
[all …]
/external/clang/test/Modules/Inputs/
Dmodule.map29 explicit module b { header "macros_top_b.h" }
30 explicit module c { header "macros_top_c.h" }
39 explicit module undef {
54 explicit module sub {
62 explicit module sub {
82 explicit module Decl { header "decl.h" }
83 explicit module Decl2 { header "decl2.h" }
84 explicit module Def { header "def.h" }
89 explicit module Explicit { header "redecl-merge-top-explicit.h" }
105 explicit module prefix {
[all …]
/external/clang/test/FixIt/
Dformat-darwin.m37 …lues of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
38 …ues of type 'NSUInteger' should not be used as format arguments; add an explicit cast to 'unsigned…
39 …{values of type 'SInt32' should not be used as format arguments; add an explicit cast to 'int' ins…
40 …{values of type 'UInt32' should not be used as format arguments; add an explicit cast to 'unsigned…
54 …erlying type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
79 …lues of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
80 …lues of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
81 …lues of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
82 …lues of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
83 …lues of type 'NSInteger' should not be used as format arguments; add an explicit cast to 'long' in…
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DDebugInfo.h84 explicit DIDescriptor() : DbgNode(0) {} in DIDescriptor()
85 explicit DIDescriptor(const MDNode *N) : DbgNode(N) {} in DIDescriptor()
86 explicit DIDescriptor(const DIFile F);
87 explicit DIDescriptor(const DISubprogram F);
88 explicit DIDescriptor(const DILexicalBlockFile F);
89 explicit DIDescriptor(const DILexicalBlock F);
90 explicit DIDescriptor(const DIVariable F);
91 explicit DIDescriptor(const DIType F);
136 explicit DISubrange(const MDNode *N = 0) : DIDescriptor(N) {} in DIDescriptor()
145 explicit DIArray(const MDNode *N = 0)
[all …]
/external/sfntly/cpp/src/sfntly/port/
Dexception_type.h33 explicit Exception(const char* message) throw() { SetMessage(message); } in Exception()
51 explicit IndexOutOfBoundException(const char* message) throw() in IndexOutOfBoundException()
68 explicit IOException(const char* message) throw() : Exception(message) {} in IOException()
75 explicit ArithmeticException(const char* message) throw() in ArithmeticException()
84 explicit UnsupportedOperationException(const char* message) throw() in UnsupportedOperationException()
92 explicit RuntimeException(const char* message) throw() in RuntimeException()
100 explicit NoSuchElementException(const char* message) throw() in NoSuchElementException()
108 explicit IllegalArgumentException(const char* message) throw() in IllegalArgumentException()
116 explicit IllegalStateException(const char* message) throw() in IllegalStateException()
/external/libtextclassifier/utils/
Dvariant.h43 explicit Variant(const int value) in Variant()
45 explicit Variant(const int64 value) in Variant()
47 explicit Variant(const float value) in Variant()
49 explicit Variant(const double value) in Variant()
51 explicit Variant(const StringPiece value) in Variant()
53 explicit Variant(const std::string value) in Variant()
55 explicit Variant(const char* value) in Variant()
57 explicit Variant(const bool value) in Variant()
/external/v8/src/ast/
Dast-source-ranges.h65 explicit BinaryOperationSourceRanges(const SourceRange& right_range) in BinaryOperationSourceRanges()
79 explicit ContinuationSourceRanges(int32_t continuation_position) in ContinuationSourceRanges()
93 explicit BlockSourceRanges(int32_t continuation_position) in BlockSourceRanges()
99 explicit CaseClauseSourceRanges(const SourceRange& body_range) in CaseClauseSourceRanges()
113 explicit ConditionalSourceRanges(const SourceRange& then_range, in ConditionalSourceRanges()
135 explicit IfStatementSourceRanges(const SourceRange& then_range, in IfStatementSourceRanges()
162 explicit IterationStatementSourceRanges(const SourceRange& body_range) in IterationStatementSourceRanges()
182 explicit JumpStatementSourceRanges(int32_t continuation_position) in JumpStatementSourceRanges()
209 explicit SuspendSourceRanges(int32_t continuation_position) in SuspendSourceRanges()
215 explicit SwitchStatementSourceRanges(int32_t continuation_position) in SwitchStatementSourceRanges()
[all …]
/external/googletest/googletest/include/gtest/
Dgtest-matchers.h77 explicit MatchResultListener(::std::ostream* os) : stream_(os) {} in MatchResultListener()
180 explicit MatcherInterfaceAdapter(const MatcherInterface<T>* impl) in MatcherInterfaceAdapter()
240 explicit StreamMatchResultListener(::std::ostream* os) in StreamMatchResultListener()
290 explicit MatcherBase(const MatcherInterface<const T&>* impl) : impl_(impl) {} in MatcherBase()
293 explicit MatcherBase(
322 explicit Matcher() {} // NOLINT in Matcher()
325 explicit Matcher(const MatcherInterface<const T&>* impl) in Matcher()
329 explicit Matcher(const MatcherInterface<U>* impl,
348 explicit Matcher(const MatcherInterface<const std::string&>* impl) in Matcher()
371 explicit Matcher(const MatcherInterface<const std::string&>* impl) in Matcher()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dqueue_op.h68 explicit QueueOpKernel(OpKernelConstruction* context);
79 explicit QueueAccessOpKernel(OpKernelConstruction* context);
96 explicit EnqueueOp(OpKernelConstruction* context);
121 explicit EnqueueManyOp(OpKernelConstruction* context);
142 explicit DequeueOp(OpKernelConstruction* context);
167 explicit DequeueManyOp(OpKernelConstruction* context);
210 explicit DequeueUpToOp(OpKernelConstruction* context);
228 explicit QueueCloseOp(OpKernelConstruction* context);
247 explicit QueueSizeOp(OpKernelConstruction* context);
259 explicit QueueIsClosedOp(OpKernelConstruction* context);
Dtranspose_op.h26 explicit TransposeOp(OpKernelConstruction* ctx) : OpKernel(ctx) {} in TransposeOp()
38 explicit TransposeCpuOp(OpKernelConstruction* ctx) : TransposeOp(ctx) {} in TransposeCpuOp()
48 explicit MklTransposeCpuOp(OpKernelConstruction* ctx) : TransposeOp(ctx) {} in MklTransposeCpuOp()
58 explicit TransposeGpuOp(OpKernelConstruction* ctx) : TransposeOp(ctx) {} in TransposeGpuOp()
68 explicit TransposeSyclOp(OpKernelConstruction* ctx) : TransposeOp(ctx) {} in TransposeSyclOp()
79 explicit ConjugateTransposeCpuOp(OpKernelConstruction* ctx) in ConjugateTransposeCpuOp()
91 explicit MklConjugateTransposeCpuOp(OpKernelConstruction* ctx) in MklConjugateTransposeCpuOp()
103 explicit ConjugateTransposeGpuOp(OpKernelConstruction* ctx) in ConjugateTransposeGpuOp()
115 explicit ConjugateTransposeSyclOp(OpKernelConstruction* ctx) in ConjugateTransposeSyclOp()
Dcontrol_flow_ops.h29 explicit ControlTriggerOp(OpKernelConstruction* context) in ControlTriggerOp()
41 explicit SwitchOp(OpKernelConstruction* context) : OpKernel(context) {} in SwitchOp()
54 explicit MergeOp(OpKernelConstruction* context);
67 explicit EnterOp(OpKernelConstruction* context) : OpKernel(context) {} in EnterOp()
80 explicit ExitOp(OpKernelConstruction* context) : OpKernel(context) {} in ExitOp()
92 explicit NextIterationOp(OpKernelConstruction* context) : OpKernel(context) {} in NextIterationOp()
106 explicit LoopCondOp(OpKernelConstruction* context);
/external/clang/test/Modules/Inputs/DependsOnModule.framework/
Dmodule.map7 explicit module CXX {
11 explicit module NotCXX {
15 explicit module NotObjC {
19 explicit module CustomReq1 {
22 explicit module CustomReq2 {
26 explicit framework module SubFramework {
/external/v8/src/zone/
Dzone-containers.h31 explicit ZoneVector(Zone* zone) in ZoneVector()
62 explicit ZoneDeque(Zone* zone) in ZoneDeque()
75 explicit ZoneLinkedList(Zone* zone) in ZoneLinkedList()
85 explicit ZoneForwardList(Zone* zone) in ZoneForwardList()
96 explicit ZonePriorityQueue(Zone* zone) in ZonePriorityQueue()
107 explicit ZoneQueue(Zone* zone) in ZoneQueue()
117 explicit ZoneStack(Zone* zone) in ZoneStack()
127 explicit ZoneSet(Zone* zone) in ZoneSet()
138 explicit ZoneMultiset(Zone* zone) in ZoneMultiset()
150 explicit ZoneMap(Zone* zone) in ZoneMap()
[all …]
/external/skia/experimental/svg/model/
DSkSVGTypes.h25 explicit constexpr SkSVGPrimitiveTypeWrapper(T v) : fValue(v) {} in SkSVGPrimitiveTypeWrapper()
69 explicit constexpr SkSVGLength(SkScalar v, Unit u = Unit::kNumber)
98 explicit SkSVGPaint(Type t) : fType(t), fColor(SK_ColorBLACK) {} in SkSVGPaint()
99 explicit SkSVGPaint(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {} in SkSVGPaint()
100 explicit SkSVGPaint(const SkString& iri) in SkSVGPaint()
132 explicit SkSVGClip(Type t) : fType(t) {} in SkSVGClip()
133 explicit SkSVGClip(const SkString& iri) : fType(Type::kIRI), fIRI(iri) {} in SkSVGClip()
161 constexpr explicit SkSVGLineCap(Type t) : fType(t) {} in SkSVGLineCap()
185 constexpr explicit SkSVGLineJoin(Type t) : fType(t) {} in SkSVGLineJoin()
209 constexpr explicit SkSVGSpreadMethod(Type t) : fType(t) {} in SkSVGSpreadMethod()
[all …]
/external/skqp/experimental/svg/model/
DSkSVGTypes.h25 explicit constexpr SkSVGPrimitiveTypeWrapper(T v) : fValue(v) {} in SkSVGPrimitiveTypeWrapper()
69 explicit constexpr SkSVGLength(SkScalar v, Unit u = Unit::kNumber)
98 explicit SkSVGPaint(Type t) : fType(t), fColor(SK_ColorBLACK) {} in SkSVGPaint()
99 explicit SkSVGPaint(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {} in SkSVGPaint()
100 explicit SkSVGPaint(const SkString& iri) in SkSVGPaint()
132 explicit SkSVGClip(Type t) : fType(t) {} in SkSVGClip()
133 explicit SkSVGClip(const SkString& iri) : fType(Type::kIRI), fIRI(iri) {} in SkSVGClip()
161 constexpr explicit SkSVGLineCap(Type t) : fType(t) {} in SkSVGLineCap()
185 constexpr explicit SkSVGLineJoin(Type t) : fType(t) {} in SkSVGLineJoin()
209 constexpr explicit SkSVGSpreadMethod(Type t) : fType(t) {} in SkSVGSpreadMethod()
[all …]
/external/snakeyaml/src/test/resources/pyyaml/
Dspec-10-11.data2 ? explicit key1 : explicit value,
3 ? explicit key2 : , # Explicit empty
4 ? explicit key3, # Implicit empty
5 simple key1 : explicit value,

12345678910>>...186