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

1 2 3 4 5 6 7 8 910

  /external/smack/src/org/xbill/DNS/
SIG0.java 50 message.addRecord(sig, Section.ADDITIONAL);
67 Record [] additional = message.getSectionArray(Section.ADDITIONAL); local
68 for (int i = 0; i < additional.length; i++) {
69 if (additional[i].getType() != Type.SIG)
71 if (((SIGRecord) additional[i]).getTypeCovered() != 0)
73 sig = (SIGRecord) additional[i];
Message.java 111 if (i == Section.ADDITIONAL) {
212 for (int i = Section.ANSWER; i <= Section.ADDITIONAL; i++)
246 findRRset(name, type, Section.ADDITIONAL));
263 * Returns the TSIG record from the ADDITIONAL section, if one is present.
270 int count = header.getCount(Section.ADDITIONAL);
273 List l = sections[Section.ADDITIONAL];
301 * Returns the OPT record from the ADDITIONAL section, if one is present.
307 Record [] additional = getSectionArray(Section.ADDITIONAL); local
308 for (int i = 0; i < additional.length; i++
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategory.java 59 * <code>system.getPriority() + additional</code>.
61 public static final PropertyCategory system(PropertyCategory system, int additional) {
63 return system(system.getPriority() - SYSTEM_BASE + additional);
  /external/icu4c/data/translit/
trnsfiles.mk 15 # * To add an additional transliterators to the list:
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
clone_test.S 3 # count for additional 500 million each before exit
83 # count an additional 500 million
  /external/valgrind/main/exp-bbv/tests/x86-linux/
clone_test.S 3 # count for additional 500 million each before exit
83 # count an additional 500 million
  /external/clang/lib/CodeGen/
CGCall.h 113 /// given that there may be some additional, non-formal arguments
116 unsigned additional) {
118 return RequiredArgs(prototype->getNumArgs() + additional);
130 unsigned additional) {
131 return forPrototypePlus(prototype.getTypePtr(), additional);
  /external/clang/tools/driver/
Android.mk 101 # the additional dependency is needed when you run mm/mmm.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
lcp.bat 4 REM this work for additional information regarding copyright ownership.
antRun.bat 5 REM this work for additional information regarding copyright ownership.
  /external/icu4c/data/misc/
miscfiles.mk 15 # * To add an additional file to the list:
  /external/icu4c/data/sprep/
sprepfiles.mk 15 # * To add an additional locale to the list:
  /external/libvpx/libvpx/vp8/common/ppc/
platform_altivec.asm 6 ; tree. An additional intellectual property rights grant can be found
  /external/libvpx/libvpx/vpx_ports/
emms.asm 6 ; tree. An additional intellectual property rights grant can be found
  /external/v8/test/mjsunit/
debug-compile-event.js 67 // If the compiled source contains 'eval' there will be additional compile
101 source_count++; // Using eval causes additional compilation event.
103 source_count += 2; // Using eval causes additional compilation event.
105 // Using JSON.parse does not causes additional compilation events.
  /external/webrtc/src/common_audio/resampler/
Android.mk 5 # tree. An additional intellectual property rights grant can be found
  /external/webrtc/src/common_audio/vad/
Android.mk 5 # tree. An additional intellectual property rights grant can be found
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Android.mk 5 # tree. An additional intellectual property rights grant can be found
  /external/webrtc/src/modules/audio_processing/aec/
Android.mk 5 # tree. An additional intellectual property rights grant can be found
  /external/webrtc/src/modules/audio_processing/agc/
Android.mk 5 # tree. An additional intellectual property rights grant can be found
  /external/webrtc/src/modules/audio_processing/utility/
Android.mk 5 # tree. An additional intellectual property rights grant can be found
  /system/extras/tests/bionic/libstdc++/
Android.mk 26 # you can use EXTRA_CFLAGS to indicate additional CFLAGS to use
42 # you can use EXTRA_LDLIBS to indicate additional linker flags
  /external/openssh/openbsd-compat/
getrrsetbyname.c 172 struct dns_rr *additional; member in struct:dns_response
438 /* parse additional section */
439 resp->additional = parse_dns_rrsection(answer, size, &cp,
441 if (resp->header.arcount && resp->additional == NULL) {
594 free_dns_rr(p->additional);
  /ndk/sources/cxx-stl/gabi++/include/
unwind-arm.h 83 uint32_t additional; // additional data member in struct:_Unwind_Control_Block::__anon22036
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringTestBase.java 743 Object[] additional = new Object[] { typedefs
753 TEST_PROJECT3 = new Object[TEST_PROJECT2.length + additional.length];
755 System.arraycopy(additional, 0, TEST_PROJECT3, TEST_PROJECT2.length, additional.length);

Completed in 728 milliseconds

1 2 3 4 5 6 7 8 910