HomeSort by relevance Sort by last modified time
    Searched refs:replaced (Results 1 - 25 of 145) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.cpp 80 bool replaced = false; local
84 replaced = true;
96 if (!replaced && !inserted)
99 if (replaced) {
  /external/chromium_org/net/base/
url_util.cc 31 bool replaced = false; local
46 // Check |replaced| as only the first pair should be replaced.
47 if (!replaced && key == param_name) {
48 replaced = true;
60 if (!replaced) {
  /external/qemu/memcheck/
memcheck_malloc_map.h 52 * with 'replaced' parameter. If this parameter is NULL, insertion will fail if
53 * a matching entry already exists in the map. If 'replaced' parameter is not
61 * replaced - If not NULL, upon return from this routine contains descriptor
62 * that has been replaced in the map with the new entry. Note that if this
64 * content of the 'replaced' buffer is not defined, as no replacement has
71 MallocDescEx* replaced);
memcheck_mmrange_map.h 50 * with 'replaced' parameter. If this parameter is NULL, insertion will fail if
51 * a matching entry already exists in the map. If 'replaced' parameter is not
58 * replaced - If not NULL, upon return from this routine contains descriptor
59 * that has been replaced in the map with the new entry. Note that if this
61 * content of the 'replaced' buffer is not defined, as no replacement has
68 MMRangeDesc* replaced);
memcheck_mmrange_map.c 70 MMRangeDesc* replaced)
78 if (replaced == NULL) {
84 memcpy(replaced, &existing->desc, sizeof(MMRangeDesc));
124 MMRangeDesc* replaced)
137 ret = mmrangemap_insert_desc(map, rdesc, replaced);
memcheck_malloc_map.c 108 MallocDescEx* replaced)
116 if (replaced == NULL) {
122 memcpy(replaced, &existing->desc, sizeof(MallocDescEx));
163 allocmap_insert(AllocMap* map, const MallocDescEx* desc, MallocDescEx* replaced)
176 ret = allocmap_insert_desc(map, adesc, replaced);
memcheck_proc_management.h 65 /* ProcDesc->image_path has been replaced during process execution. */
163 /* Checks if process image path has been replaced.
167 * boolean: 1 if process image path has been replaced,
168 * or 0 if it was not replaced.
215 MallocDescEx* replaced)
217 return allocmap_insert(&proc->alloc_map, desc, replaced);
memcheck.c 400 MallocDescEx replaced; local
446 insert_res = procdesc_add_malloc(proc, &desc, &replaced);
461 printf(" Replaced block:\n");
462 memcheck_dump_malloc_desc(&replaced, 1, 1);
464 if (replaced.call_stack != NULL) {
465 qemu_free(replaced.call_stack);
memcheck_proc_management.c 244 * process has been actually replaced with the new one.
701 MMRangeDesc replaced; local
726 ins_res = mmrangemap_insert(&proc->mmrange_map, &desc, &replaced);
735 MD("memcheck: %s[pid=%u] MMRANGE %s[0x%08X - 0x%08X] is replaced with %s[0x%08X - 0x%08X]",
736 proc->image_path, proc->pid, replaced.path, replaced.map_start,
737 replaced.map_end, desc.path, desc.map_start, desc.map_end);
738 qemu_free(replaced.path);
  /external/chromium_org/net/tools/quic/
quic_server.h 48 virtual void OnUnregistration(int fd, bool replaced) OVERRIDE {}
quic_client.h 96 virtual void OnUnregistration(int fd, bool replaced) OVERRIDE {}
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_shader.h 88 uint32_t *replaced; member in struct:rbug_proto_shader_info_reply
125 uint32_t *replaced,
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_shader.h 88 uint32_t *replaced; member in struct:rbug_proto_shader_info_reply
125 uint32_t *replaced,
  /external/chromium/net/tools/flip_server/
acceptor_thread.h 55 virtual void OnUnregistration(int fd, bool replaced) {}
sm_connection.h 88 virtual void OnUnregistration(int fd, bool replaced);
  /external/chromium_org/net/tools/flip_server/
acceptor_thread.h 58 virtual void OnUnregistration(int fd, bool replaced) OVERRIDE {}
sm_connection.h 88 virtual void OnUnregistration(int fd, bool replaced) OVERRIDE;
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_formatted_writer.py 49 given name already exists then it will be replaced.
  /external/chromium/chrome/browser/resources/shared/js/
local_strings.js 26 * Returns a formatted string where $1 to $9 are replaced by the second to the
67 * Returns a formatted localized string where $1 to $9 are replaced by the
  /external/chromium_org/ui/webui/resources/js/
local_strings.js 26 * Returns a formatted string where $1 to $9 are replaced by the second to the
72 * Returns a formatted localized string where $1 to $9 are replaced by the
  /external/chromium_org/v8/test/webkit/fast/js/
JSON-parse-reviver.js 56 currentHolder[2] = "a replaced value";
62 shouldBe("currentHolder[2]", '"a replaced value"');
138 currentHolder['and another property'] = "a replaced value";
143 shouldBe("currentHolder['and another property']", '"a replaced value"');
147 shouldBe("value", '"a replaced value"');
  /external/chromium_org/win8/metro_driver/
file_picker.cc 503 boolean replaced = FALSE;
504 hr = choices->Insert(description.Get(), list.Get(), &replaced);
507 DCHECK_EQ(FALSE, replaced);
538 boolean replaced = FALSE;
539 hr = choices->Insert(description.Get(), list.Get(), &replaced);
542 DCHECK_EQ(FALSE, replaced);
file_picker_ash.cc 452 boolean replaced = FALSE;
453 hr = choices->Insert(description.Get(), list.Get(), &replaced);
456 DCHECK_EQ(FALSE, replaced);
487 boolean replaced = FALSE;
488 hr = choices->Insert(description.Get(), list.Get(), &replaced);
491 DCHECK_EQ(FALSE, replaced);
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 400 // The trickled element is back before index, but the replaced element
402 return new MoveDesc<E>(actualLastElement, changes.replaced);
436 final E replaced; field in class:MinMaxPriorityQueue.MoveDesc
438 MoveDesc(E toTrickle, E replaced) {
440 this.replaced = replaced;
795 skipMe.add(moved.replaced);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 201 var len, pos, searchOp, replaced, prevOp, i;
210 replaced = false;
219 replaced=true;
224 if ( !replaced ) {

Completed in 599 milliseconds

1 2 3 4 5 6