Searched defs:current (Results 251 - 275 of 808) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerClipper.cpp351 const RenderLayer* current = m_renderer.layer(); local
352 // FIXME: getting rid of current->hasCompositedLayerMapping() here breaks the
356 if (current->isPaintInvalidationContainer() || current->hasCompositedLayerMapping())
357 return const_cast<RenderLayer*>(current);
359 while (current) {
360 if (current->isRootLayer())
361 return const_cast<RenderLayer*>(current);
363 current = current
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRootInlineBox.cpp226 SVGTextLayoutAttributes* current = attributes[i]; local
227 if (!first && firstContext == current->context())
228 first = current;
229 if (!last && lastContext == current->context())
230 last = current;
/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/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilder.cpp229 // If the buffer is valid it must be at least as long as the current builder contents!
248 // If the buffer is valid it must be at least as long as the current builder contents!
282 // If the buffer is valid it must be at least as long as the current builder contents!
353 UChar* current = buffer + length; local
354 while (current != buffer)
355 *--current = *--sourceEnd;
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Dctx.c77 BN_POOL_ITEM *head, *current, *tail; member in struct:bignum_pool
239 p->head = p->current = p->tail = NULL;
254 p->current = p->head->next;
256 p->head = p->current;
279 p->head = p->current = p->tail = item;
283 p->current = item;
293 p->current = p->head;
295 p->current = p->current->next;
298 return p->current
[all...]
/external/chromium_org/third_party/codesighs/
H A Dnm2tsv.c287 Switch* current = NULL; local
311 current = NULL;
335 current = gSwitches[switchLoop];
336 current->mValue = inArgv[loop];
341 current = gSwitches[switchLoop];
354 else if(NULL == current)
365 if(current == &gInputSwitch)
374 outOptions->mInput = fopen(current->mValue, "r");
378 ERROR_REPORT(retval, current->mValue, "Unable to open input file.");
382 outOptions->mInputName = strdup(current
[all...]
/external/chromium_org/third_party/cython/src/Tools/
H A Dcython-mode.el29 (let ((cy-buffer (current-buffer)))
30 (with-current-buffer
81 "Return non-nil if current line is a comment."
144 (let ((ci (current-indentation))
159 (let ((in (current-indentation)))
176 ;; Go to start of current block and check whether it's at top
184 (if (zerop (current-indentation))
202 (let ((block-indentation (current-indentation)))
206 (or (and (> (current-indentation) block-indentation)
226 (defun cython-current
[all...]
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffgload.h45 /* memory :: The current memory object. */
47 /* face :: The current face object. */
49 /* glyph :: The current glyph slot. */
51 /* loader :: The current glyph loader. */
55 /* current :: The current glyph outline. */
88 FT_Outline* current; member in struct:CFF_Builder_
194 CFF_SubFont current_subfont; /* for current glyph_index */
/external/chromium_org/third_party/icu/source/common/
H A Dnormlzr.cpp246 * Return the current character in the normalized text.
248 UChar32 Normalizer::current() { function in class:Normalizer
319 * Retrieve the current iteration position in the input text that is
H A Duchriter.cpp142 UCharCharacterIterator::current() const { function in class:UCharCharacterIterator
155 /* make current() return DONE */
267 /* make current() return DONE */
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcpdtrtst.cpp333 int32_t current = 0; local
336 str.extractBetween(last, i, result[current]);
338 current++;
341 str.extractBetween(last, i, result[current]);
/external/chromium_org/third_party/libsrtp/srtp/crypto/test/
H A Dcipher_driver.c292 uint8_t buffer0[buflen], buffer1[buflen], *current, *end; local
324 current = buffer1;
326 while (current < end) {
332 if (current + len > end)
333 len = end - current;
335 status = cipher_encrypt(c, current, &len);
340 current += len;
343 if (current == end)
/external/chromium_org/third_party/libxslt/libxslt/
H A Dkeys.c205 * @cur: the current pointer
206 * @end: the current offset
230 * @cur: the current pointer
231 * @end: the current offset
279 int current, end, start, i = 0; local
303 current = end = 0;
304 while (match[current] != 0) {
305 start = current;
306 while (IS_BLANK_CH(match[current]))
307 current
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_cache.c139 struct util_cache_entry *current = &cache->entries[i]; local
141 if (current->state == FILLED) {
142 if (current->hash == hash &&
143 cache->compare(key, current->key) == 0)
144 return current;
148 first_unfilled = current;
150 if (current->state == EMPTY)
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup_context.h90 struct lp_scene *scene; /**< current scene being built */
125 struct lp_rast_state current; /**< currently set state */ member in struct:lp_setup_context::__anon13812
131 struct pipe_resource *current; member in struct:lp_setup_context::__anon13813
137 struct pipe_blend_color current; member in struct:lp_setup_context::__anon13814
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
H A Dnouveau_video.h39 unsigned past, future, current; member in struct:nouveau_decoder
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dapi_path.c96 VGbitfield current; local
105 current = path_capabilities(p);
106 path_set_capabilities(p, (current &
H A Dshaders_cache.c105 static INLINE VGint range_min(VGint min, VGint current) argument
108 min = current;
110 min = MIN2(min, current);
114 static INLINE VGint range_max(VGint max, VGint current) argument
116 return MAX2(max, current);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_function_detect_recursion.cpp174 : current(NULL)
201 this->current = this->get_function(sig);
208 this->current = NULL;
214 /* At global scope this->current will be NULL. Since there is no way to
218 if (this->current == NULL)
227 this->current->callees.push_tail(node);
232 node->func = this->current;
237 function *current; member in class:has_recursion_visitor
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_common_context.c223 radeonContextPtr current = ctx ? RADEON_CONTEXT(ctx) : NULL; local
229 if (radeon == current) {
283 /* Unset current context and dispath table */
556 /* Force the context `c' to be the current context and associate with it
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_common_context.c223 radeonContextPtr current = ctx ? RADEON_CONTEXT(ctx) : NULL; local
229 if (radeon == current) {
283 /* Unset current context and dispath table */
556 /* Force the context `c' to be the current context and associate with it
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_light.c51 * Information for updating current material attributes from vertex color,
57 GLfloat *current; /* points to material attribute to update */ member in struct:material_cursor
203 COPY_CLEAN_4V(store->mat[i].current, store->mat[i].size, store->mat[i].ptr);
242 * some values (ptr, stride, size, current) that we'll need in
253 store->mat[j].current = ctx->Light.Material.Attrib[attr];
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_save.h57 * On executing this list, the 'current' values may be updated with
71 * map/unmap of the VBO when updating GL current data.
79 GLboolean dangling_attr_ref; /* current attr implicitly referenced
149 GLfloat vertex[VBO_ATTRIB_MAX*4]; /* current values */
159 GLfloat *current[VBO_ATTRIB_MAX]; /* points into ctx->ListState */ member in struct:vbo_save_context
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dplarena.h85 PLArena *current; /* arena from which to allocate space */ member in struct:PLArenaPool
110 PLArena *_a = (pool)->current; \
124 PLArena *_a = (pool)->current; \
138 #define PL_ARENA_MARK(pool) ((void *) (pool)->current->avail)
156 PLArena *_a = (pool)->current; \
176 if ((pool)->current == (a)) (pool)->current = &(pool)->first; \
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dtokenizer.h129 // Get the current token. This is updated when Next() is called. Before
130 // the first call to Next(), current() has type TYPE_START and no contents.
131 const Token& current();
133 // Return the previous token -- i.e. what current() returned before the
235 Token current_; // Returned by current().
254 // position within the current buffer where recording started.
278 // Called when the current character is the first character of a new
281 // Called when the current character is the first character after the
286 // Convenience method to add an error at the current line and column.
341 // Returns true if the current characte
367 inline const Tokenizer::Token& Tokenizer::current() { function in class:google::protobuf::io::Tokenizer
[all...]

Completed in 1944 milliseconds

<<11121314151617181920>>