Searched defs:combine (Results 1 - 25 of 73) sorted by relevance

123

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProviders.java62 public static PropertyCategoryProvider combine(final PropertyCategoryProvider... providers) { method in class:PropertyCategoryProviders
76 private static final PropertyCategoryProvider DEF = combine(forcedByUser(), fromProperty());
/external/boringssl/src/crypto/asn1/
H A Dtasn_fre.c63 int combine);
78 int combine)
123 if (!combine) {
167 if (!combine) {
77 asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) argument
H A Dtasn_new.c70 int combine);
91 int combine)
155 if (!combine) {
180 if (!combine) {
310 * NB: could probably combine most of the real XXX_new() behaviour and junk
90 asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) argument
H A Dtasn_dec.c182 int combine = aclass & ASN1_TFLG_COMBINE; local
507 if (combine == 0)
/external/emma/core/java12/com/vladium/util/
H A DDescriptors.java27 public static String combine (final String packageName, final String name, final char separator) method in class:Descriptors
40 return combine (packageName, name, JAVA_NAME_SEPARATOR);
45 return combine (packageName, name, VM_NAME_SEPARATOR);
H A DIProperties.java112 public static IProperties combine (final IProperties overrides, final IProperties base) method in class:IProperties.Factory
H A DProperty.java56 public static Properties combine (final Properties overrides, final Properties base) method in class:Property
118 return combine (resOverrides,
119 combine (systemOverrides,
120 combine (systemFileOverrides,
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DFuturesCombineBenchmark.java32 * A benchmark for {@link Futures#combine}
39 @Override <V> ListenableFuture<V> combine(final Callable<V> combiner, Executor executor,
59 <V> ListenableFuture<V> combine(Callable<V> combiner, final Executor executor,
61 return Futures.combine(combiner, executor, futures);
65 abstract <V> ListenableFuture<V> combine( method in class:FuturesCombineBenchmark.Impl
89 sum += impl.combine(callable, INLINE_EXECUTOR, futures).get();
104 sum += impl.combine(callable, INLINE_EXECUTOR, futures).get();
115 ListenableFuture<Integer> combined = impl.combine(callable, INLINE_EXECUTOR, futures);
131 ListenableFuture<Integer> combined = impl.combine(callable, INLINE_EXECUTOR, futures);
/external/guice/core/src/com/google/inject/util/
H A DModules.java107 public static Module combine(Module... modules) { method in class:Modules
108 return combine(ImmutableSet.copyOf(modules));
114 public static Module combine(Iterable<? extends Module> modules) { method in class:Modules
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
H A DStyles.java107 public static String combine(final String... styles) { method in class:Styles
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di830_texblend.c43 * Texture combine functions
128 * \c GL_ZERO as combine inputs (which the code already supports). It can
134 const struct gl_tex_env_combine_state * combine,
138 const GLuint numColorArgs = combine->_NumArgsRGB;
139 const GLuint numAlphaArgs = combine->_NumArgsA;
169 switch (combine->ModeRGB) {
171 alpha_shift = combine->ScaleShiftA;
181 rgb_shift = combine->ScaleShiftRGB;
182 alpha_shift = combine->ScaleShiftA;
187 switch (combine
133 i830SetTexEnvCombine(struct i830_context * i830, const struct gl_tex_env_combine_state * combine, GLint blendUnit, GLuint texel_op, GLuint * state, const GLfloat * factor) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
H A DComposableFunction.java315 * The function h created by {@code h = g.combine(f, combiner)} is such that
318 * @param f function to combine with the instance
320 * @return a new function which computes {@code combine.value(this.value(x), f.value(x))}
322 public ComposableFunction combine(final UnivariateRealFunction f, method in class:ComposableFunction
335 * @param f function to combine with the instance
365 * @param f function to combine with the instance
380 * @param f function to combine with the instance
409 * @param f function to combine with the instance
/external/autotest/client/deps/webgl_mpd/src/resources/
H A DJ3DIMath.js842 row1.combine(row0, 1.0, -skew[0]);
851 row2.combine(row0, 1.0, -skew[1]);
853 row2.combine(row1, 1.0, -skew[2]);
1038 J3DIVector3.prototype.combine = function(v, ascl, bscl)
/external/libmojo/third_party/jinja2/
H A D_stringdefs.py83 def combine(*args): function
108 footer = content[content.find("def combine("):]
/external/mesa3d/src/mesa/main/
H A Dtexstate.c47 * Default texture combine environment state. This is used to initialize
386 * Examine texture unit's combine/env state to update derived state.
391 struct gl_tex_env_combine_state *combine; local
416 combine = texUnit->_CurrentCombine;
419 switch (combine->ModeRGB) {
421 combine->_NumArgsRGB = 1;
426 combine->_NumArgsRGB = 4;
428 combine->_NumArgsRGB = 2;
436 combine->_NumArgsRGB = 2;
442 combine
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_texcombine.c88 const struct gl_tex_env_combine_state *combine = textureUnit->_CurrentCombine; local
91 const GLfloat scaleRGB = (GLfloat) (1 << combine->ScaleShiftRGB);
92 const GLfloat scaleA = (GLfloat) (1 << combine->ScaleShiftA);
93 const GLuint numArgsRGB = combine->_NumArgsRGB;
94 const GLuint numArgsA = combine->_NumArgsA;
129 combine->ModeRGB,
130 combine->ModeA,
131 combine->SourceRGB[0],
132 combine->SourceA[0],
133 combine
[all...]
H A Ds_context.c193 const struct gl_tex_env_combine_state *combine = local
196 for (term = 0; term < combine->_NumArgsRGB; term++) {
197 if (combine->SourceRGB[term] == GL_PRIMARY_COLOR) {
201 if (combine->SourceA[term] == GL_PRIMARY_COLOR) {
/external/skia/src/core/
H A DSkEdgeBuilder.cpp127 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1)); local
128 if (kNo_Combine != combine) {
129 if (kTotal_Combine == combine) {
145 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1)); local
146 if (kNo_Combine != combine) {
147 if (kTotal_Combine == combine) {
282 Combine combine = fAnalyticAA ? local
285 if (kNo_Combine == combine) {
288 } else if (kTotal_Combine == combine) {
313 Combine combine local
[all...]
/external/skia/third_party/lua/src/
H A Dluac.c136 static const Proto* combine(lua_State* L, int n) function
174 f=combine(L,argc);
/external/syslinux/com32/lua/src/
H A Dluac.c136 static const Proto* combine(lua_State* L, int n) function
174 f=combine(L,argc);
/external/deqp/framework/randomshaders/
H A DrsgBinaryOps.cpp767 static bool combine (bool a, bool b);
775 inline bool EqualityCompare<true>::combine (bool a, bool b) { return a && b; } function in class:rsg::__anon4187::EqualityCompare
782 inline bool EqualityCompare<false>::combine (bool a, bool b) { return a || b; } function in class:rsg::__anon4187::EqualityCompare
800 result = EqualityCompare<IsEqual>::combine(result, EqualityCompare<IsEqual>::compare(a.component(elemNdx).asFloat(compNdx), b.component(elemNdx).asFloat(compNdx)));
812 result = EqualityCompare<IsEqual>::combine(result, EqualityCompare<IsEqual>::compare(a.component(elemNdx).asInt(compNdx), b.component(elemNdx).asInt(compNdx)));
824 result = EqualityCompare<IsEqual>::combine(result, EqualityCompare<IsEqual>::compare(a.component(elemNdx).asBool(compNdx), b.component(elemNdx).asBool(compNdx)));
/external/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp9 // This pass replaces transfer instructions by combine instructions.
12 // replace them with a combine instruction.
37 #define DEBUG_TYPE "hexagon-copy-combine"
100 void combine(MachineInstr &I1, MachineInstr &I2,
128 INITIALIZE_PASS(HexagonCopyToCombine, "hexagon-copy-combine",
155 // workaround for an ABI bug that prevents GOT relocations on combine
160 // Only combine constant extended A2_tfrsi if we are in aggressive mode.
183 /// into a combine (ignoring register constraints).
196 // There is no combine of two constant extended values.
202 // There is a combine o
554 void HexagonCopyToCombine::combine(MachineInstr &I1, MachineInstr &I2, function in class:HexagonCopyToCombine
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpEngine.java620 .headers(combine(cacheResponse.headers(), networkResponse.headers()))
848 private static Headers combine(Headers cachedHeaders, Headers networkHeaders) throws IOException { method in class:HttpEngine
/external/autotest/frontend/afe/
H A Dmodel_logic.py54 def combine(self, rhs, connector): member in class:ExtendedManager.CustomQuery
55 super(ExtendedManager.CustomQuery, self).combine(rhs, connector)
88 By using this instead of extra(where=...), we can still freely combine
/external/guava/guava/src/com/google/common/util/concurrent/
H A DFutures.java997 * @param futures futures to combine
1019 * @param futures futures to combine
1129 * @param futures futures to combine
1150 * @param futures futures to combine
1605 C combine(List<Optional<V>> values); method in interface:Futures.FutureCombiner
1663 set(combiner.combine(ImmutableList.<Optional<V>>of()));
1764 set(localCombiner.combine(localValues));
1781 public List<V> combine(List<Optional<V>> values) {

Completed in 528 milliseconds

123