Searched refs:START (Results 1 - 25 of 119) sorted by relevance

12345

/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DTokenTypes.java35 public static final int START = LexerCore.START; field in interface:TokenTypes
40 public static final int SIP = START + 3;
41 public static final int REGISTER = START + 4;
42 public static final int INVITE = START + 5;
43 public static final int ACK = START + 6;
44 public static final int BYE = START + 7;
45 public static final int OPTIONS = START + 8;
46 public static final int CANCEL = START + 9;
47 public static final int ERROR_INFO = START
[all...]
/external/clang/test/Preprocessor/
H A Dmacro-multiline.c5 // CHECK: {{^START A END$}}
6 START X END
/external/mdnsresponder/mDNSPosix/
H A Dmdnsd.sh35 START="start-stop-daemon --start --quiet --exec"
44 START=
52 $START $DAEMON
64 $START $DAEMON
/external/nist-sip/java/gov/nist/core/
H A DLexerCore.java40 // IMPORTANT - All keyword matches should be between START and END
41 public static final int START = 2048; field in class:LexerCore
42 public static final int END = START + 2048;
106 if (value > START) {
208 if (tok > START && tok < END) {
/external/v8/src/
H A Dlog-inl.h42 if (se == START) {
48 if (se == START) {
H A Dvm-state-inl.h43 LOG(isolate_, TimerEvent(Logger::START, TimerEventExternal::name()));
/external/e2fsprogs/contrib/
H A De2croncheck32 START="$(date +'%Y%m%d%H%M%S')"
37 tune2fs -C 0 -T "${START}" "/dev/${VG}/${VOLUME}"
/external/netperf/doc/examples/
H A Dtcp_range_script61 START=1
91 MESSAGE=$START
/external/elfutils/libelf/
H A Dabstract.h32 START (Bits, Ehdr, Ext##Ehdr) \
58 START (32, Phdr, Ext##Phdr) \
69 START (64, Phdr, Ext##Phdr) \
83 START (32, Shdr, Ext##Shdr) \
96 START (64, Shdr, Ext##Shdr) \
112 START (32, Sym, Ext##Sym) \
123 START (64, Sym, Ext##Sym) \
137 START (32, Rel, Ext##Rel) \
142 START (64, Rel, Ext##Rel) \
148 START (3
[all...]
H A Dexttypes.h52 #define START(Bits, Name, EName) typedef struct { macro
98 #undef START macro
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowVideoView.java23 public static final int START = 1; field in class:ShadowVideoView
59 currentState = ShadowVideoView.START;
88 return (currentState == ShadowVideoView.START);
/external/v8/tools/
H A Dv8-rolls.sh102 START=HEAD
111 s) START=$OPTARG
120 rolls $REVISIONS $START
/external/doclava/src/com/google/doclava/
H A DFieldInfo.java230 final int START = 0;
236 int state = START;
241 case START:
252 state = START;
256 state = START;
260 state = START;
264 state = START;
268 state = START;
272 state = START;
276 state = START;
[all...]
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
H A Dgenshistream.py4 from genshi.core import START, END, XML_NAMESPACE, DOCTYPE, TEXT namespace
29 if kind == START:
/external/autotest/client/site_tests/firmware_TouchMTB/
H A DtouchbotII_robot_wrapper.py33 # Normally, a gesture is performed within [START, END].
37 START = 0.1 variable
126 GV.LR: (START, CENTER, END, CENTER),
127 GV.RL: (END, CENTER, START, CENTER),
128 GV.TB: (CENTER, START, CENTER, END),
129 GV.BT: (CENTER, END, CENTER, START),
130 GV.BLTR: (START, END, END, START),
131 GV.TRBL: (END, START, START, EN
[all...]
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketParserD08.java42 START(0), OPCODE(1), LENGTH_7(1), LENGTH_16(2), LENGTH_63(8), MASK(4), PAYLOAD(0), DATA(0), SKIP(1), SEEK_EOF(1); enum constant in enum:WebSocketParserD08.State
88 _state=State.START;
205 case START:
313 _state=State.START;
329 _state=State.START;
351 _state=State.START;
H A DWebSocketParserRFC6455.java42 START(0), OPCODE(1), LENGTH_7(1), LENGTH_16(2), LENGTH_63(8), MASK(4), PAYLOAD(0), DATA(0), SKIP(1), SEEK_EOF(1); enum constant in enum:WebSocketParserRFC6455.State
88 _state=State.START;
205 case START:
313 _state=State.START;
329 _state=State.START;
351 _state=State.START;
H A DWebSocketParserD06.java42 START(0), MASK(4), OPCODE(1), LENGTH_7(1), LENGTH_16(2), LENGTH_63(8), DATA(0), SKIP(1); enum constant in enum:WebSocketParserD06.State
86 _state=State.START;
156 case START:
263 _state=State.START;
285 _state=State.START;
/external/vixl/test/examples/
H A Dtest-examples.cc172 #define START() \ macro
206 START();
231 START();
247 START();
289 START();
338 START();
364 START();
390 START();
419 START();
434 START();
[all...]
/external/freetype/src/gzip/
H A Dinfcodes.c17 START, /* x: set up for LEN */ enumerator in enum:__anon6003
69 c->mode = START;
103 case START: /* x: set up for LEN */
209 c->mode = START;
214 c->mode = START;
/external/wpa_supplicant_8/hostapd/src/eap_server/
H A Deap_server_tls.c22 enum { START, CONTINUE, SUCCESS, FAILURE } state; enumerator in enum:eap_tls_data::__anon21523
31 case START:
32 return "START";
78 data->state = START;
100 data->state = START;
122 data->state = START;
184 case START:
/external/wpa_supplicant_8/src/eap_server/
H A Deap_server_tls.c22 enum { START, CONTINUE, SUCCESS, FAILURE } state; enumerator in enum:eap_tls_data::__anon21785
31 case START:
32 return "START";
78 data->state = START;
100 data->state = START;
122 data->state = START;
184 case START:
/external/wpa_supplicant_8/wpa_supplicant/src/eap_server/
H A Deap_server_tls.c22 enum { START, CONTINUE, SUCCESS, FAILURE } state; enumerator in enum:eap_tls_data::__anon22045
31 case START:
32 return "START";
78 data->state = START;
100 data->state = START;
122 data->state = START;
184 case START:
/external/avahi/initscript/debian/
H A Davahi-daemon.in58 START=`$TPUT hpa 0`
64 echo -e "$UP$START $RED*$NORMAL$END[${RED}fail${NORMAL}]"
H A Davahi-dnsconfd.in58 START=`$TPUT hpa 0`
64 echo -e "$UP$START $RED*$NORMAL$END[${RED}fail${NORMAL}]"

Completed in 671 milliseconds

12345