Searched defs:current (Results 151 - 175 of 808) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptState.h51 static ScriptState* current(v8::Isolate* isolate) function in class:blink::ScriptState
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSSelectorList.cpp67 CSSParserSelector* current = selectorVector[i].get(); local
68 while (current) {
70 CSSSelector* currentSelector = current->releaseSelector().leakPtr();
74 current = current->tagHistory();
76 if (current)
91 CSSSelector* current = m_selectorArray;
92 while (!current->isLastInSelectorList())
93 ++current;
94 return (current
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElementTraversal.h38 static ElementType* firstChild(const ContainerNode& current) { return firstChildTemplate(current); } argument
39 static ElementType* firstChild(const Node& current) { return firstChildTemplate(current); } argument
42 static ElementType* lastChild(const ContainerNode& current) { return lastChildTemplate(current); } argument
43 static ElementType* lastChild(const Node& current) { return lastChildTemplate(current); } argument
48 static ElementType* firstAncestor(const Node& current);
49 static ElementType* firstAncestorOrSelf(Node& current) { retur argument
50 firstAncestorOrSelf(Element& current) argument
51 firstAncestorOrSelf(const Node& current) argument
52 firstAncestorOrSelf(const Element& current) argument
56 firstWithin(const ContainerNode& current) argument
57 firstWithin(const Node& current) argument
60 lastWithin(const ContainerNode& current) argument
61 lastWithin(const Node& current) argument
66 next(const ContainerNode& current) argument
67 next(const Node& current) argument
68 next(const ContainerNode& current, const Node* stayWithin) argument
69 next(const Node& current, const Node* stayWithin) argument
119 firstWithinTemplate(NodeType& current) argument
126 nextTemplate(NodeType& current) argument
136 nextTemplate(NodeType& current, const Node* stayWithin) argument
147 firstChildTemplate(NodeType& current) argument
157 firstChild(const ContainerNode& current, MatchFunc isMatch) argument
166 firstAncestor(const Node& current) argument
176 firstAncestorOrSelfTemplate(NodeType& current) argument
185 lastChildTemplate(NodeType& current) argument
195 lastChild(const ContainerNode& current, MatchFunc isMatch) argument
205 firstWithinTemplate(NodeType& current) argument
215 firstWithin(const ContainerNode& current, MatchFunc isMatch) argument
225 lastWithinTemplate(NodeType& current) argument
235 lastWithin(const ContainerNode& current, MatchFunc isMatch) argument
245 nextTemplate(NodeType& current) argument
255 nextTemplate(NodeType& current, const Node* stayWithin) argument
265 next(const ContainerNode& current, const Node* stayWithin, MatchFunc isMatch) argument
274 previous(const Node& current) argument
283 previous(const Node& current, const Node* stayWithin) argument
293 previous(const ContainerNode& current, const Node* stayWithin, MatchFunc isMatch) argument
302 nextSkippingChildren(const Node& current) argument
311 nextSkippingChildren(const Node& current, const Node* stayWithin) argument
320 previousIncludingPseudo(const Node& current, const Node* stayWithin) argument
329 nextIncludingPseudo(const Node& current, const Node* stayWithin) argument
338 nextIncludingPseudoSkippingChildren(const Node& current, const Node* stayWithin) argument
347 pseudoAwarePreviousSibling(const Node& current) argument
356 previousSibling(const Node& current) argument
366 previousSibling(const Node& current, MatchFunc isMatch) argument
375 nextSibling(const Node& current) argument
385 nextSibling(const Node& current, MatchFunc isMatch) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScanner.h44 // against the characters ahead of the current input pointer, and returns true
100 // current input pointer.
188 const LChar* current = m_data.characters8; local
189 ::skipWhile<LChar, LCharPredicateAdapter<characterPredicate> >(current, m_end.characters8);
190 return Run(position(), current, m_is8Bit);
192 const UChar* current = m_data.characters16; local
193 ::skipWhile<UChar, characterPredicate>(current, m_end.characters16);
194 return Run(position(), reinterpret_cast<Position>(current), m_is8Bit);
201 const LChar* current = m_data.characters8; local
202 ::skipUntil<LChar, LCharPredicateAdapter<characterPredicate> >(current, m_en
205 const UChar* current = m_data.characters16; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DTableSectionPainter.cpp80 RenderTableSection::CellStruct& current = m_renderTableSection.cellAt(row, col); local
81 RenderTableCell* cell = current.primaryCell();
95 RenderTableSection::CellStruct& current = m_renderTableSection.cellAt(r, c); local
96 RenderTableCell* cell = current.primaryCell();
122 RenderTableSection::CellStruct& current = m_renderTableSection.cellAt(r, c); local
123 if (!current.hasCells())
125 for (unsigned i = 0; i < current.cells.size(); ++i) {
126 if (overflowingCells.contains(current.cells[i]))
129 if (current.cells[i]->rowSpan() > 1 || current
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathStringSource.cpp60 static bool parseSVGSegmentTypeHelper(const CharacterType*& current, SVGPathSegType& pathSegType) argument
62 switch (*(current++)) {
135 static bool nextCommandHelper(const CharacterType*& current, SVGPathSegType previousCommand, SVGPathSegType& nextCommand) argument
137 // Check for remaining coordinates in the current command.
138 if ((*current == '+' || *current == '-' || *current == '.' || (*current >= '0' && *current <= '9'))
227 static bool parseArcToSegmentHelper(const CharacterType*& current, cons argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DCallbackStack.cpp130 for (Block* current = m_first->next(); current; current = next) {
131 next = current->next();
132 delete current;
220 Block* current = m_first; local
221 for (size_t size = m_first->size(); size < minSize; size += current->size()) {
222 if (!current->next())
224 current = current
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiRunList.h105 Run* current = 0; local
108 current = next;
109 next = current->next();
112 if (!current)
115 current->m_next = run->m_next;
129 Run* current = m_firstRun; local
130 Run* next = current->next();
132 current = next;
133 next = current->next();
136 current
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTreeNode.h159 inline typename TreeNode<T>::NodeType* traverseNext(const TreeNode<T>* current, const TreeNode<T>* stayWithin = 0) argument
161 if (typename TreeNode<T>::NodeType* next = current->firstChild())
163 if (current == stayWithin)
165 if (typename TreeNode<T>::NodeType* next = current->next())
167 for (typename TreeNode<T>::NodeType* parent = current->parent(); parent; parent = parent->parent()) {
178 inline typename TreeNode<T>::NodeType* traverseFirstPostOrder(const TreeNode<T>* current) argument
180 typename TreeNode<T>::NodeType* first = current->here();
187 inline typename TreeNode<T>::NodeType* traverseNextPostOrder(const TreeNode<T>* current, const TreeNode<T>* stayWithin = 0) argument
189 if (current == stayWithin)
192 typename TreeNode<T>::NodeType* next = current
[all...]
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dftgloadr.h88 FT_GlyphLoadRec current; member in struct:FT_GlyphLoaderRec_
126 (_loader)->current.outline.n_points + \
131 (_loader)->current.outline.n_contours + \
147 /* prepare a glyph loader, i.e. empty the current glyph */
151 /* add the current glyph to the base glyph */
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duiter.h59 * when moving relative to the current index after a setState()
60 * when the current UTF-16 index is not known.
63 * just to get the current/limit/length index after moving relative to it.
89 * Gets the current position, or the start or limit of the
97 * @param origin get the 0, start, limit, length, or current index
112 * Moves the current position relative to the start or limit of the
113 * iteration range, or relative to the current position itself.
123 * relative to the current position after setState() was called,
132 * @param origin move relative to the 0, start, limit, length, or current index
147 * Check if current() an
425 UCharIteratorCurrent *current; member in struct:UCharIterator
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dtrionan.c200 unsigned char current; local
206 current = ((unsigned char *)&number)[TRIO_DOUBLE_INDEX(i)];
208 &= ((current & ieee_754_exponent_mask[i]) == ieee_754_exponent_mask[i]);
209 *has_mantissa |= (current & ieee_754_mantissa_mask[i]);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_optimize.c200 static void i915_fpc_optimize_mov_after_alu(union i915_full_token* current, union i915_full_token* next) argument
202 if ( current->Token.Type == TGSI_TOKEN_TYPE_INSTRUCTION &&
204 op_commutes(current->FullInstruction.Instruction.Opcode) &&
205 current->FullInstruction.Instruction.Saturate == next->FullInstruction.Instruction.Saturate &&
207 same_dst_reg(&next->FullInstruction.Dst[0], &current->FullInstruction.Dst[0]) &&
208 same_src_reg(&next->FullInstruction.Src[0], &current->FullInstruction.Src[1]) &&
209 !same_src_dst_reg(&next->FullInstruction.Src[0], &current->FullInstruction.Dst[0]) &&
210 is_unswizzled(&current->FullInstruction.Src[0], current->FullInstruction.Dst[0].Register.WriteMask) &&
211 is_unswizzled(&current
259 union i915_full_token current; local
282 i915_fpc_optimize_useless_mov_after_inst(union i915_full_token* current, union i915_full_token* next) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program.c60 struct rc_instruction * current = inst; local
68 if (t->function(c, current, t->userData))
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_shader.h43 struct si_pipe_shader *current; member in struct:si_pipe_shader_selector
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_state_sampler.c47 struct sp_sampler_variant *current; member in struct:sp_sampler
282 if (sampler->current &&
283 key.value == sampler->current->key.value) {
284 v = sampler->current;
299 sampler->current = v;
/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/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsSimplify.cpp24 SkOpSegment* current = FindSortableTop(contourList, SkOpAngle::kUnaryWinding, &firstContour, local
26 if (!current) {
39 if (current->activeWinding(index, endIndex)) {
41 if (!unsortable && current->done()) {
44 SkASSERT(unsortable || !current->done());
47 SkOpSegment* next = current->findNextWinding(&chase, &nextStart, &nextEnd,
51 && current->verb() != SkPath::kLine_Verb
53 current->addCurveTo(index, endIndex, simple, true);
59 SkDebugf("%s current id=%d from=(%1.9g,%1.9g) to=(%1.9g,%1.9g)\n", __FUNCTION__,
60 current
106 SkOpSegment* current; local
184 SkOpContour* current = *currentPtr++; local
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dwin32toolhelp.h83 const typename Traits::Type& current() const { function in class:rtc::ToolhelpEnumeratorBase
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dsmooth.c29 int16_t *current, /* (i) the un enhanced residual for
49 max1=WebRtcSpl_MaxAbsValueW16(current, ENH_BLOCKL);
57 w00=WebRtcSpl_DotProductWithScale(current,current,ENH_BLOCKL,scale);
59 w10=WebRtcSpl_DotProductWithScale(surround,current,ENH_BLOCKL,scale);
93 errs = WebRtcIlbcfix_Smooth_odata(odata, current, surround, C);
207 current, B, 14,
27 WebRtcIlbcfix_Smooth( int16_t *odata, int16_t *current, int16_t *surround ) argument
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dscreen_capturer_win_gdi.cc100 // current screens.
124 // Emit the current frame.
173 // Switch to the desktop receiving user input if different from the current
245 // If the current buffer is from an older generation then allocate a new one.
265 DesktopFrameWin* current = static_cast<DesktopFrameWin*>( local
267 HGDIOBJ previous_object = SelectObject(memory_dc_, current->bitmap());
309 // Compare the current cursor with the last one we sent to the client. If
/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/ui/message_center/views/
H A Dnotification_view_unittest.cc75 std::vector<views::View*>::iterator current = vertical_order.begin(); local
76 std::vector<views::View*>::iterator last = current++;
77 while (current != vertical_order.end()) {
82 gfx::Point current_point = (*current)->bounds().origin();
84 (*current), notification_view(), &current_point);
87 last = current++;
/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 Doptimizing-compiler-thread.cc298 OptimizedCompileJob* current = osr_buffer_[i]; local
299 if (current != NULL &&
300 current->IsWaitingForInstall() &&
301 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
304 return current;
315 OptimizedCompileJob* current = osr_buffer_[i]; local
316 if (current != NULL &&
317 current->info()->HasSameOsrEntry(function, osr_ast_id)) {
318 return !current->IsWaitingForInstall();
328 OptimizedCompileJob* current local
[all...]

Completed in 763 milliseconds

1234567891011>>