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

<<11121314151617181920>>

  /external/chromium_org/third_party/angle/src/compiler/translator/
Intermediate.cpp 773 #define REPLACE_IF_IS(node, type, original, replacement) \
775 node = static_cast<type *>(replacement); \
780 TIntermNode *original, TIntermNode *replacement)
782 REPLACE_IF_IS(init, TIntermNode, original, replacement);
783 REPLACE_IF_IS(cond, TIntermTyped, original, replacement);
784 REPLACE_IF_IS(expr, TIntermTyped, original, replacement);
785 REPLACE_IF_IS(body, TIntermNode, original, replacement);
810 TIntermNode *original, TIntermNode *replacement)
812 REPLACE_IF_IS(expression, TIntermTyped, original, replacement);
825 TIntermNode *original, TIntermNode *replacement)
    [all...]
intermediate.h 247 TIntermNode *original, TIntermNode *replacement) = 0;
327 TIntermNode *original, TIntermNode *replacement);
361 TIntermNode *original, TIntermNode *replacement);
479 TIntermNode *original, TIntermNode *replacement);
513 TIntermNode *original, TIntermNode *replacement);
549 TIntermNode *original, TIntermNode *replacement);
599 TIntermNode *original, TIntermNode *replacement);
  /external/chromium_org/third_party/mesa/src/src/glsl/
list.h 173 void replace_with(exec_node *replacement)
175 replacement->prev = this->prev;
176 replacement->next = this->next;
178 this->prev->next = replacement;
179 this->next->prev = replacement;
  /external/chromium_org/ui/views/controls/webview/
webview.cc 55 void WebView::SetWebContents(content::WebContents* replacement) {
56 if (replacement == web_contents())
59 WebContentsObserver::Observe(replacement);
60 // web_contents() now returns |replacement| from here onwards.
61 if (wc_owner_ != replacement)
  /external/mesa3d/src/glsl/
list.h 173 void replace_with(exec_node *replacement)
175 replacement->prev = this->prev;
176 replacement->next = this->next;
178 this->prev->next = replacement;
179 this->next->prev = replacement;
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 34 * another given replacement instruction sequence. The arguments of the
100 * @param replacementInstructions the replacement instruction sequence.
178 System.out.println(" Replacement:");
233 * This class creates replacement instructions for matched sequences, with
243 * Creates the replacement instruction for the given index in the
  /external/chromium_org/third_party/bintrees/bintrees/
ctrees.c 155 node_t *node, *parent, *replacement; local
170 /* find replacement node: smallest key in right-subtree */
173 replacement = RIGHT_NODE(node);
174 while (LEFT_NODE(replacement) != NULL) {
175 parent = replacement;
177 replacement = LEFT_NODE(replacement);
179 LINK(parent, direction) = RIGHT_NODE(replacement);
181 ct_swap_data(node, replacement);
182 node = replacement; /* delete replacement node *
    [all...]
  /external/chromium_org/content/browser/
cross_site_transfer_browsertest.cc 272 // Navigate to a page on A.com with entry replacement. This navigation is
293 // replacement). This will still perform a double process-swap as above, via
335 // Navigate in-process with entry replacement. It will then be transferred
346 // Now navigate as before, but without replacement.
378 // replacement. This will switch processes via OpenURL twice. First to A.com,
397 // Now repeat without replacement.
440 // Navigate to a page on A.com with entry replacement. This navigation is
  /external/chromium_org/content/common/
sandbox_mac.mm 459 SandboxSubstring& replacement = replacement_it->second;
460 switch (replacement.type()) {
462 new_piece = replacement.value();
466 if (!QuotePlainString(replacement.value(), &new_piece))
467 FatalStringQuoteException(replacement.value());
471 if (!QuoteStringForRegex(replacement.value(), &new_piece))
472 FatalStringQuoteException(replacement.value());
  /external/clang/utils/
FuzzTest 235 group.add_option("", "--replacement-chars", dest="replacement_chars",
238 group.add_option("", "--replacement-string", dest="replacement_strings",
239 action="append", help="Add a replacement string to use",
241 group.add_option("", "--replacement-list", dest="replacement_lists",
242 help="Add a list of replacement strings (one per line)",
301 # Get the list if insert/replacement strings.
314 # Unique and order the replacement list.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetEncoderTest.java 68 byte[] replacement = encoder.replacement();
69 unibytesWithRep = new byte[replacement.length + unibytes.length];
70 System.arraycopy(replacement, 0, unibytesWithRep, 0,
71 replacement.length);
72 System.arraycopy(unibytes, 0, unibytesWithRep, replacement.length,
95 assertTrue(Arrays.equals(encoder.replacement(), defaultReplacement));
97 assertTrue(Arrays.equals(encoder.replacement(), specifiedReplacement));
114 assertEquals(new String(encoder.replacement()), new String(
181 assertSame(ba, ec.replacement());
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
uregex.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
uregex.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.cpp     [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
xmlparser.cpp 587 UnicodeString replacement; local
596 replacement.setTo((UChar)x_AMP);
598 replacement.setTo((UChar)x_LT);
600 replacement.setTo((UChar)x_GT);
602 replacement.setTo((UChar)x_APOS);
604 replacement.setTo((UChar)x_QUOT);
612 replacement.setTo(val);
620 replacement.setTo(val);
625 replacement = mAmps.group((int32_t)0, status);
627 mAmps.appendReplacement(result, replacement, status)
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
preamble_patcher.h 55 // trampoline to jump to the replacement function if it is further than 2GB
192 // @param replacement_function Your replacement function which
196 // pointer that can be used (e.g. in the replacement function) to call the
241 // replace the target function. The replacement function must have
246 // pointer that can be used (e.g. in the replacement function) to call the
250 // pointer that can be used (e.g. in the replacement function) to call the
315 // replacement function is > +-2GB from target. This means that we only need
341 // In 64-bit mode, the replacement function must be within 2GB of the original
373 // replace the target function. The replacement function must have
404 // replace the target function. The replacement function must hav
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
preamble_patcher.h 55 // trampoline to jump to the replacement function if it is further than 2GB
192 // @param replacement_function Your replacement function which
196 // pointer that can be used (e.g. in the replacement function) to call the
241 // replace the target function. The replacement function must have
246 // pointer that can be used (e.g. in the replacement function) to call the
250 // pointer that can be used (e.g. in the replacement function) to call the
315 // replacement function is > +-2GB from target. This means that we only need
341 // In 64-bit mode, the replacement function must be within 2GB of the original
373 // replace the target function. The replacement function must have
404 // replace the target function. The replacement function must hav
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
xmlparser.cpp 587 UnicodeString replacement; local
596 replacement.setTo((UChar)x_AMP);
598 replacement.setTo((UChar)x_LT);
600 replacement.setTo((UChar)x_GT);
602 replacement.setTo((UChar)x_APOS);
604 replacement.setTo((UChar)x_QUOT);
612 replacement.setTo(val);
620 replacement.setTo(val);
625 replacement = mAmps.group((int32_t)0, status);
627 mAmps.appendReplacement(result, replacement, status)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 443 // and such; to do the replacement, the argument must have type i8*.
464 Instruction *Replacement = Inst;
470 if (Replacement->getType() != UseTy)
471 Replacement = new BitCastInst(Replacement, UseTy, "",
483 PHI->setIncomingValue(i, Replacement);
486 if (Replacement->getType() != UseTy)
487 Replacement = new BitCastInst(Replacement, UseTy, "",
489 U.set(Replacement);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
line-map.h 111 /* The number of tokens inside the replacement-list of MACRO. */
135 replacement-list of PLUS where the macro parameters are replaced
136 with their arguments. So the replacement-list of PLUS is made of
182 macro replacement-list, at a macro expansion point. E.g, in:
188 locations of the tokens of the macro replacement-list (i.e, A + B)
197 replaces it with the tokens of its replacement-list: 1 + 2. A macro
469 replacement-lists present at a macro expansion point.
497 replacement-list at macro expansion point. */
510 that is part of a macro replacement-list defined in a system
516 from a macro replacement-list at a macro expansion point, FALS
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
cppinternals.info 327 The tokens forming a macro's replacement list are collected by the
447 is all you need to get the replacement list of a macro.
455 rapid replacement of parameters with their arguments during expansion.
468 normally holds the unexpanded replacement list of the innermost macro
485 replacement list of that macro. In the case of function-like macros,
486 `enter_macro_context' also replaces any parameters in the replacement
506 Scanning the replacement list for macros to expand
510 with their possibly-expanded arguments, the replacement list is scanned
511 for nested macros. Further, any identifiers in the replacement list
523 parameter in the macro's replacement list, the subsequent token happen
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
toolbar_model_unittest.cc 32 // The expected text to display when both forms of URL replacement are
253 // Test that we only replace URLs when query extraction and URL replacement
279 // Disabling URL replacement should reset to only showing URLs.
315 // Disabling URL replacement should reset to only showing URLs.
402 // replacement should be performed.
414 // Disabling URL replacement should reset to only showing URLs.
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 206 void HTMLTextFormControlElement::setRangeText(const String& replacement, ExceptionState& exceptionState)
208 setRangeText(replacement, selectionStart(), selectionEnd(), String(), exceptionState);
211 void HTMLTextFormControlElement::setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode, ExceptionState& exceptionState)
222 unsigned replacementLength = replacement.length();
230 text.replace(start, end - start, replacement);
232 text.insert(replacement, start);
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.cpp 300 Node* replacement = candidate; local
303 replacement = parent;
304 if (editableAncestors.contains(replacement)) {
305 replacement = 0;
308 editableAncestors.add(replacement);
311 candidate = replacement;
  /external/chromium_org/url/
url_canon_etc.cc 107 char replacement = 0; local
112 replacement = kSchemeCanonical[ch];
114 replacement = kSchemeCanonical[ch];
118 if (replacement) {
119 output->push_back(replacement);
264 // character" as IE seems to (ReadUTFChar puts the unicode replacement

Completed in 598 milliseconds

<<11121314151617181920>>