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

1 2 3

  /libcore/luni/src/main/java/java/security/
DomainCombiner.java 45 ProtectionDomain[] combine(ProtectionDomain[] current, method in interface:DomainCombiner
  /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));
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
  /external/stlport/test/unit/
locale_test.cpp 236 void LocaleTest::combine() function in class:LocaleTest
244 loc.combine<messages<char> >(loc);
255 loc.combine<dummy_facet>(loc);
287 //We are going to combine money facets as all formats are different.
290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
292 loc = loc.combine<money_put<char> >(loc2);
293 loc = loc.combine<money_get<char> >(loc2);
305 //We check that resulting locale has not wrongly acquire loc1 facets that hasn't been combine:
306 locale loc = loc2.combine<numpunct<char> >(loc1)
    [all...]
locale_test.h 55 CPPUNIT_TEST(combine);
74 void combine();
  /ndk/sources/android/stlport/test/unit/
locale_test.cpp 236 void LocaleTest::combine() function in class:LocaleTest
244 loc.combine<messages<char> >(loc);
255 loc.combine<dummy_facet>(loc);
287 //We are going to combine money facets as all formats are different.
290 locale loc = loc1.combine<moneypunct<char, true> >(loc2);
291 loc = loc.combine<moneypunct<char, false> >(loc2);
292 loc = loc.combine<money_put<char> >(loc2);
293 loc = loc.combine<money_get<char> >(loc2);
305 //We check that resulting locale has not wrongly acquire loc1 facets that hasn't been combine:
306 locale loc = loc2.combine<numpunct<char> >(loc1)
    [all...]
locale_test.h 55 CPPUNIT_TEST(combine);
74 void combine();
  /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/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,
Processor.java 36 toolProperties = IProperties.Factory.combine (m_propertyOverrides, appProperties);
Command.java 159 m_propertyOverrides = Property.combine (cmdOverrides, m_propertyOverrides);
180 m_propertyOverrides = Property.combine (m_propertyOverrides, fileOverrides);
  /external/openssl/crypto/asn1/
tasn_fre.c 65 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
79 static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine)
127 if (!combine)
174 if (!combine)
tasn_new.c 68 int combine);
89 int combine)
103 if (!combine) *pval = NULL;
161 if (!combine)
189 if (!combine)
321 /* NB: could probably combine most of the real XXX_new() behaviour and junk
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 96 result = Annotations.combine(result, signature);
127 result = Annotations.combine(result, innerClassAnnotations);
134 result = Annotations.combine(result, enclosingMethod);
141 result = Annotations.combine(result, annotationDefault);
163 result = Annotations.combine(result, throwsAnnotation);
195 // Both are non-null, so combine them.
197 return Annotations.combine(visible.getAnnotations(),
382 // Both are non-null, so combine them.
384 return AnnotationsList.combine(visible.getParameterAnnotations(),
  /external/quake/quake/src/QW/client/
snd_dma.c 729 channel_t *combine; local
742 combine = NULL;
754 // try to combine static sounds with a previous channel of the same
760 if (combine && combine->sfx == ch->sfx)
762 combine->leftvol += ch->leftvol;
763 combine->rightvol += ch->rightvol;
768 combine = channels+MAX_DYNAMIC_CHANNELS + NUM_AMBIENTS;
769 for (j=MAX_DYNAMIC_CHANNELS + NUM_AMBIENTS ; j<i; j++, combine++)
770 if (combine->sfx == ch->sfx
    [all...]
  /external/quake/quake/src/WinQuake/
snd_dma.cpp 733 channel_t *combine; local
746 combine = NULL;
758 // try to combine static sounds with a previous channel of the same
764 if (combine && combine->sfx == ch->sfx)
766 combine->leftvol += ch->leftvol;
767 combine->rightvol += ch->rightvol;
772 combine = channels+MAX_DYNAMIC_CHANNELS + NUM_AMBIENTS;
773 for (j=MAX_DYNAMIC_CHANNELS + NUM_AMBIENTS ; j<i; j++, combine++)
774 if (combine->sfx == ch->sfx
    [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);
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,
  /external/netcat/data/
showmount.d 6 # combine stdout *and* stderr thru "strings" or something to clean it up
  /libcore/luni/src/main/java/javax/security/auth/
SubjectDomainCombiner.java 82 public ProtectionDomain[] combine(ProtectionDomain[] currentDomains, method in class:SubjectDomainCombiner
  /libcore/luni/src/test/java/libcore/java/security/
AccessControllerTest.java 34 public ProtectionDomain[] combine(ProtectionDomain[] a, ProtectionDomain[] b) {
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 166 final IProperties settings = IProperties.Factory.combine (reportSettings,
167 IProperties.Factory.combine (verbositySettings,
168 IProperties.Factory.combine (genericSettings,
  /external/emma/ant/ant14/com/vladium/emma/report/
reportTask.java 60 // combine report and all generic settings:
68 settings = IProperties.Factory.combine (reportSettings, taskSettings);
  /external/icu4c/tools/gennorm2/
n2builder.h 93 UChar32 combine(const Norm &norm, UChar32 trail) const;

Completed in 184 milliseconds

1 2 3