Searched defs:start (Results 276 - 300 of 1486) sorted by relevance

<<11121314151617181920>>

/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dapache_http_server.py30 """A class to start/stop the apache http server used by layout tests."""
209 def start(self): member in class:LayoutTestApacheHttpd
224 raise Exception('Failed to start http server')
H A Ddryrun.py142 def start(self): member in class:DryrunDriver
H A Dwebsocket_server.py30 """A class to help start/stop the PyWebSocket server used by layout tests."""
65 didn't start properly.
137 def start(self): member in class:PyWebSocket
139 _log.info('No need to start %s server.' % self._server_name)
219 'Failed to start %s server on port %s.' %
225 'Failed to start %s server.' % self._server_name)
/external/webkit/Tools/WebKitTestRunner/qt/
H A DTestControllerQt.cpp53 void start(int msec) function in class:WTR::TestControllerRunLoop
89 TestControllerRunLoop::instance()->start(static_cast<int>(timeout * 1000));
/external/wpa_supplicant_8/hostapd/src/common/
H A Dieee802_11_common.c66 * is used and they start with same data.
144 * @start: Pointer to the start of IEs
150 ParseRes ieee802_11_parse_elems(const u8 *start, size_t len, argument
155 const u8 *pos = start;
173 wpa_hexdump(MSG_MSGDUMP, "IEs", start, len);
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_er_ssdp.c32 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
65 for (start = buf; start && *start; start = pos) {
66 pos = os_strchr(start, '\n');
72 if (os_strstr(start, "schemas-wifialliance-org:device:"
75 if (os_strstr(start, "schemas-wifialliance-org:service:"
78 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
79 start
[all...]
/external/wpa_supplicant_8/src/common/
H A Dieee802_11_common.c66 * is used and they start with same data.
144 * @start: Pointer to the start of IEs
150 ParseRes ieee802_11_parse_elems(const u8 *start, size_t len, argument
155 const u8 *pos = start;
173 wpa_hexdump(MSG_MSGDUMP, "IEs", start, len);
/external/wpa_supplicant_8/src/wps/
H A Dwps_er_ssdp.c32 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
65 for (start = buf; start && *start; start = pos) {
66 pos = os_strchr(start, '\n');
72 if (os_strstr(start, "schemas-wifialliance-org:device:"
75 if (os_strstr(start, "schemas-wifialliance-org:service:"
78 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
79 start
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/common/
H A Dieee802_11_common.c66 * is used and they start with same data.
144 * @start: Pointer to the start of IEs
150 ParseRes ieee802_11_parse_elems(const u8 *start, size_t len, argument
155 const u8 *pos = start;
173 wpa_hexdump(MSG_MSGDUMP, "IEs", start, len);
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_er_ssdp.c32 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
65 for (start = buf; start && *start; start = pos) {
66 pos = os_strchr(start, '\n');
72 if (os_strstr(start, "schemas-wifialliance-org:device:"
75 if (os_strstr(start, "schemas-wifialliance-org:service:"
78 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
79 start
[all...]
/external/antlr/src/org/antlr/runtime/
H A DANTLRStringStream.java205 public String substring(int start, int stop) { argument
206 return new String(data,start,stop-start+1);
H A DBufferedTokenStream.java148 /** Get all tokens from start..stop inclusively */
149 public List get(int start, int stop) { argument
150 if ( start<0 || stop<0 ) return null;
154 for (int i = start; i <= stop; i++) {
195 public List getTokens(int start, int stop) { argument
196 return getTokens(start, stop, (BitSet)null);
199 /** Given a start and stop index, return a List of all tokens in
203 public List getTokens(int start, int stop, BitSet types) { argument
206 if ( start<0 ) start
223 getTokens(int start, int stop, List types) argument
227 getTokens(int start, int stop, int ttype) argument
240 toString(int start, int stop) argument
253 toString(Token start, Token stop) argument
[all...]
H A DCommonToken.java41 * start/stop are not affected by changing this.
49 protected int start; field in class:CommonToken
58 public CommonToken(CharStream input, int type, int channel, int start, int stop) { argument
62 this.start = start;
81 start = ((CommonToken)oldToken).start;
101 if ( start<input.size() && stop<input.size() ) {
102 text = input.substring(start,stop);
112 * that start/sto
147 setStartIndex(int start) argument
[all...]
/external/antlr/src/org/antlr/runtime/debug/
H A DDebugTokenStream.java149 public String toString(int start, int stop) { argument
150 return input.toString(start,stop);
153 public String toString(Token start, Token stop) { argument
154 return input.toString(start,stop);
H A DDebugTreeNodeStream.java152 public String toString(Object start, Object stop) { argument
153 return input.toString(start,stop);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DInet6AddressTest.java821 int bytesToInt(byte bytes[], int start) { argument
824 int value = ((bytes[start + 3] & byteMask))
825 | ((bytes[start + 2] & byteMask) << 8)
826 | ((bytes[start + 1] & byteMask) << 16)
827 | ((bytes[start] & byteMask) << 24);
844 void intToBytes(int value, byte bytes[], int start) { argument
847 bytes[start + 3] = (byte) (value & byteMask);
848 bytes[start + 2] = (byte) ((value >> 8) & byteMask);
849 bytes[start + 1] = (byte) ((value >> 16) & byteMask);
850 bytes[start]
[all...]
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DSupport_Format.java81 * which stores start and end indexes and an attribute this range
87 int start = iterator.getRunStart();
94 result.add(new FieldContainer(start, end, attribute, value));
95 // System.out.println(start + " " + end + ": " + attribute + ",
97 // System.out.println("v.add(new FieldContainer(" + start +"," +
106 int start, end; field in class:Support_Format.FieldContainer
113 public FieldContainer(int start, int end, argument
115 this(start, end, attribute, attribute);
119 public FieldContainer(int start, int end, Attribute attribute, int value) { argument
120 this(start, en
124 FieldContainer(int start, int end, Attribute attribute, Object value) argument
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java161 * start the search, -1 to search in the first header
183 int start = findTokenStart(from);
184 if (start < 0) {
189 int end = findTokenEnd(start);
190 this.currentToken = createToken(this.currentHeader, start, end);
210 * @param start the index of the first token character
215 protected String createToken(String value, int start, int end) { argument
216 return value.substring(start, end);
225 * start the search
227 * @return the position of the token start i
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java137 * Receive notification of the start of the non-text event. This
149 * Receive notification of the start of an element.
193 * @param start The start position in the character array.
198 StylesheetHandler handler, char ch[], int start, int length)
211 * @param start The start position in the character array.
216 StylesheetHandler handler, char ch[], int start, int length)
197 characters( StylesheetHandler handler, char ch[], int start, int length) argument
215 ignorableWhitespace( StylesheetHandler handler, char ch[], int start, int length) argument
/external/bluetooth/glib/gio/
H A Dglocalfileinputstream.c176 off_t res, start; local
184 start = lseek (file->priv->fd, 0, SEEK_CUR);
185 if (start == -1)
208 return res - start;
/external/bluetooth/glib/glib/
H A Dgtimer.c60 guint64 start; member in struct:_GTimer
75 GETTIME (timer->start);
95 GETTIME (timer->start);
113 GETTIME (timer->start);
124 /* Get elapsed time and reset timer start time
129 elapsed = timer->end - timer->start;
131 GETTIME (timer->start);
133 timer->start -= elapsed;
150 elapsed = timer->end - timer->start;
/external/bluetooth/glib/tests/
H A Dmarkup-collect.c16 start (GMarkupParseContext *context, function
78 static GMarkupParser parser = { start };
/external/chromium/base/
H A Dpickle_unittest.cc172 const char* start = reinterpret_cast<const char*>(pickle.data()); local
173 const char* end = start + pickle.size();
175 EXPECT_TRUE(end == Pickle::FindNext(pickle.header_size_, start, end));
176 EXPECT_TRUE(NULL == Pickle::FindNext(pickle.header_size_, start, end - 1));
177 EXPECT_TRUE(end == Pickle::FindNext(pickle.header_size_, start, end + 1));
185 const char* start = buffer.get(); local
186 const char* end = start + header_size - 1;
188 EXPECT_TRUE(NULL == Pickle::FindNext(header_size, start, end));
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win_unittest.cc307 long start; local
322 1, IA2_TEXT_BOUNDARY_CHAR, &start, &end, &text));
323 ASSERT_EQ(start, 1);
329 text1_len, IA2_TEXT_BOUNDARY_CHAR, &start, &end, &text));
330 ASSERT_EQ(start, text1_len);
334 1, IA2_TEXT_BOUNDARY_WORD, &start, &end, &text));
335 ASSERT_EQ(start, 0);
341 6, IA2_TEXT_BOUNDARY_WORD, &start, &end, &text));
342 ASSERT_EQ(start, 4);
348 text1_len, IA2_TEXT_BOUNDARY_WORD, &start,
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_processes_api.cc70 void ExtensionProcessesEventRouter::OnItemsChanged(int start, int length) { argument
74 for (int i = start; i < start + length; i++) {

Completed in 382 milliseconds

<<11121314151617181920>>