Searched refs:current (Results 26 - 50 of 1428) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/
H A Dguid.cc19 char current = guid[i]; local
21 if (current != '-')
24 if (hexchars.find(current) == std::string::npos)
/external/opencv/
H A DWLNonFileByteStream.cpp103 uchar *current = m_current; local
105 if( current+1 < m_end )
107 current[0] = (uchar)val;
108 current[1] = (uchar)(val >> 8);
109 m_current = current + 2;
121 uchar *current = m_current; local
123 if( current+3 < m_end )
125 current[0] = (uchar)val;
126 current[1] = (uchar)(val >> 8);
127 current[
[all...]
/external/chromium/chrome/browser/importer/
H A Dtoolbar_importer_utils.cc33 for (std::vector<std::string>::iterator current = cookie_list.begin();
34 current != cookie_list.end();
35 ++current) {
36 size_t position = (*current).find(kGoogleDomainSecureCookieId);
/external/kernel-headers/original/asm-mips/
H A Dcurrent.h21 #define current get_current() macro
/external/webkit/Source/WebCore/bindings/v8/
H A DRetainedDOMInfo.cpp72 Node* current = m_root; local
73 while (current) {
74 current = current->traverseNextNode(m_root);
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceClientWalker.cpp37 for (Iterator current = set.begin(); current != end; ++current)
38 m_clientVector[clientIndex++] = current->first;
H A DMemoryCache.cpp184 // greater than the current->m_lastDecodedAccessTime.
186 CachedResource* current = m_liveDecodedResources.m_tail; local
187 while (current) {
188 CachedResource* prev = current->m_prevInLiveResourcesList;
189 ASSERT(current->hasClients());
190 if (current->isLoaded() && current->decodedSize()) {
192 double elapsedTime = currentTime - current->m_lastDecodedAccessTime;
199 current->destroyDecodedData();
204 current
223 CachedResource* current = m_allResources[i].m_tail; local
242 CachedResource* current = m_allResources[i].m_tail; local
683 CachedResource* current = m_allResources[i].m_tail; local
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js283 var current = this.root_;
285 if (key < current.key) {
286 if (!current.left) {
289 if (key < current.left.key) {
291 var tmp = current.left;
292 current.left = tmp.right;
293 tmp.right = current;
294 current = tmp;
295 if (!current.left) {
300 right.left = current;
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js283 var current = this.root_;
285 if (key < current.key) {
286 if (!current.left) {
289 if (key < current.left.key) {
291 var tmp = current.left;
292 current.left = tmp.right;
293 tmp.right = current;
294 current = tmp;
295 if (!current.left) {
300 right.left = current;
[all...]
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLSegments.cpp54 int current = 0; local
56 current = scheme.end() + 1; // Advance over the ':' at the end of the scheme.
61 current = username.end() + 1; // Advance over the '@' or ':' at the end.
67 current = password.end() + 1; // Advance over the '@' at the end.
73 current = host.end();
81 current = port.end();
87 current = path.end();
95 current = query.end();
107 return current;
/external/chromium/net/base/
H A Ddirectory_lister_unittest.cc27 MessageLoop::current()->Quit();
36 for (size_t previous = 0, current = 1;
37 current < file_list_.size();
38 previous++, current++) {
40 paths_[previous], paths_[current]));
47 for (size_t previous = 0, current = 1;
48 current < file_list_.size();
49 previous++, current++) {
52 !file_util::FileEnumerator::IsDirectory(file_list_[current])) {
56 file_util::FileEnumerator::GetFilename(file_list_[current])));
[all...]
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DMessageProtocol.java58 private ByteBuffer current; field in class:MessageProtocol
112 if( current == null ) {
142 current = ByteBuffer.allocate(size);
145 if( current.remaining() <= buffer.remaining() ) {
147 // copy what we can into current, create a message,
151 int extra = buffer.remaining() - current.remaining();
152 buffer.limit( buffer.position() + current.remaining() );
155 current.put( buffer );
156 current.flip();
161 createMessage( current );
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java84 * Traverse to the next node after the current node.
88 * @param current The current node of the traversal. This is the last known
91 * should be set equal to current. Note that in order to test whether
97 public abstract int next(int context, int current); argument
100 * Traverse to the next node after the current node that is matched
105 * @param current The current node of the traversal. This is the last known
108 * should be set equal to current. Note that in order to test whether
115 public abstract int next(int context, int current, in argument
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dmock_login_status_consumer.h34 MessageLoop::current()->Quit();
39 MessageLoop::current()->Quit();
48 MessageLoop::current()->Quit();
57 MessageLoop::current()->Quit();
62 MessageLoop::current()->Quit();
67 MessageLoop::current()->Quit();
73 MessageLoop::current()->Quit();
79 MessageLoop::current()->Quit();
/external/chromium/chrome/browser/first_run/
H A Dfirst_run_import_observer.cc19 MessageLoop::current()->Run();
24 MessageLoop::current()->Quit();
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in
/external/v8/src/
H A Dsplay-tree-inl.h155 Node* current = root_;
156 while (current->right_ != NULL)
157 current = current->right_;
158 locator->bind(current);
167 Node* current = root_;
168 while (current->left_ != NULL)
169 current = current->left_;
170 locator->bind(current);
238 Node* current = root_; local
[all...]
/external/opencv/otherlibs/highgui/
H A Dbitstrm.cpp235 uchar *current = m_current; local
238 if( current >= m_end )
241 current = m_current;
244 val = *((uchar*)current);
245 m_current = current + 1;
286 uchar *current = m_current; local
289 if( current+1 < m_end )
291 val = current[0] + (current[1] << 8);
292 m_current = current
305 uchar *current = m_current; local
327 uchar *current = m_current; local
346 uchar *current = m_current; local
401 ulong* current = (ulong*)m_current; local
420 ulong* current = (ulong*)m_current; local
510 ulong* current = ((ulong*)m_current) - mask; local
529 ulong* current = ((ulong*)m_current) - mask; local
859 uchar *current = m_current; local
879 uchar *current = m_current; local
910 uchar *current = m_current; local
930 uchar *current = m_current; local
[all...]
/external/chromium/net/tools/flip_server/
H A Dbalsa_frame.cc214 const char* current = begin; local
268 headers->whitespace_1_idx_ = current - begin;
269 // This loop is commented out as it is never used in current code. This is
280 while (*current <= ' ') {
281 ++current;
285 headers->non_whitespace_1_idx_ = current - begin;
287 // The first time through, we're guaranteed that the current character
291 ++current;
292 if (current == end) {
293 headers->whitespace_2_idx_ = current
460 CleanUpKeyValueWhitespace( const char* stream_begin, const char* line_begin, const char* current, const char* line_end, HeaderLineDescription* current_header_line) argument
504 const char* current = stream_begin + lines_[1].first; local
1251 const char* current = input; local
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLInputStream.h35 // [--current--][--next--][--next--] ... [--next--]
37 // L_ current insertion point
39 // The current segmented string is stored in InputStream. Each of the
43 // We remove characters from the "current" string in the InputStream.
44 // document.write() will add characters at the current insertion point,
45 // which appends them to the "current" string.
87 SegmentedString& current() { return m_first; } function in class:WebCore::HTMLInputStream
88 const SegmentedString& current() const { return m_first; } function in class:WebCore::HTMLInputStream
129 m_line = m_inputStream->current().currentLine();
130 m_column = m_inputStream->current()
[all...]
/external/freetype/src/base/
H A Dftgloadr.c51 /* loader.current Describes the top of the stack, on which a new */
55 /* Prepare Set up `loader.current' for addition of a new glyph */
57 /* Add Add the `current' glyph image to the `base' one, */
90 FT_GlyphLoad current = &loader->current; local
97 *current = *base;
140 /* re-adjust the `current' outline fields */
145 FT_Outline* current = &loader->current.outline; local
148 current
188 FT_GlyphLoad current = &loader->current; local
207 FT_Outline* current = &loader->current.outline; local
284 FT_GlyphLoad current = &loader->current; local
309 FT_GlyphLoad current = &loader->current; local
326 FT_GlyphLoad current; local
[all...]
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractMessageParser.java114 CharArrayBuffer current = null;
117 if (current == null) {
118 current = new CharArrayBuffer(64);
120 current.clear();
122 int l = inbuffer.readLine(current);
123 if (l == -1 || current.length() < 1) {
130 if ((current.charAt(0) == ' ' || current.charAt(0) == '\t') && previous != null) {
134 while (i < current.length()) {
135 char ch = current
[all...]
/external/chromium/chrome/browser/ui/cocoa/find_bar/
H A Dfind_bar_text_field_cell.h20 - (void)setActiveMatch:(NSInteger)current of:(NSInteger)total;
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java49 int current = value;
51 return current;
72 int current = value;
74 return current;
H A DAtomicLong.java49 long current = value;
51 return current;
72 long current = value;
74 return current;

Completed in 3290 milliseconds

1234567891011>>