HomeSort by relevance Sort by last modified time
    Searched refs:combine (Results 26 - 50 of 448) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
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/
Annotations.java 51 public static Annotations combine(Annotations a1, Annotations a2) { method in class:Annotations
71 public static Annotations combine(Annotations annotations, method in class:Annotations
  /external/libcxx/test/std/localization/locales/locale/locale.operators/
eq.pass.cpp 27 std::locale noname1 = n1.combine<std::ctype<char> >(cloc);
29 std::locale noname2 = n1.combine<std::ctype<char> >(cloc);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.operators/
eq.pass.cpp 25 std::locale noname1 = n1.combine<std::ctype<char> >(cloc);
27 std::locale noname2 = n1.combine<std::ctype<char> >(cloc);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale/locale.operators/
eq.pass.cpp 27 std::locale noname1 = n1.combine<std::ctype<char> >(cloc);
29 std::locale noname2 = n1.combine<std::ctype<char> >(cloc);
  /system/libhwbinder/vts/performance/
PerfTest.h 91 // Combine two sets of latency data points and update the aggregation info.
92 static Results combine(const Results& a, const Results& b);
125 static PResults combine(const PResults& a, const PResults& b);
PerfTest.cpp 82 Results Results::combine(const Results& a, const Results& b) { function in class:Results
185 PResults PResults::combine(const PResults& a, const PResults& b) { function in class:PResults
189 ret.other = Results::combine(a.other, b.other);
190 ret.fifo = Results::combine(a.fifo, b.fifo);
  /external/boringssl/src/crypto/asn1/
tasn_new.c 70 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
  /external/emma/core/java12/com/vladium/emma/
Processor.java 36 toolProperties = IProperties.Factory.combine (m_propertyOverrides, appProperties);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Styles.java 107 public static String combine(final String... styles) { method in class:Styles
  /external/mesa3d/src/mesa/main/
texstate.c 46 * Default texture combine environment state. This is used to initialize
91 dst->Texture.Unit[u].Combine = src->Texture.Unit[u].Combine;
127 printf(" GL_COMBINE_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.ModeRGB));
128 printf(" GL_COMBINE_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.ModeA));
129 printf(" GL_SOURCE0_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[0]));
130 printf(" GL_SOURCE1_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[1]));
131 printf(" GL_SOURCE2_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[2]));
132 printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[0]));
133 printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[1]))
384 struct gl_tex_env_combine_state *combine; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
AccessControllerTest.java 40 public ProtectionDomain[] combine(ProtectionDomain[] a, ProtectionDomain[] b) {
  /libcore/ojluni/src/main/java/java/util/
DoubleSummaryStatistics.java 39 * DoubleSummaryStatistics::combine);
98 public void combine(DoubleSummaryStatistics other) { method in class:DoubleSummaryStatistics
LongSummaryStatistics.java 40 * LongSummaryStatistics::combine);
108 public void combine(LongSummaryStatistics other) { method in class:LongSummaryStatistics
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/contacts/
ContactsDataSource.java 68 .combine();
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/utils/
Utility.java 31 public static String combine(Object[] parts, char separator) { method in class:Utility
  /packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
CallFilteringResult.java 34 * Combine this CallFilteringResult with another, returning a CallFilteringResult with
37 public CallFilteringResult combine(CallFilteringResult other) { method in class:CallFilteringResult
  /external/mesa3d/src/mesa/swrast/
s_texcombine.c 88 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->SourceRGB[1]
    [all...]
  /external/libcxx/test/std/localization/locales/locale/locale.members/
combine.pass.cpp 12 // template <class Facet> locale combine(const locale& other) const;
73 std::locale loc3 = loc.combine<my_facet>(loc2);
89 std::locale loc3 = loc.combine<my_facet>(loc2);
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.members/
combine.pass.cpp 12 // template <class Facet> locale combine(const locale& other) const;
83 std::locale loc3 = loc.combine<my_facet>(loc2);
98 std::locale loc3 = loc.combine<my_facet>(loc2);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locales/locale/locale.members/
combine.pass.cpp 13 // template <class Facet> locale combine(const locale& other) const;
72 std::locale loc3 = loc.combine<my_facet>(loc2);
87 std::locale loc3 = loc.combine<my_facet>(loc2);
  /external/emma/core/java12/com/vladium/util/
Property.java 56 public static Properties combine (final Properties overrides, final Properties base) method in class:Property
118 return combine (resOverrides,
119 combine (systemOverrides,
120 combine (systemFileOverrides,
  /libcore/luni/src/test/java/libcore/java/util/
IntSummaryStatisticsTest.java 48 issCombined.combine(iss1);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ClassTest.java 188 boolean combine; field in class:ClassTest.MyCombiner
190 public ProtectionDomain[] combine(ProtectionDomain[] executionDomains, method in class:ClassTest.MyCombiner
192 combine = true;
204 combine = false;
209 return !combine;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_optimize.c 50 struct rc_src_register combine; local
51 combine.File = inner.File;
52 combine.Index = inner.Index;
53 combine.RelAddr = inner.RelAddr;
55 combine.Abs = 1;
56 combine.Negate = outer.Negate;
58 combine.Abs = inner.Abs;
59 combine.Negate = swizzle_mask(outer.Swizzle, inner.Negate);
60 combine.Negate ^= outer.Negate;
62 combine.Swizzle = combine_swizzles(inner.Swizzle, outer.Swizzle)
    [all...]

Completed in 2241 milliseconds

12 3 4 5 6 7 8 91011>>