HomeSort by relevance Sort by last modified time
    Searched refs:replacement (Results 176 - 200 of 446) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
mesadef.py 53 print '; as a drop-in replacement.'
  /external/chromium_org/third_party/skia/src/core/
SkBitmapHeap.h 265 LookupEntry* findEntryToReplace(const SkBitmap& replacement);
SkBitmapHeap.cpp 168 SkBitmapHeap::LookupEntry* SkBitmapHeap::findEntryToReplace(const SkBitmap& replacement) {
181 if (replacement.getGenerationID() == iter->fGenerationId) {
  /external/chromium_org/v8/tools/
js2c.py 104 replacement = expander(str.strip())
105 mapping[macro.args[arg_index[0]]] = replacement
231 replacement = const_match.group(2)
236 re.sub(name_pattern, replacement, lines[const_match.end():]))
  /external/harfbuzz_ng/src/
hb-buffer-private.hh 55 hb_codepoint_t replacement; /* U+FFFD or something else. */ member in struct:hb_buffer_t
hb-buffer.h 196 hb_codepoint_t replacement);
  /external/mesa3d/src/mapi/glapi/gen/
mesadef.py 53 print '; as a drop-in replacement.'
  /external/skia/src/core/
SkBitmapHeap.h 265 LookupEntry* findEntryToReplace(const SkBitmap& replacement);
SkBitmapHeap.cpp 168 SkBitmapHeap::LookupEntry* SkBitmapHeap::findEntryToReplace(const SkBitmap& replacement) {
181 if (replacement.getGenerationID() == iter->fGenerationId) {
  /external/valgrind/main/VEX/priv/
host_generic_regs.h 208 HReg replacement[N_HREG_REMAP]; member in struct:__anon36518
  /libcore/luni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 931 RunnableScheduledFuture<?> replacement = queue[s]; local
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider.cc 353 results[i].replacement = last_results_[i].replacement;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.h 238 virtual void setRangeText(const String& replacement, ExceptionState&) OVERRIDE FINAL;
239 virtual void setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState&) OVERRIDE FINAL;
HTMLTextFormControlElement.cpp 207 void HTMLTextFormControlElement::setRangeText(const String& replacement, ExceptionState& exceptionState)
209 setRangeText(replacement, selectionStart(), selectionEnd(), String(), exceptionState);
212 void HTMLTextFormControlElement::setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState& exceptionState)
223 unsigned replacementLength = replacement.length();
231 text.replace(start, end - start, replacement);
233 text.insert(replacement, start);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
uregex.h     [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1118.js 30 // An exception thrown in a function optimized by on-stack replacement (OSR)
  /external/icu/icu4c/source/i18n/unicode/
uregex.h     [all...]
  /external/chromium_org/v8/src/compiler/
simplified-lowering.cc 109 Node* replacement = *(++i); local
110 node->ReplaceUses(replacement);
739 void DeferReplacement(Node* node, Node* replacement) {
740 if (replacement->id() < count_) {
742 node->ReplaceUses(replacement);
749 replacements_.push_back(replacement);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 413 BuilderOffsetInstruction replacement;
415 replacement = new BuilderInstruction30t(Opcode.GOTO_32,
418 replacement = new BuilderInstruction20t(Opcode.GOTO_16,
421 replaceInstruction(location.index, replacement);
429 BuilderOffsetInstruction replacement = new BuilderInstruction30t(Opcode.GOTO_32,
431 replaceInstruction(location.index, replacement);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetTest.java 59 assertNotNull(enc.replacement());
139 // We have text either side of the replacement character, because all kinds of errors
140 // could lead to a replacement character being returned.
146 // We have text either side of the replacement character, because all kinds of errors
147 // could lead to a replacement character being returned.
153 // We have text either side of the replacement character, because all kinds of errors
154 // could lead to a replacement character being returned.
175 // This test uses REPLACE mode, so we get the U+FFFD replacement character in the result.
190 // This test uses REPLACE mode, so we get the U+FFFD replacement character in the result.
224 // This test uses REPLACE mode, so we get the U+FFFD replacement character in the result
    [all...]
CharsetDecoderTest.java 85 assertEquals(decoder.replacement(), "\ufffd");
195 assertSame("a", decoder.replacement());
238 String replaceStr = decoder.replacement() + getString();
429 assertCharBufferValue(decoder.replacement() + getString(), out);
482 assertCharBufferValue(decoder.replacement() + getString(), out);
  /ndk/sources/host-tools/sed-4.2.1/sed/
compile.c 758 static struct replacement *new_replacement P_((char *, size_t,
760 static struct replacement *
766 struct replacement *r = OB_MALLOC(&obs, 1, struct replacement);
788 struct replacement root;
789 struct replacement *tail;
879 sub->replacement = root.next;
    [all...]
  /external/icu/icu4c/source/i18n/
rematch.cpp 286 const UnicodeString &replacement,
290 utext_openConstUnicodeString(&replacementText, &replacement, &status);
309 UText *replacement,
350 // scan the replacement text, looking for substitutions ($n) and \escapes.
353 UTEXT_SETNATIVEINDEX(replacement, 0);
354 UChar32 c = UTEXT_NEXT32(replacement);
362 c = UTEXT_CURRENT32(replacement);
370 struct URegexUTextUnescapeCharContext context = U_REGEX_UTEXT_UNESCAPE_CONTEXT(replacement);
387 (void)UTEXT_PREVIOUS32(replacement);
389 utext_moveIndex32(replacement, offset - context.lastOffset - 1)
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac_unittest.cc 470 GURL::Replacements replacement; local
472 replacement.SetPathStr(new_value);
473 form->origin = form->origin.ReplaceComponents(replacement);
478 GURL::Replacements replacement; local
480 replacement.SetPortStr(new_value);
482 form->signon_realm = signon_gurl.ReplaceComponents(replacement).spec();
487 GURL::Replacements replacement; local
489 replacement.SetPathStr(new_value);
491 form->signon_realm = signon_gurl.ReplaceComponents(replacement).spec();
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_contents.cc 210 PrerenderContents* contents, PrerenderContents* replacement) {
263 // Erase all but the first alias URL; the replacement has adopted the
541 PrerenderContents* replacement) {
544 replacement));
705 // replacement by MoveEntryToPendingDelete, NotifyPrerenderStop will
    [all...]

Completed in 774 milliseconds

1 2 3 4 5 6 78 91011>>