HomeSort by relevance Sort by last modified time
    Searched refs:combine (Results 1 - 25 of 391) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/resources/
StylesTest.java 25 assertEquals(null, Styles.combine());
30 assertEquals(null, Styles.combine((String) null));
35 assertEquals("aaa", Styles.combine("aaa"));
41 Styles.combine("aaa", null, "bbb", "ccc", null));
  /libcore/ojluni/src/main/java/java/security/
DomainCombiner.java 33 ProtectionDomain[] combine(ProtectionDomain[] currentDomains, method in interface:DomainCombiner
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
UseCompoundDrawableRefactoringTest.java 18 import static com.android.ide.eclipse.adt.internal.editors.layout.refactoring.UseCompoundDrawableRefactoring.combine;
33 assertNull(combine(null, null)); method
34 assertNull(combine("@dimen/foo", "@dimen/bar"));
35 assertNull(combine("@dimen/foo", "@dimen/bar"));
36 assertNull(combine("1sp", "@dimen/bar"));
37 assertNull(combine("1sp", "2dp"));
38 assertNull(combine(null, "")); method
39 assertNull(combine("", null));
41 assertEquals("@dimen/foo", combine(null, "@dimen/foo"));
42 assertEquals("@dimen/foo", combine("@dimen/foo", null))
    [all...]
  /external/llvm/test/MC/Hexagon/
register-alt-names.s 12 # CHECK: r1:0 = combine(r31, r30)
labels.s 13 # CHECK: r5:4 = combine(r5, r4)
  /libcore/ojluni/src/main/java/javax/security/auth/
SubjectDomainCombiner.java 39 public ProtectionDomain[] combine(ProtectionDomain[] currentDomains, method in class:SubjectDomainCombiner
  /prebuilts/ndk/r13/sources/third_party/shaderc/
Android.mk 17 $(1)/combine.ar: $(addprefix $(1)/, $(ALL_LIBS))
18 @echo "create libshaderc_combined.a" > $(1)/combine.ar
20 @echo "addlib $(lib)" >> $(1)/combine.ar
22 @echo "save" >> $(1)/combine.ar
23 @echo "end" >> $(1)/combine.ar
25 $(1)/libshaderc_combined.a: $(addprefix $(1)/, $(ALL_LIBS)) $(1)/combine.ar
26 @echo "[$(TARGET_ARCH_ABI)] Combine: libshaderc_combined.a <= $(ALL_LIBS)"
27 @cd $(1) && $(2)ar -M < combine.ar && cd $(ROOT_SHADERC_PATH)
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_texblend.c 43 * 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->ModeRGB)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationsList.java 39 public static AnnotationsList combine(AnnotationsList list1, method in class:AnnotationsList
52 result.set(i, Annotations.combine(a1, a2));
Annotations.java 52 public static Annotations combine(Annotations a1, Annotations a2) { method in class:Annotations
72 public static Annotations combine(Annotations annotations, method in class:Annotations
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationsList.java 39 public static AnnotationsList combine(AnnotationsList list1, method in class:AnnotationsList
52 result.set(i, Annotations.combine(a1, a2));
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProviders.java 62 public static PropertyCategoryProvider combine(final PropertyCategoryProvider... providers) { method in class:PropertyCategoryProviders
76 private static final PropertyCategoryProvider DEF = combine(forcedByUser(), fromProperty());
  /external/emma/ant/ant14/com/vladium/emma/ant/
NestedTask.java 52 final IProperties settings = IProperties.Factory.combine (taskOverrides, parentSettings);
SuppressableTask.java 117 return IProperties.Factory.combine (verbositySettings,
118 IProperties.Factory.combine (genericSettings,
  /external/guice/core/test/com/google/inject/
ModulesTest.java 33 Module combined = Modules.combine(newModule(1), newModule(2L), newModule((short) 3));
42 Injector injector = Guice.createInjector(Modules.combine(modules));
49 * The module returned by Modules.combine shouldn't show up in binder sources.
54 final Module combined1 = Modules.combine(m1, m2);
60 final Module combined2 = Modules.combine(skipSourcesModule);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
combinerefs.py 88 def combine(fname): function
127 combine(sys.argv[1])
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
FuturesCombineBenchmark.java 32 * A benchmark for {@link Futures#combine}
39 @Override <V> ListenableFuture<V> combine(final Callable<V> combiner, Executor executor, method
59 <V> ListenableFuture<V> combine(Callable<V> combiner, final Executor executor,
61 return Futures.combine(combiner, executor, futures);
65 abstract <V> ListenableFuture<V> combine(
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/llvm/utils/lit/utils/
check-coverage 41 # Combine all the data files.
42 (cd tests && python -m coverage combine)
  /external/skia/src/core/
SkEdgeBuilder.cpp 21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) {
66 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(
127 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
313 Combine combine = fAnalyticAA ? local
    [all...]
  /external/boringssl/src/crypto/asn1/
tasn_fre.c 63 int combine);
78 int combine)
123 if (!combine) {
167 if (!combine) {
  /external/emma/core/java12/com/vladium/emma/
EMMAProperties.java 162 properties = IProperties.Factory.combine (userOverrides,
163 IProperties.Factory.combine (system,
164 IProperties.Factory.combine (systemFile,
165 IProperties.Factory.combine (appDefaults,
  /libcore/ojluni/src/main/java/java/util/
IntSummaryStatistics.java 39 * IntSummaryStatistics::combine);
96 public void combine(IntSummaryStatistics other) { method in class:IntSummaryStatistics
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 95 result = Annotations.combine(result, signature);
99 result = Annotations.combine(result, sourceDebugExtension);
130 result = Annotations.combine(result, innerClassAnnotations);
137 result = Annotations.combine(result, enclosingMethod);
144 result = Annotations.combine(result, annotationDefault);
166 result = Annotations.combine(result, throwsAnnotation);
198 // Both are non-null, so combine them.
200 return Annotations.combine(visible.getAnnotations(),
397 // Both are non-null, so combine them.
399 return AnnotationsList.combine(visible.getParameterAnnotations()
    [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
ReduceOps.java 84 public void combine(ReducingSink other) { method in class:ReduceOps.ReducingSink
133 public void combine(ReducingSink other) {
173 public void combine(ReducingSink other) {
201 * @param reducer a function to combine an accumulator into another
224 public void combine(ReducingSink other) {
267 public void combine(ReducingSink other) {
316 public void combine(ReducingSink other) {
337 * @param combiner a function to combine an accumulator into another
360 public void combine(ReducingSink other) {
403 public void combine(ReducingSink other)
    [all...]
  /external/emma/core/java12/com/vladium/util/
Descriptors.java 27 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);

Completed in 875 milliseconds

1 2 3 4 5 6 7 8 91011>>