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

12 3 4 5 6 7 8 91011>>

  /external/nist-sip/java/javax/sip/header/
UnsupportedHeader.java 4 String NAME = "Unsupported";
RecordRouteHeader.java 4 String NAME = "Record-Route";
ReferToHeader.java 4 String NAME = "Refer-To";
RouteHeader.java 4 String NAME = "Route";
  /prebuilts/misc/common/swig/include/2.0.11/octave/
carrays.i 1 %define %array_class(TYPE,NAME)
2 %array_class_wrap(TYPE,NAME,__paren__,__paren_asgn__)
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
carrays.i 1 %define %array_class(TYPE,NAME)
2 %array_class_wrap(TYPE,NAME,__getitem__,__setitem__)
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
carrays.swg 9 * %array_functions(TYPE,NAME)
21 %define %array_functions(TYPE,NAME)
23 static TYPE *new_##NAME(size_t nelements) {
27 static void delete_##NAME(TYPE *ary) {
31 static TYPE NAME##_getitem(TYPE *ary, size_t index) {
34 static void NAME##_setitem(TYPE *ary, size_t index, TYPE value) {
39 TYPE *new_##NAME(size_t nelements);
40 void delete_##NAME(TYPE *ary);
41 TYPE NAME##_getitem(TYPE *ary, size_t index);
42 void NAME##_setitem(TYPE *ary, size_t index, TYPE value)
    [all...]
cmalloc.swg 12 /* %malloc(TYPE [, NAME = TYPE])
13 %calloc(TYPE [, NAME = TYPE])
14 %realloc(TYPE [, NAME = TYPE])
15 %free(TYPE [, NAME = TYPE])
16 %allocators(TYPE [,NAME = TYPE])
27 %define %malloc(TYPE,NAME...)
28 #if #NAME != ""
29 %rename(malloc_##NAME) ::malloc(size_t nbytes);
41 %define %calloc(TYPE,NAME...)
42 #if #NAME != "
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ParserFactory.java 39 * A factory class that does a name lookup on a registered parser and
40 * returns a header parser for the given name.
60 parserTable.put(ReplyToHeader.NAME.toLowerCase(), ReplyToParser.class);
63 InReplyToHeader.NAME.toLowerCase(),
67 AcceptEncodingHeader.NAME.toLowerCase(),
71 AcceptLanguageHeader.NAME.toLowerCase(),
75 parserTable.put(ToHeader.NAME.toLowerCase(), ToParser.class);
77 parserTable.put(FromHeader.NAME.toLowerCase(), FromParser.class);
80 parserTable.put(CSeqHeader.NAME.toLowerCase(), CSeqParser.class);
82 parserTable.put(ViaHeader.NAME.toLowerCase(), ViaParser.class)
    [all...]
Lexer.java 48 * get the header name of the line
50 * @return the header name (stuff before the :) bug fix submitted by
114 addKeyword(ErrorInfoHeader.NAME.toUpperCase(),
116 addKeyword(AllowEventsHeader.NAME.toUpperCase(),
118 addKeyword(AuthenticationInfoHeader.NAME.toUpperCase(),
120 addKeyword(EventHeader.NAME.toUpperCase(), TokenTypes.EVENT);
121 addKeyword(MinExpiresHeader.NAME.toUpperCase(),
123 addKeyword(RSeqHeader.NAME.toUpperCase(), TokenTypes.RSEQ);
124 addKeyword(RAckHeader.NAME.toUpperCase(), TokenTypes.RACK);
125 addKeyword(ReasonHeader.NAME.toUpperCase()
    [all...]
  /external/chromium_org/third_party/sqlite/src/
publish_osx.sh 7 # Set srcdir to the name of the directory that contains the publish.sh
28 NAME=sqlite3-$VERS-osx-x86.bin
29 echo '***** '"COMPILING $NAME..."
30 gcc $CFLAGS -Itsrc sqlite3.c tsrc/shell.c -o $NAME -ldl
31 strip $NAME
32 chmod 644 $NAME
33 gzip $NAME
35 mv $NAME.gz doc
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMArchName.h 19 #define ARM_ARCH_NAME(NAME, ID, DEFAULT_CPU_NAME, DEFAULT_CPU_ARCH) , ID
20 #define ARM_ARCH_ALIAS(NAME, ID) /* empty */
  /external/srec/srec/include/
sizes.h 29 #define FOUR_BYTE_PTR(PTR,NAME,DUMMY) union { PTR NAME; asr_int32_t DUMMY; }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
stab.h 7 #define __define_stab(NAME, CODE, STRING) NAME=CODE,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stab.h 7 #define __define_stab(NAME, CODE, STRING) NAME=CODE,
  /external/elfutils/0.153/src/
sectionhash.h 31 #define NAME ld_section_tab
  /external/llvm/lib/Target/ARM/
ARMFPUName.h 19 #define ARM_FPU_NAME(NAME, ID) , ID
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
SecurityClientHeader.java 46 * Name of SecurityClientHeader
48 public final static String NAME = "Security-Client";
SecurityVerifyHeader.java 47 * Name of SecurityVerifyHeader
49 public final static String NAME = "Security-Verify";
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
target-hooks-macros.h 20 DEFHOOK(NAME, DOC, TYPE, PARAMS, INIT): Define a function-valued hook.
21 DEFHOOKPOD(DOC, TYPE, NAME, INIT): Define a piece-of-data 'hook'. */
24 DEFHOOKPODX(NAME, TYPE, INIT): Like DEFHOOKPOD, but share documentation
27 #define DEFHOOKPODX(NAME, TYPE, INIT) DEFHOOKPOD (NAME, 0, TYPE, INIT)
38 name for nested use. */
40 #define HOOK_VECTOR_1(NAME, FRAGMENT) HOOKSTRUCT(FRAGMENT)
  /external/bison/lib/glthread/
lock.h 27 Declaration: gl_lock_define(extern, name)
28 Initializer: gl_lock_define_initialized(, name)
29 Initialization: gl_lock_init (name);
30 Taking the lock: gl_lock_lock (name);
31 Releasing the lock: gl_lock_unlock (name);
32 De-initialization: gl_lock_destroy (name);
34 Initialization: err = glthread_lock_init (&name);
35 Taking the lock: err = glthread_lock_lock (&name);
36 Releasing the lock: err = glthread_lock_unlock (&name);
37 De-initialization: err = glthread_lock_destroy (&name);
    [all...]
  /external/chromium_org/third_party/skia/experimental/webtry/sys/
webtry_init 23 NAME=webtry
24 DAEMON=/home/webtry/skia/experimental/webtry/$NAME
26 PIDFILE=/var/run/$NAME.pid
27 SCRIPTNAME=/etc/init.d/$NAME
33 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
72 start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
97 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
    [all...]
  /external/skia/experimental/webtry/sys/
webtry_init 23 NAME=webtry
24 DAEMON=/home/webtry/skia/experimental/webtry/$NAME
26 PIDFILE=/var/run/$NAME.pid
27 SCRIPTNAME=/etc/init.d/$NAME
33 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
72 start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
97 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/config/i386/
bsd.h 41 #define ASM_OUTPUT_SOURCE_FILENAME(FILE, NAME) */
59 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
61 assemble_name ((FILE), (NAME)), \
67 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
69 assemble_name ((FILE), (NAME)), \
73 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGNMENT) \
75 assemble_name ((FILE), (NAME)), \
87 the symbol_ref name of an internal numbered label where
  /cts/tests/tests/util/src/android/util/cts/
AndroidExceptionTest.java 24 private static final String NAME = "Test_AndroidException";
34 throw new AndroidException(NAME);
36 assertEquals(NAME, e.getMessage());

Completed in 755 milliseconds

12 3 4 5 6 7 8 91011>>