Home
last modified time | relevance | path

Searched full:bases (Results 1 – 25 of 993) sorted by relevance

12345678910>>...40

/external/clang/test/SemaTemplate/
Dms-lookup-template-base-classes.cpp16 …ning 2{{use of identifier 'f' found via unqualified lookup into dependent bases of class templates… in z()
17 …ning 2{{use of identifier 'g' found via unqualified lookup into dependent bases of class templates… in z()
67 …g {{use of undeclared identifier 'var'; unqualified lookup into dependent bases of class template … in f()
91 …e of identifier 'static_func' found via unqualified lookup into dependent bases of class templates… in z2()
92 …ng {{use of identifier 'func' found via unqualified lookup into dependent bases of class templates… in z2()
113 …ning {{use of identifier 'f1' found via unqualified lookup into dependent bases of class templates…
114 …ning {{use of identifier 'f2' found via unqualified lookup into dependent bases of class templates…
139 …rning {{use of identifier 'g' found via unqualified lookup into dependent bases of class templates… in foo()
163 …{use of undeclared identifier 'm_hWnd'; unqualified lookup into dependent bases of class template … in f()
188 …{use of identifier 'base_fun' found via unqualified lookup into dependent bases of class templates… in operator =()
[all …]
/external/private-join-and-compute/private_join_and_compute/crypto/
Dsimultaneous_fixed_bases_exp.h16 // Implementation of simultaneous fixed bases exponentation.
18 // As input, we receive a set of fixed bases b1, ..., bn. On each input of
24 // For any set of fixed bases, Straus's algorithm performs a precomputation
53 // exponentiations with respect to b1, ..., bn specified in bases.
55 // The bases vector represents the bases b1, ..., bn, which will be used for
61 // bases to 0).
65 // O(2^num_simultaneous * bases / num_simultaneous) elliptic curve additions
67 // only O((bases * max_bit_length) / num_simultaneous) elliptic curve
70 // num_simultaneous may be independent of the number of bases. However, the
71 // total precomputation is capped at 2^{number of bases}.
[all …]
Dsimultaneous_fixed_bases_exp_test.cc69 std::vector<ZnElement> bases; in TEST_F() local
70 bases.push_back(base1); in TEST_F()
71 bases.push_back(base2); in TEST_F()
75 auto exp, ZnExp::Create(bases, ctx_.One(), 2, std::move(zn_context))); in TEST_F()
96 std::vector<ZnElement> bases; in TEST_F() local
97 bases.push_back(base1); in TEST_F()
101 auto exp, ZnExp::Create(bases, ctx_.One(), 1, std::move(zn_context))); in TEST_F()
119 std::vector<ZnElement> bases; in TEST_F() local
120 bases.push_back(base1); in TEST_F()
123 EXPECT_THAT(ZnExp::Create(bases, ctx_.One(), 2, std::move(zn_context)), in TEST_F()
[all …]
Dsimultaneous_fixed_bases_exp.cc97 const std::vector<Element>& bases, const Element& zero, in Create() argument
104 if (num_simultaneous > bases.size()) { in Create()
107 ", can be at most the number of bases", bases.size(), ".")); in Create()
109 size_t num_batches = (bases.size() + num_simultaneous - 1) / num_simultaneous; in Create()
115 bases, zero, *context, num_simultaneous, num_batches)); in Create()
117 new SimultaneousFixedBasesExp(bases.size(), num_simultaneous, num_batches, in Create()
125 const std::vector<Element>& bases, const Element& zero, in Precompute() argument
134 std::min(bases.size() - start, num_simultaneous); in Precompute()
145 internal::Clone(bases[start + highest_one_bit])); in Precompute()
150 internal::Mul(*(table[i][prev]), bases[start + highest_one_bit], in Precompute()
[all …]
/external/python/cpython3/Lib/test/
Dtest_subclassinit.py117 def __new__(cls, name, bases, ns): argument
118 ret = super().__new__(cls, name, bases, ns)
181 def __new__(cls, name, bases, ns): argument
182 self = super().__new__(cls, name, bases, ns)
231 def __init__(self, name, bases, namespace, otherarg): argument
232 super().__init__(name, bases, namespace)
239 def __new__(cls, name, bases, namespace, otherarg): argument
240 return super().__new__(cls, name, bases, namespace)
242 def __init__(self, name, bases, namespace, otherarg): argument
243 super().__init__(name, bases, namespace)
[all …]
Dtest_metaclass.py21 Use *args notation for the bases.
25 >>> bases = (A, B)
26 >>> class C(*bases): pass
27 >>> C.__bases__ == bases
67 ... def __new__(cls, name, bases, namespace, **kwds):
69 ... return type.__new__(cls, name, bases, namespace)
107 >>> bases = (object,)
109 >>> class C(*bases, **kwds): pass
119 >>> class C(B, metaclass=M, *bases, **kwds): pass
157 ... def __prepare__(name, bases):
[all …]
Dtest_genericclass.py24 def __mro_entries__(self, bases): argument
25 tested.append(bases)
44 def __mro_entries__(self, bases): argument
45 tested.append(bases)
64 def __mro_entries__(self, bases): argument
65 tested.append(bases)
78 def __mro_entries__(self, bases): argument
79 tested.append(bases)
91 def __mro_entries__(self, bases, something, other): argument
119 def __new__(mcls, name, bases, ns): argument
[all …]
Dtest_super.py151 def __new__(cls, name, bases, namespace): argument
153 self = super().__new__(cls, name, bases, namespace)
169 def __new__(cls, name, bases, namespace): argument
204 def __new__(cls, name, bases, namespace): argument
207 return super().__new__(cls, name, bases, namespace)
237 def __new__(cls, name, bases, namespace): argument
239 return super().__new__(cls, name, bases, namespace)
259 def __new__(cls, name, bases, namespace, cell): argument
261 return super().__new__(cls, name, bases, namespace)
273 def __new__(cls, name, bases, namespace): argument
[all …]
/external/python/cpython3/Lib/
Dtypes.py67 def new_class(name, bases=(), kwds=None, exec_body=None): argument
69 resolved_bases = resolve_bases(bases)
73 if resolved_bases is not bases:
74 ns['__orig_bases__'] = bases
77 def resolve_bases(bases): argument
79 new_bases = list(bases)
82 for i, base in enumerate(bases):
87 new_base = base.__mro_entries__(bases)
95 return bases
98 def prepare_class(name, bases=(), kwds=None): argument
[all …]
/external/google-cloud-java/java-dialogflow/proto-google-cloud-dialogflow-v2/src/main/java/com/google/cloud/dialogflow/v2/
DListKnowledgeBasesRequestOrBuilder.java30 * Required. The project to list of knowledge bases for.
45 * Required. The project to list of knowledge bases for.
100 * The filter expression used to filter knowledge bases returned by the list
107 * * 'language_code=en-us' matches knowledge bases with en-us language code.
108 * * 'display_name:articles' matches knowledge bases whose display name
110 * * 'display_name:"Best Articles"' matches knowledge bases whose display
113 * bases whose display name contains "articles" and whose language code is
130 * The filter expression used to filter knowledge bases returned by the list
137 * * 'language_code=en-us' matches knowledge bases with en-us language code.
138 * * 'display_name:articles' matches knowledge bases whose display name
[all …]
DListKnowledgeBasesRequest.java81 * Required. The project to list of knowledge bases for.
107 * Required. The project to list of knowledge bases for.
208 * The filter expression used to filter knowledge bases returned by the list
215 * * 'language_code=en-us' matches knowledge bases with en-us language code.
216 * * 'display_name:articles' matches knowledge bases whose display name
218 * * 'display_name:"Best Articles"' matches knowledge bases whose display
221 * bases whose display name contains "articles" and whose language code is
249 * The filter expression used to filter knowledge bases returned by the list
256 * * 'language_code=en-us' matches knowledge bases with en-us language code.
257 * * 'display_name:articles' matches knowledge bases whose display name
[all …]
/external/google-cloud-java/java-dialogflow/proto-google-cloud-dialogflow-v2beta1/src/main/java/com/google/cloud/dialogflow/v2beta1/
DListKnowledgeBasesRequestOrBuilder.java30 * Required. The project to list of knowledge bases for.
45 * Required. The project to list of knowledge bases for.
100 * The filter expression used to filter knowledge bases returned by the list
107 * * 'language_code=en-us' matches knowledge bases with en-us language code.
108 * * 'display_name:articles' matches knowledge bases whose display name
110 * * 'display_name:"Best Articles"' matches knowledge bases whose display
113 * bases whose display name contains "articles" and whose language code is
130 * The filter expression used to filter knowledge bases returned by the list
137 * * 'language_code=en-us' matches knowledge bases with en-us language code.
138 * * 'display_name:articles' matches knowledge bases whose display name
[all …]
DListKnowledgeBasesRequest.java81 * Required. The project to list of knowledge bases for.
107 * Required. The project to list of knowledge bases for.
208 * The filter expression used to filter knowledge bases returned by the list
215 * * 'language_code=en-us' matches knowledge bases with en-us language code.
216 * * 'display_name:articles' matches knowledge bases whose display name
218 * * 'display_name:"Best Articles"' matches knowledge bases whose display
221 * bases whose display name contains "articles" and whose language code is
249 * The filter expression used to filter knowledge bases returned by the list
256 * * 'language_code=en-us' matches knowledge bases with en-us language code.
257 * * 'display_name:articles' matches knowledge bases whose display name
[all …]
/external/clang/lib/AST/
DRecordLayoutBuilder.cpp46 /// Bases - Information about the base subobjects.
47 SmallVector<BaseSubobjectInfo*, 4> Bases; member
187 // Check the bases. in ComputeEmptySubobjectSizes()
188 for (const CXXBaseSpecifier &Base : Class->bases()) { in ComputeEmptySubobjectSizes()
233 // We only need to check empty bases. in CanPlaceSubobjectAtOffset()
251 // We only care about empty bases. in AddSubobjectAtOffset()
279 // Traverse all non-virtual bases. in CanPlaceBaseSubobjectAtOffset()
281 for (const BaseSubobjectInfo *Base : Info->Bases) { in CanPlaceBaseSubobjectAtOffset()
320 // subobject of non-empty bases, are empty bases that can be placed at in UpdateEmptyBaseSubobjects()
329 // Traverse all non-virtual bases. in UpdateEmptyBaseSubobjects()
[all …]
DVTTBuilder.cpp59 for (const auto &I : RD->bases()) { in LayoutSecondaryVTTs()
60 // Don't layout virtual bases. in LayoutSecondaryVTTs()
84 // We're not interested in bases that don't have virtual bases, and not in LayoutSecondaryVirtualPointers()
85 // morally virtual bases. in LayoutSecondaryVirtualPointers()
89 for (const auto &I : RD->bases()) { in LayoutSecondaryVirtualPointers()
94 // Secondary virtual pointers are present for all bases with either in LayoutSecondaryVirtualPointers()
95 // virtual bases or virtual function declarations overridden along a in LayoutSecondaryVirtualPointers()
107 // Ignore virtual bases that we've already visited. in LayoutSecondaryVirtualPointers()
126 // bases or is reachable along a virtual path from D, and (b) is not a in LayoutSecondaryVirtualPointers()
153 for (const auto &I : RD->bases()) { in LayoutVirtualVTTs()
[all …]
/external/python/google-api-python-client/docs/dyn/
Ddialogflow_v2beta1.projects.knowledgeBases.html96 <p class="firstline">Returns the list of all knowledge bases of the specified agent. Note: The `pro…
118bases when looking for a response to an end-user input. For more information, see the [knowledge b…
132bases when looking for a response to an end-user input. For more information, see the [knowledge b…
172bases when looking for a response to an end-user input. For more information, see the [knowledge b…
181 …<pre>Returns the list of all knowledge bases of the specified agent. Note: The `projects.agent.kno…
184 …parent: string, Required. The project to list of knowledge bases for. Format: `projects//locations…
185bases returned by the list method. The expression has the following syntax: [AND ] ... The followi…
197 &quot;knowledgeBases&quot;: [ # The list of knowledge bases.
198bases when looking for a response to an end-user input. For more information, see the [knowledge b…
231bases when looking for a response to an end-user input. For more information, see the [knowledge b…
[all …]
Ddialogflow_v2beta1.projects.agent.knowledgeBases.html96 <p class="firstline">Returns the list of all knowledge bases of the specified agent. Note: The `pro…
118bases when looking for a response to an end-user input. For more information, see the [knowledge b…
132bases when looking for a response to an end-user input. For more information, see the [knowledge b…
172bases when looking for a response to an end-user input. For more information, see the [knowledge b…
181 …<pre>Returns the list of all knowledge bases of the specified agent. Note: The `projects.agent.kno…
184 …parent: string, Required. The project to list of knowledge bases for. Format: `projects//locations…
185bases returned by the list method. The expression has the following syntax: [AND ] ... The followi…
197 &quot;knowledgeBases&quot;: [ # The list of knowledge bases.
198bases when looking for a response to an end-user input. For more information, see the [knowledge b…
231bases when looking for a response to an end-user input. For more information, see the [knowledge b…
[all …]
Ddialogflow_v2beta1.projects.locations.knowledgeBases.html96 <p class="firstline">Returns the list of all knowledge bases of the specified agent. Note: The `pro…
118bases when looking for a response to an end-user input. For more information, see the [knowledge b…
132bases when looking for a response to an end-user input. For more information, see the [knowledge b…
172bases when looking for a response to an end-user input. For more information, see the [knowledge b…
181 …<pre>Returns the list of all knowledge bases of the specified agent. Note: The `projects.agent.kno…
184 …parent: string, Required. The project to list of knowledge bases for. Format: `projects//locations…
185bases returned by the list method. The expression has the following syntax: [AND ] ... The followi…
197 &quot;knowledgeBases&quot;: [ # The list of knowledge bases.
198bases when looking for a response to an end-user input. For more information, see the [knowledge b…
231bases when looking for a response to an end-user input. For more information, see the [knowledge b…
[all …]
Ddialogflow_v2.projects.locations.knowledgeBases.html96 <p class="firstline">Returns the list of all knowledge bases of the specified agent.</p>
118bases when looking for a response to an end-user input. For more information, see the [knowledge b…
132bases when looking for a response to an end-user input. For more information, see the [knowledge b…
172bases when looking for a response to an end-user input. For more information, see the [knowledge b…
181 <pre>Returns the list of all knowledge bases of the specified agent.
184 …parent: string, Required. The project to list of knowledge bases for. Format: `projects//locations…
196 &quot;knowledgeBases&quot;: [ # The list of knowledge bases.
197bases when looking for a response to an end-user input. For more information, see the [knowledge b…
230bases when looking for a response to an end-user input. For more information, see the [knowledge b…
245bases when looking for a response to an end-user input. For more information, see the [knowledge b…
Ddialogflow_v2.projects.agent.knowledgeBases.html96 <p class="firstline">Returns the list of all knowledge bases of the specified agent.</p>
118bases when looking for a response to an end-user input. For more information, see the [knowledge b…
132bases when looking for a response to an end-user input. For more information, see the [knowledge b…
172bases when looking for a response to an end-user input. For more information, see the [knowledge b…
181 <pre>Returns the list of all knowledge bases of the specified agent.
184 …parent: string, Required. The project to list of knowledge bases for. Format: `projects//locations…
196 &quot;knowledgeBases&quot;: [ # The list of knowledge bases.
197bases when looking for a response to an end-user input. For more information, see the [knowledge b…
230bases when looking for a response to an end-user input. For more information, see the [knowledge b…
245bases when looking for a response to an end-user input. For more information, see the [knowledge b…
Ddialogflow_v2.projects.knowledgeBases.html96 <p class="firstline">Returns the list of all knowledge bases of the specified agent.</p>
118bases when looking for a response to an end-user input. For more information, see the [knowledge b…
132bases when looking for a response to an end-user input. For more information, see the [knowledge b…
172bases when looking for a response to an end-user input. For more information, see the [knowledge b…
181 <pre>Returns the list of all knowledge bases of the specified agent.
184 …parent: string, Required. The project to list of knowledge bases for. Format: `projects//locations…
196 &quot;knowledgeBases&quot;: [ # The list of knowledge bases.
197bases when looking for a response to an end-user input. For more information, see the [knowledge b…
230bases when looking for a response to an end-user input. For more information, see the [knowledge b…
245bases when looking for a response to an end-user input. For more information, see the [knowledge b…
/external/googleapis/google/genomics/v1/
Dcigar.proto42 // The insert operator indicates that the read contains evidence of bases
47 // The delete operator indicates that the read contains evidence of bases
53 // reference, but the bases have not been deleted. This operator is commonly
59 // The soft clip operator indicates that bases at the start/end of a read
61 // of a read maps, except for low quality bases at the start/end of a read.
62 // This operator is equivalent to SAM's `S`. Bases that are soft
66 // The hard clip operator indicates that bases at the start/end of a read
90 // The number of genomic bases that the operation runs for. Required.
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/
DUDTLayout.cpp166 // Handled bases first, followed by VTables, followed by data members, in initializeChildren()
168 // so that bases and vtables get initialized before any functions which in initializeChildren()
170 UniquePtrVector<PDBSymbolTypeBaseClass> Bases; in initializeChildren() local
181 Bases.push_back(std::move(Base)); in initializeChildren()
197 // We don't want to have any re-allocations in the list of bases, so make in initializeChildren()
199 AllBases.reserve(Bases.size() + VirtualBaseSyms.size()); in initializeChildren()
201 // Only add non-virtual bases to the class first. Only at the end of the in initializeChildren()
202 // class, after all non-virtual bases and data members have been added do we in initializeChildren()
203 // add virtual bases. This way the offsets are correctly aligned when we go in initializeChildren()
204 // to lay out virtual bases. in initializeChildren()
[all …]
/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/PDB/
DUDTLayout.cpp169 // Handled bases first, followed by VTables, followed by data members, in initializeChildren()
171 // so that bases and vtables get initialized before any functions which in initializeChildren()
173 UniquePtrVector<PDBSymbolTypeBaseClass> Bases; in initializeChildren() local
184 Bases.push_back(std::move(Base)); in initializeChildren()
200 // We don't want to have any re-allocations in the list of bases, so make in initializeChildren()
202 AllBases.reserve(Bases.size() + VirtualBaseSyms.size()); in initializeChildren()
204 // Only add non-virtual bases to the class first. Only at the end of the in initializeChildren()
205 // class, after all non-virtual bases and data members have been added do we in initializeChildren()
206 // add virtual bases. This way the offsets are correctly aligned when we go in initializeChildren()
207 // to lay out virtual bases. in initializeChildren()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math3/random/
DHaltonSequenceGenerator.java101 * dimension. The length of the bases array defines the space dimension and is required to be
105 * @param bases the base number for each dimension, entries should be (pairwise) prime, may not
111 * refers to the length of the bases array
115 public HaltonSequenceGenerator(final int dimension, final int[] bases, final int[] weights) in HaltonSequenceGenerator() argument
118 MathUtils.checkNotNull(bases); in HaltonSequenceGenerator()
120 if (dimension < 1 || dimension > bases.length) { in HaltonSequenceGenerator()
124 if (weights != null && weights.length != bases.length) { in HaltonSequenceGenerator()
125 throw new DimensionMismatchException(weights.length, bases.length); in HaltonSequenceGenerator()
129 this.base = bases.clone(); in HaltonSequenceGenerator()

12345678910>>...40