HomeSort by relevance Sort by last modified time
    Searched full:replacement (Results 576 - 600 of 2383) sorted by null

<<21222324252627282930>>

  /external/qemu/distrib/libpng-1.2.46/
pngwio.c 17 * functions, but rather write replacement functions and then change
44 * not writing to a standard C stream, you should create a replacement
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format_all.hpp 200 // Instantiate replacement storage
204 // Initialize replacement iterators
  /external/chromium_org/third_party/skia/src/utils/
SkParseColor.cpp 184 int replacement = 0; local
199 replacement += sizeof(int);
214 replacement += sizeof(int);
219 SkDebugf("// original = %d : replacement = %d\n", originalSize, replacement);
367 }; // original = 2505 : replacement = 1616
  /external/chromium_org/v8/src/
string.js 415 // Inside a nested replace (replace called from the replacement function
417 // back due to an exception in a replacement function. Create a new
500 var replacement;
506 replacement = %_CallFunction(receiver, s, index, subject, replace);
515 replacement = %Apply(replace, receiver, parameters, 0, j + 2);
518 result += replacement; // The add method converts to string if necessary.
  /external/skia/src/utils/
SkParseColor.cpp 184 int replacement = 0; local
199 replacement += sizeof(int);
214 replacement += sizeof(int);
219 SkDebugf("// original = %d : replacement = %d\n", originalSize, replacement);
367 }; // original = 2505 : replacement = 1616
  /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...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
replace.h 17 // Functions and classes for the recursive replacement of Fsts.
514 // ReplaceFst supports dynamic replacement of arcs in one Fst with
515 // another Fst. This replacement is recursive. ReplaceFst can be used
659 // This version writes the result of replacement to an output MutableFst.
661 // Replace supports replacement of arcs in one Fst with another
662 // Fst. This replacement is recursive. Replace takes an array of
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sgmllib.py 408 replacement = self.convert_charref(name)
409 if replacement is None:
412 self.handle_data(replacement)
432 replacement = self.convert_entityref(name)
433 if replacement is None:
436 self.handle_data(replacement)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sgmllib.py 408 replacement = self.convert_charref(name)
409 if replacement is None:
412 self.handle_data(replacement)
432 replacement = self.convert_entityref(name)
433 if replacement is None:
436 self.handle_data(replacement)
  /libcore/luni/src/main/java/java/io/
ObjectOutputStream.java 58 * If object replacement is enabled or not
426 * Enables object replacement for this stream. By default this is not
431 * {@code true} to enable object replacement; {@code false} to
521 * the original object for which a replacement may be defined.
522 * @return the replacement object for {@code object}.
524 * if any I/O error occurs while creating the replacement
531 // By default no object replacement. Subclasses can override
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
EscapeAnalysis.java 89 * NONE - Object does not escape, and is eligible for scalar replacement.
474 * Performs scalar replacement on all eligible arrays.
517 // Propagate and remove extra moves added by scalar replacement
641 * Identifies extra moves added by scalar replacement and propagates the
658 // Ignore moves that weren't added due to scalar replacement
688 * Runs escape analysis and scalar replacement of arrays.
721 // Perform scalar replacement for arrays
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
EscapeAnalysis.java 90 * NONE - Object does not escape, and is eligible for scalar replacement.
475 * Performs scalar replacement on all eligible arrays.
518 // Propagate and remove extra moves added by scalar replacement
642 * Identifies extra moves added by scalar replacement and propagates the
659 // Ignore moves that weren't added due to scalar replacement
689 * Runs escape analysis and scalar replacement of arrays.
722 // Perform scalar replacement for arrays
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac_unittest.cc 459 GURL::Replacements replacement; local
461 replacement.SetPathStr(new_value);
462 form->origin = form->origin.ReplaceComponents(replacement);
467 GURL::Replacements replacement; local
469 replacement.SetPortStr(new_value);
471 form->signon_realm = signon_gurl.ReplaceComponents(replacement).spec();
476 GURL::Replacements replacement; local
478 replacement.SetPathStr(new_value);
480 form->signon_realm = signon_gurl.ReplaceComponents(replacement).spec();
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_contents.cc 209 PrerenderContents* contents, PrerenderContents* replacement) {
263 // Erase all but the first alias URL; the replacement has adopted the
541 PrerenderContents* replacement) {
544 replacement));
722 // replacement by MoveEntryToPendingDelete, NotifyPrerenderStop will
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
SourceFrame.js 570 * @param {string} replacement
572 replaceAllWith: function(query, replacement)
580 text = text.replace(regex, replacement);
582 text = text.replace(regex, function() { return replacement; });
592 var replacementLineEndings = replacement.lineEndings();
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
neteq_rtpplay.cc 156 // Check if a replacement audio file was provided, and if so, open it.
203 // Set up variables for audio replacement if needed.
539 // RED nor DTMF is supported for replacement.
540 std::cerr << "Codec not supported for audio replacement." <<
548 std::cerr << "Could no read replacement audio file." << std::endl;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
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);
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsn.java 212 * replacement, and ignores registers that are already compatible.
245 * @return {@code non-null;} the replacement
309 * @return {@code non-null;} the replacement
  /external/apache-http/src/org/apache/commons/logging/impl/
WeakHashtable.java 33 * This is <em>not</em> intended to be a general purpose hash table replacement.
34 * This implementation is also tuned towards a particular purpose: for use as a replacement
40 * <strong>Usage:</strong> typical use case is as a drop-in replacement
  /external/bison/darwin-lib/sys/
wait.h 58 * For providing a replacement for a function that exists on all platforms,
77 * For providing a replacement for a function that exists on some platforms
110 declares a replacement function, named rpl_func, with the given prototype,
  /external/bison/darwin-lib/
time.h 64 * For providing a replacement for a function that exists on all platforms,
83 * For providing a replacement for a function that exists on some platforms
116 declares a replacement function, named rpl_func, with the given prototype,
  /external/bison/linux-lib/sys/
wait.h 58 * For providing a replacement for a function that exists on all platforms,
77 * For providing a replacement for a function that exists on some platforms
110 declares a replacement function, named rpl_func, with the given prototype,
  /external/bison/linux-lib/
time.h 64 * For providing a replacement for a function that exists on all platforms,
83 * For providing a replacement for a function that exists on some platforms
116 declares a replacement function, named rpl_func, with the given prototype,
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_tts.js 250 // use to look up the replacement in our dictionary.
446 * equivalents. This replacement only occurs for single character utterances.
490 * Pronunciation dictionary. Each key must be lowercase, its replacement

Completed in 1191 milliseconds

<<21222324252627282930>>