HomeSort by relevance Sort by last modified time
    Searched defs:special (Results 26 - 50 of 87) sorted by null

12 3 4

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/splay_tree_/
node.hpp 75 special() const function in struct:__gnu_pbds::detail::splay_tree_node_
107 special() const function in struct:__gnu_pbds::detail::splay_tree_node_
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/rb_tree_map_/
node.hpp 77 special() const function in struct:__gnu_pbds::detail::rb_tree_node_
121 special() const function in struct:__gnu_pbds::detail::rb_tree_node_
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/splay_tree_/
node.hpp 76 special() const function in struct:__gnu_pbds::detail::splay_tree_node_
108 special() const function in struct:__gnu_pbds::detail::splay_tree_node_
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFA.cs 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
43 * Any state that has a semantic predicate edge is special; those states
66 protected short[] special; field in class:Antlr.Runtime.DFA
94 int specialState = special[s];
98 " state " + s + " is special state " + specialState);
103 " returns from special state " + specialState + " to " + s);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DFA.cs 25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
44 * Any state that has a semantic predicate edge is special; those states
61 protected short[] special; field in class:Antlr.Runtime.DFA
111 int specialState = special[s];
117 " state " + s + " is special state " + specialState );
123 " returns from special state " + specialState + " to " + s );
  /frameworks/base/core/tests/coretests/src/android/util/
LongSparseLongArrayTest.java 64 final long special = (1 << 24) + 5; local
65 array.put(special, 1024);
71 assertEquals(1024, array.get(special, -1));
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DFA.java 21 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
32 * Any state that has a semantic predicate edge is special; those states
47 protected short[] special; field in class:DFA
74 int specialState = special[s];
78 " state "+s+" is special state "+specialState);
83 " returns from special state "+specialState+" to "+s);
  /bionic/libc/netbsd/nameser/
ns_name.c 14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
79 static int special(int);
154 if (special(c)) {
681 * special(ch)
683 * is this characted special ("in need of quoting") ?
688 special(int ch) { function
696 /* Special modifiers in zone files. */
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFA.java 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
62 /** How many edges can each DFA state have before a "special" state
204 /** List of special DFAState objects */
206 /** List of ST for special states. */
213 public Vector special; field in class:DFA
328 public List getJavaCompressedSpecial() { return getRunLengthEncoding(special); }
399 special = new Vector(this.getNumberOfStates()); // Vector<short>
400 special.setSize(this.getNumberOfStates());
434 // can't compute min,max,special,transition on accepts
459 testEncodeDecode(special);
    [all...]
  /external/libppp/src/
chat.c 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
143 int special, gotabort, gottimeout, needcr; local
173 special = 1;
174 while (special && (c->nargptr || c->arg < c->argc - 1)) {
227 * Now read our string. If it's not a special string, we unset
228 * ``special'' to break out of the loop.
272 special = 0;
276 if (special) {
  /ndk/sources/host-tools/make-3.81/
variable.h 62 unsigned int special:1; /* Nonzero if this is a special variable. */ member in struct:variable
  /external/javassist/src/main/javassist/bytecode/analysis/
Type.java 29 * a JVM type not only includes all normal Java types, but also a few special types
31 * more info on these special types.
33 * All primitive and special types reuse the same instance, so identity comparison can
44 private final boolean special; field in class:Type
142 private Type(CtClass clazz, boolean special) {
144 this.special = special;
163 * Returns the class this type represents. If the type is special, null will be returned.
165 * @return the class for this type, or null if special
174 * @return true if a java reference, false if a primitive or special
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
scc.h 114 long spints; /* Special receiver interrupts */
149 io_port special; /* special function port */ member in struct:scc_hw_config
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
scc.h 114 long spints; /* Special receiver interrupts */
149 io_port special; /* special function port */ member in struct:scc_hw_config
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
scc.h 114 long spints; /* Special receiver interrupts */
149 io_port special; /* special function port */ member in struct:scc_hw_config
  /system/core/sh/
expand.c 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
614 int special; local
623 special = !is_name(*p);
627 if (special) {
657 if (special) {
  /external/mksh/src/
var.c 47 static int special(const char *);
84 * pop a block handling special variables
98 if ((vp = *vpp++) != NULL && (vp->flag&SPECIAL)) {
284 if (special(n))
285 vp->flag |= SPECIAL;
328 if (special(n))
329 vp->flag |= SPECIAL;
339 if ((vp->flag&SPECIAL))
342 /* special to dollar() */
448 if ((vq->flag&SPECIAL))
1072 special(const char *name) function
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 400 /* Check whether it is a special file (stdin, stdout or stderr) */
401 struct special_files *special = special_files;
406 for (special = special_files; special->outf.name; special++)
407 if (strcmp(special->outf.name, file_name) == 0)
409 special->outf.fp = *special->pfp;
411 return &special->outf;
396 struct special_files *special = special_files; local
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cplus-dem.c 916 A few special names such as '___elabs' add a few chars (at most 7), but
1080 /* Special names. */
1081 static const char * const special[][2] = { local
1091 for (k = 0; special[k][0] != NULL; k++)
1093 size_t slen = strlen (special[k][0]);
1094 if (strncmp (p, special[k][0], slen) == 0)
1097 slen = strlen (special[k][1]);
1098 memcpy (d, special[k][1], slen);
1103 if (special[k][0] != NULL)
    [all...]
  /external/valgrind/main/coregrind/
m_main.c 1134 Char* special = " \\\\<>"; local
    [all...]
  /bionic/libc/kernel/common/linux/
blkdev.h 151 void *special; member in struct:request
  /development/ndk/platforms/android-3/include/linux/
blkdev.h 159 void *special; member in struct:request
  /external/kernel-headers/original/linux/
blkdev.h 180 void *special; member in struct:request
223 __REQ_PC, /* packet command (special) */
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
blkdev.h 159 void *special; member in struct:request
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
blkdev.h 159 void *special; member in struct:request

Completed in 1208 milliseconds

12 3 4