Searched refs:current (Results 276 - 300 of 3914) sorted by relevance

<<11121314151617181920>>

/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp60 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min) argument
62 min = max = current;
64 while(++current < last) {
65 if(*max < *current)
66 max = current;
67 else if(*current < *min)
68 min = current;
75 find_extremes(RandomAccessIter current, RandomAccessIter last, RandomAccessIter & max, RandomAccessIter & min, compare comp) argument
77 min = max = current;
78 while(++current < las
419 find_extremes(RandomAccessIter current, RandomAccessIter last, div_type & max, div_type & min, right_shift shift) argument
468 find_extremes(RandomAccessIter current, RandomAccessIter last, cast_type & max, cast_type & min) argument
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dreslist.c191 struct SResource *current; local
196 for (current = res->u.fArray.fFirst; current != NULL; current = current->fNext) {
197 res_preflightStrings(bundle, current, stringSet, status);
204 struct SResource *current; local
209 for (current = res->u.fTable.fFirst; current != NULL; current
333 struct SResource *current; local
365 struct SResource *current; local
500 struct SResource *current; local
516 struct SResource *current; local
615 struct SResource *current = NULL; local
665 struct SResource *current; local
1152 struct SResource *current = NULL; local
1168 struct SResource *current = NULL; local
1267 struct SResource *current = NULL; local
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DParser.as61 var current:Token = TokenStream(input).LT(1);
62 if ( current.type == TokenConstants.EOF ) {
63 current = TokenStream(input).LT(-1);
65 t.line = current.line;
66 t.charPositionInLine = current.charPositionInLine;
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DParser.pm48 my $current = $input->LT(1);
49 if ($current->get_type() == ANTLR::Runtime::Token->EOF) {
50 $current = $input->LT(-1);
52 $t->set_line($current->get_line());
53 $t->set_char_position_in_line($current->get_char_position_in_line());
/external/chromium_org/cc/test/
H A Dtest_context_support.cc22 base::MessageLoop::current()->PostTask(
31 base::MessageLoop::current()->PostTask(
45 base::MessageLoop::current()->PostTask(
63 base::MessageLoop::current()->PostTask(
80 base::MessageLoop::current()->PostTask(
/external/chromium_org/components/dom_distiller/core/
H A Ddistilled_content_store_unittest.cc85 base::MessageLoop::current()->RunUntilIdle();
92 base::MessageLoop::current()->RunUntilIdle();
106 base::MessageLoop::current()->RunUntilIdle();
123 base::MessageLoop::current()->RunUntilIdle();
136 base::MessageLoop::current()->RunUntilIdle();
144 base::MessageLoop::current()->RunUntilIdle();
155 base::MessageLoop::current()->RunUntilIdle();
178 base::MessageLoop::current()->RunUntilIdle();
191 base::MessageLoop::current()->RunUntilIdle();
203 base::MessageLoop::current()
[all...]
/external/chromium_org/components/signin/core/browser/
H A Dtest_signin_client.cc24 base::MessageLoopProxy::current())),
67 base::MessageLoopProxy::current(),
68 base::MessageLoopProxy::current());
72 base::MessageLoopProxy::current(),
73 base::MessageLoopProxy::current(),
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapLinkedStack.h54 for (Node* current = m_head; current; current = current->m_next)
55 visitor->trace(current);
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_history_provider_service_unittest.cc109 base::MessageLoop::current()->Quit();
115 base::MessageLoop::current()->Quit();
121 base::MessageLoop::current()->Quit();
127 base::MessageLoop::current()->Quit();
132 base::MessageLoop::current()->Quit();
161 base::MessageLoop::current()->Run();
175 base::MessageLoop::current()->Run();
187 base::MessageLoop::current()->Run();
202 base::MessageLoop::current()->Run();
212 base::MessageLoop::current()
[all...]
/external/chromium_org/content/renderer/gpu/
H A Dcompositor_software_output_device.cc50 const Buffer* current = this; local
51 while (current->parent_) {
52 damage.op(RectToSkIRect(current->damage_), SkRegion::kUnion_Op);
53 if (current->parent_ == buffer) {
57 current = current->parent_;
67 RenderThreadImpl::current()->shared_bitmap_manager()) {
148 Buffer* current = buffers_[current_index_]; local
149 DCHECK(current->free());
150 current
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dlinemap.c62 unsigned long current; member in struct:yasm_linemap
91 virtual_line = linemap->current;
147 linemap->current++;
152 line = linemap->current;
154 linemap->current++;
157 mapping->line_inc*(linemap->current-2-mapping->line),
171 linemap->current = 1;
211 return linemap->current;
220 while (linemap->current > linemap->source_info_size) {
232 if (linemap->source_info[linemap->current
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-representation-changes.cc152 HPhi* current = int_worklist.RemoveLast(); local
153 for (int i = 0; i < current->OperandCount(); ++i) {
154 HValue* input = current->OperandAt(i);
160 input->id(), current->id(), current->Mnemonic());
169 HPhi* current = smi_worklist.RemoveLast(); local
170 for (int i = 0; i < current->OperandCount(); ++i) {
171 HValue* input = current->OperandAt(i);
177 input->id(), current->id(), current
[all...]
/external/ipsec-tools/src/racoon/
H A Dvendorid.c121 struct vendor_id *current; local
126 current = lookup_vendor_id_by_id(id);
128 return current ? current->string : NULL;
187 struct vendor_id *current; local
198 current = lookup_vendor_id_by_id(vendorid);
199 if (current == NULL) {
208 return vdup(current->hash);
222 struct vendor_id *current; local
229 current
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRuleFeature.cpp247 if (const CSSSelector* current = extractInvalidationSetFeatures(selector, features, false))
248 addFeaturesToInvalidationSets(*current, features);
254 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
256 extractInvalidationSetFeature(*current, features);
258 invalidationSetForSelector(*current);
259 if (current->pseudoType() == CSSSelector::PseudoHost || current
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Dtr_html.py225 return self.text_[self.current:]
229 if self.current != 0:
236 self.last_translateable = self.current
246 self.last_nontranslateable = self.current
249 self.current += match.end()
330 self.current = 0
341 while self.current < len(self.text_):
342 _DebugPrint('REST: %s' % self.text_[self.current:self.current+60])
353 # Whitespace is neutral, it just advances 'current' an
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java245 * Return the root of the tree where the current node lies. If the current node is the root,
303 NestedMapData current = this;
304 for (int lastDot = 0, nextDot = 0; nextDot != -1 && current != null; lastDot = nextDot + 1) {
307 current = current.followSymLinkToTheBitterEnd().getChildNode(chunk);
309 return current;
317 NestedMapData current = this;
321 NestedMapData currentSymLink = current.followSymLinkToTheBitterEnd();
322 current
613 NestedMapData current; field in class:NestedMapData.ChildrenIterator
[all...]
/external/chromium_org/base/
H A Dasync_socket_io_handler_unittest.cc18 // of Read operations to complete. Once that number is reached, the current
53 base::MessageLoop::current()->Quit();
90 base::MessageLoop::current()->Run();
107 base::MessageLoop::current()->PostDelayedTask(FROM_HERE,
110 base::MessageLoop::current()->Run();
120 base::MessageLoop::current()->RunUntilIdle();
138 base::MessageLoop::current()->PostDelayedTask(FROM_HERE,
145 base::MessageLoop::current()->PostDelayedTask(FROM_HERE,
149 base::MessageLoop::current()->Run();
166 base::MessageLoop::current()
[all...]
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_store_unittest.cc68 base::MessageLoopProxy::current(),
69 base::MessageLoopProxy::current(),
142 base::MessageLoop::current()->RunUntilIdle();
189 base::MessageLoop::current()->RunUntilIdle();
193 base::MessageLoop::current()->RunUntilIdle();
198 base::MessageLoopProxy::current(),
199 base::MessageLoopProxy::current(),
209 base::MessageLoop::current()->RunUntilIdle();
212 base::MessageLoop::current()->RunUntilIdle();
/external/chromium_org/net/base/
H A Dnetwork_change_notifier_win_unittest.cc64 base::MessageLoop::current()->Quit();
92 base::MessageLoop::current()->RunUntilIdle();
115 base::MessageLoop::current()->RunUntilIdle();
135 base::MessageLoop::current()->RunUntilIdle();
157 base::MessageLoop::current()->RunUntilIdle();
170 Invoke(base::MessageLoop::current(), &base::MessageLoop::Quit));
174 base::MessageLoop::current()->Run();
198 base::MessageLoop::current()->Run();
206 base::MessageLoop::current()->RunUntilIdle();
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebKit.cpp102 ThreadState::current()->addInterruptor(s_isolateInterruptor);
119 return Platform::current()->currentTime();
124 return Platform::current()->monotonicallyIncreasingTime();
129 Platform::current()->cryptographicallyRandomValues(buffer, length);
160 ThreadState::current()->addInterruptor(s_messageLoopInterruptor);
183 if (Platform::current()->currentThread()) {
184 // We don't need to (cannot) remove s_endOfTaskRunner from the current
192 ThreadState::current()->removeInterruptor(s_isolateInterruptor);
195 if (Platform::current()->currentThread()) {
201 ThreadState::current()
[all...]
/external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
H A Djson_reader.cpp588 Location current = token.start_;
589 bool isNegative = *current == '-';
591 ++current;
596 while ( current < token.end_ )
598 Char c = *current++;
609 current != token.end_ ||
682 Location current = token.start_ + 1; // skip '"' local
684 while ( current != end )
686 Char c = *current++;
691 if ( current
725 decodeUnicodeCodePoint( Token &token, Location &current, Location end, unsigned int &unicode ) argument
755 decodeUnicodeEscapeSequence( Token &token, Location &current, Location end, unsigned int &unicode ) argument
842 Location current = begin_; local
[all...]
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc107 current = std::find(beginning, end, true); local
108 for (int32_t next_bit = current - beginning;
109 character_iterator->HasNext() && current != end;
110 next_bit = current - init_beginning) {
112 EXPECT_TRUE(c <= next_bit || current == end);
113 if (!(c <= next_bit || current == end))
116 beginning = current + 1;
117 current = std::find(beginning, end, true);
122 EXPECT_EQ(end, current);
/external/jsoncpp/src/lib_json/
H A Djson_reader.cpp586 Location current = token.start_;
587 bool isNegative = *current == '-';
589 ++current;
594 while ( current < token.end_ )
596 Char c = *current++;
607 current != token.end_ ||
680 Location current = token.start_ + 1; // skip '"' local
682 while ( current != end )
684 Char c = *current++;
689 if ( current
723 decodeUnicodeCodePoint( Token &token, Location &current, Location end, unsigned int &unicode ) argument
753 decodeUnicodeEscapeSequence( Token &token, Location &current, Location end, unsigned int &unicode ) argument
840 Location current = begin_; local
[all...]
/external/sfntly/cpp/src/test/
H A Dcmap_iterator_test.cc107 current = std::find(beginning, end, true); local
108 for (int32_t next_bit = current - beginning;
109 character_iterator->HasNext() && current != end;
110 next_bit = current - init_beginning) {
112 EXPECT_TRUE(c <= next_bit || current == end);
113 if (!(c <= next_bit || current == end))
116 beginning = current + 1;
117 current = std::find(beginning, end, true);
122 EXPECT_EQ(end, current);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DFrameTestHelpers.cpp77 // through the current queue of tasks when runPendingTasks was called,
80 Platform::current()->currentThread()->postTask(this);
85 Platform::current()->currentThread()->exitRunLoop();
98 Platform::current()->unitTestSupport()->serveAsynchronousMockedRequests();
100 Platform::current()->currentThread()->postTask(new ServeAsyncRequestsTask(m_client));
102 Platform::current()->currentThread()->exitRunLoop();
111 Platform::current()->currentThread()->postTask(new ServeAsyncRequestsTask(testClientForFrame(frame)));
112 Platform::current()->currentThread()->enterRunLoop();
213 Platform::current()->currentThread()->postTask(new LoadTask(frame, urlRequest));
219 Platform::current()
[all...]

Completed in 2527 milliseconds

<<11121314151617181920>>