Searched refs:current (Results 51 - 75 of 3914) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/drivers/i915/
H A DMakefile2 include $(TOP)/configs/current
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositingInputsUpdater.cpp34 RenderObject* current = layer->renderer(); local
35 while (current) {
36 if (current->style()->position() == FixedPosition) {
37 for (current = current->parent(); current && !current->canContainFixedPositionObjects(); current = current->parent()) {
40 if (current
[all...]
/external/chromium_org/content/browser/quota/
H A Dmock_quota_manager.cc73 for (std::vector<OriginInfo>::const_iterator current = origins_.begin();
74 current != origins_.end();
75 ++current) {
76 if (current->origin == origin &&
77 current->type == type &&
78 current->quota_client_mask & quota_client)
89 for (std::vector<OriginInfo>::const_iterator current = origins_.begin();
90 current != origins_.end();
91 ++current) {
92 if (current
[all...]
/external/chromium_org/v8/src/
H A Dhandles-inl.h86 HandleScopeData* current = isolate->handle_scope_data(); local
88 prev_next_ = current->next;
89 prev_limit_ = current->limit;
90 current->level++;
102 HandleScopeData* current = isolate->handle_scope_data(); local
104 std::swap(current->next, prev_next);
105 current->level--;
106 if (current->limit != prev_limit) {
107 current->limit = prev_limit;
110 ZapRange(current
120 HandleScopeData* current = isolate_->handle_scope_data(); local
140 HandleScopeData* current = isolate->handle_scope_data(); local
159 HandleScopeData* current = isolate_->handle_scope_data(); local
172 HandleScopeData* current = isolate_->handle_scope_data(); local
[all...]
H A Dsplay-tree-inl.h139 Node* current = root_;
140 while (current->right_ != NULL)
141 current = current->right_;
142 locator->bind(current);
151 Node* current = root_;
152 while (current->left_ != NULL)
153 current = current->left_;
154 locator->bind(current);
222 Node* current = root_; local
[all...]
H A Dhydrogen-mark-deoptimize.cc48 for (HInstruction* current = block->first(); current != NULL; ) {
49 HInstruction* next = current->next();
50 if (current->IsChange()) {
51 if (HChange::cast(current)->can_convert_undefined_to_nan()) {
52 current->SetFlag(HValue::kAllowUndefinedAsNaN);
55 current = next;
/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_org/content/renderer/
H A Drender_process.h34 static RenderProcess* current() { function in class:content::RenderProcess
35 return static_cast<RenderProcess*>(ChildProcess::current());
/external/chromium_org/extensions/browser/
H A Dcontent_hash_tree.cc25 const std::vector<std::string>* current = &leaf_hashes; local
27 // Where we're inserting new hashes computed from the current level.
30 while (current->size() > 1) {
31 // Iterate over the current level of hashes, computing the hash of up to
33 std::vector<std::string>::const_iterator i = current->begin();
34 while (i != current->end()) {
37 for (int j = 0; j < branch_factor && i != current->end(); j++) {
48 current = &current_nodes;
50 DCHECK_EQ(1u, current->size());
51 return (*current)[
[all...]
/external/chromium_org/mojo/examples/apptest/
H A Dexample_service_impl.cc17 RunLoop::current()->Quit();
22 RunLoop::current()->Quit();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDOMDataStore.cpp52 DOMDataStore& DOMDataStore::current(v8::Isolate* isolate) function in class:blink::DOMDataStore
54 return DOMWrapperWorld::current(isolate).domDataStore();
/external/chromium_org/third_party/WebKit/Source/modules/screen_orientation/
H A DScreenOrientationDispatcher.cpp28 Platform::current()->startListening(WebPlatformEventScreenOrientation, 0);
33 Platform::current()->stopListening(WebPlatformEventScreenOrientation);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebHeap.cpp40 ThreadState::current()->enterSafePointWithPointers(this);
45 ThreadState::current()->leaveSafePoint();
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
H A Darea_code_map.cc77 int current = 0; local
79 current = (start + end) / 2;
80 int32 current_value = storage_->GetPrefix(current);
82 return current;
84 --current;
85 end = current;
87 start = current + 1;
90 return current;
/external/llvm/test/MC/AsmParser/
H A Ddot-symbol.s1 # Historically 'as' treats '.' as a reference to the current location in
/external/chromium_org/third_party/skia/bench/
H A DChromeBench.cpp469 SkRect current; local
470 setRectangle(current, i);
472 canvas->drawRect(current, paint);
478 void setRectangle(SkRect& current, int i) { argument
479 current.set(0, 0,
/external/skia/bench/
H A DChromeBench.cpp469 SkRect current; local
470 setRectangle(current, i);
472 canvas->drawRect(current, paint);
478 void setRectangle(SkRect& current, int i) { argument
479 current.set(0, 0,
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble-conversion.cc432 const char* current = input; local
439 // 1. Each '++current' statement is followed by check for equality to 'end'.
440 // 3. If 'current' becomes equal to 'end' the function returns or goes to
442 // 4. 'current' is not dereferenced after the 'parsing_done' label.
443 // 5. Code before 'parsing_done' may rely on 'current != end'.
444 if (current == end) return 0.0;
459 if (*current == '+' || *current == '-') {
460 sign = (*current == '-');
461 ++current;
[all...]
/external/ceres-solver/internal/ceres/
H A Dline_search.cc154 const FunctionSample& current,
157 if (!current.value_is_valid ||
159 max_step_size <= current.x)) {
162 return min(max(current.x * 0.5, min_step_size), max_step_size);
164 CHECK_GT(max_step_size, current.x);
173 // to avoid replicating current.value_is_valid == false
181 << ", current: " << current; local
191 samples.push_back(ValueSample(current.x, current
150 InterpolatingPolynomialMinimizingStepSize( const LineSearchInterpolationType& interpolation_type, const FunctionSample& lowerbound, const FunctionSample& previous, const FunctionSample& current, const double min_step_size, const double max_step_size) const argument
241 FunctionSample current = ValueAndGradientSample(step_size_estimate, 0.0, 0.0); local
463 FunctionSample current = ValueAndGradientSample(step_size_estimate, 0.0, 0.0); 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_org/content/renderer/pepper/
H A Dpepper_plugin_registry.cc114 const PepperPluginInfo& current = plugin_list_[i]; local
115 if (current.is_out_of_process)
119 new PluginModule(current.name,
120 current.version,
121 current.path,
122 ppapi::PpapiPermissions(current.permissions));
123 AddLiveModule(current.path, module.get());
124 if (current.is_internal) {
125 if (!module->InitAsInternalPlugin(current.internal_entry_points)) {
126 DVLOG(1) << "Failed to load pepper module: " << current
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Dtrace.cc40 int current; member in struct:__anon9161::TraceBuffer
134 memcpy(s_trace_buffer->buffer[s_trace_buffer->current], line, kEntrySize);
137 s_trace_buffer->current++;
138 if (s_trace_buffer->current == kNumberOfEntries)
139 s_trace_buffer->current = 0;
154 int current = s_trace_buffer->current - num_traces; local
155 if (current < 0)
156 current += kNumberOfEntries;
159 memcpy(line, s_trace_buffer->buffer[current], kEntrySiz
[all...]
/external/chromium_org/net/tools/balsa/
H A Dbalsa_frame.cc235 const char* current = begin; local
289 headers->whitespace_1_idx_ = current - begin;
290 // This loop is commented out as it is never used in current code. This is
301 while (*current <= ' ') {
302 ++current;
306 headers->non_whitespace_1_idx_ = current - begin;
308 // The first time through, we're guaranteed that the current character
312 ++current;
313 if (current == end) {
314 headers->whitespace_2_idx_ = current
481 CleanUpKeyValueWhitespace( const char* stream_begin, const char* line_begin, const char* current, const char* line_end, HeaderLineDescription* current_header_line) argument
524 const char* current = stream_begin + lines_[1].first; local
1235 const char* current = input; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DSelectRuleFeatureSet.cpp43 for (const CSSSelector* current = &selector; current; current = current->tagHistory()) {
44 if (invalidationSetForSelector(*current))
47 if (!current->selectorList())
50 for (const CSSSelector* selector = current->selectorList()->first(); selector; selector = CSSSelectorList::next(*selector))
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLInputStream.h36 // [--current--][--next--][--next--] ... [--next--]
38 // L_ current insertion point
40 // The current segmented string is stored in InputStream. Each of the
44 // We remove characters from the "current" string in the InputStream.
45 // document.write() will add characters at the current insertion point,
46 // which appends them to the "current" string.
90 SegmentedString& current() { return m_first; } function in class:blink::HTMLInputStream
91 const SegmentedString& current() const { return m_first; } function in class:blink::HTMLInputStream
132 m_line = m_inputStream->current().currentLine();
133 m_column = m_inputStream->current()
[all...]

Completed in 870 milliseconds

1234567891011>>