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

1 2 3

  /frameworks/base/core/tests/coretests/src/android/view/
MergeTest.java 19 import android.view.Merge;
25 public class MergeTest extends ActivityInstrumentationTestCase<Merge> {
27 super("com.android.frameworks.coretests", Merge.class);
37 final Merge activity = getActivity();
Merge.java 28 * Exercise <merge /> tag in XML files.
30 public class Merge extends Activity {
  /external/v8/src/compiler/
control-builders.cc 30 then_environment_->Merge(environment());
44 continue_environment_->Merge(environment());
50 break_environment_->Merge(environment());
56 continue_environment_->Merge(environment());
62 loop_environment_->Merge(environment());
107 environment()->Merge(body_environment_);
112 break_environment_->Merge(environment());
121 break_environment_->Merge(label_environment_);
122 break_environment_->Merge(environment());
133 break_environment_->Merge(environment())
    [all...]
graph-builder.cc 117 void StructuredGraphBuilder::Environment::Merge(Environment* other) {
124 // placing a singleton merge as the new control dependency.
127 control_dependency_ = graph()->NewNode(common()->Merge(1), other_control);
133 // Create a merge of the control dependencies of both environments and update
139 // Create a merge of the effect dependencies of both environments and update
145 // Introduce Phi nodes for values that have differing input at merge points,
192 // Control node for merge exists, add input.
193 const Operator* op = common()->Merge(inputs);
197 // Control node is a singleton, introduce a merge.
198 const Operator* op = common()->Merge(inputs)
    [all...]
common-operator.h 81 const Operator* Merge(int controls);
change-lowering.cc 113 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false); local
116 true_value, false_value, merge);
153 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false); local
155 smi, merge);
179 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false); local
182 change, number, merge);
203 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false) local
231 Node* merge = graph()->NewNode(common()->Merge(2), if_true, if_false); local
    [all...]
graph-builder.h 97 Node* NewMerge() { return NewNode(common()->Merge(1)); }
153 // Merge of all control nodes that exit the function body.
188 // Merge another environment into this one.
189 void Merge(Environment* other);
  /external/sfntly/cpp/src/sample/subtly/
merger.h 35 virtual CALLER_ATTACH sfntly::Font* Merge();
merger_main.cc 59 new_font.Attach(merger->Merge());
merger.cc 44 CALLER_ATTACH Font* Merger::Merge() {
  /external/protobuf/src/google/protobuf/
reflection_ops.h 60 static void Merge(const Message& from, Message* to);
reflection_ops_unittest.cc 93 TEST(ReflectionOpsTest, Merge) {
94 // Note: Copy is implemented in terms of Merge() so technically the Copy
115 ReflectionOps::Merge(message2, &message);
121 // Note: Copy is implemented in terms of Merge() so technically the Copy
145 ReflectionOps::Merge(message2, &message);
156 ReflectionOps::Merge(message2, &message1);
171 // Merge to empty message
172 ReflectionOps::Merge(message1, &message2);
175 // Merge with the same oneof fields
176 ReflectionOps::Merge(message1, &message2)
    [all...]
reflection_ops.cc 51 Merge(from, to);
54 void ReflectionOps::Merge(const Message& from, Message* to) {
59 << "Tried to merge messages of different types "
60 << "(merge " << descriptor->full_name()
text_format.h 286 static bool Merge(io::ZeroCopyInputStream* input, Message* output);
287 // Like Merge(), but reads directly from a string.
372 // Like TextFormat::Merge().
373 bool Merge(io::ZeroCopyInputStream* input, Message* output);
425 // Like TextFormat::Merge(). The provided implementation is used
  /art/runtime/verifier/
reg_type_test.cc 77 EXPECT_TRUE((long_lo.Merge(precise_lo, &cache)).IsLongTypes());
78 EXPECT_TRUE((long_hi.Merge(precise_hi, &cache)).IsLongHighTypes());
470 EXPECT_TRUE(string.Merge(Object, &cache_new).IsJavaLangObject());
471 // Merge two unresolved types.
477 const RegType& merged = ref_type_1.Merge(ref_type_0, &cache_new);
497 // float MERGE precise cst => float.
498 const RegType& merged = float_type.Merge(precise_cst, &cache_new);
502 // precise cst MERGE float => float.
503 const RegType& merged = precise_cst.Merge(float_type, &cache_new);
507 // float MERGE imprecise cst => float
    [all...]
  /external/v8/src/
hydrogen-removable-simulates.cc 24 // Forward-merge "trains" of simulates after an instruction with observable
46 // effects are never added to the merge list. The same reasoning holds for
52 // Merge the accumulated simulates at the end of the block.
79 static State* Merge(State* succ_state,
86 : succ_state->Merge(succ_block, pred_state, pred_block, zone);
140 State* Merge(HBasicBlock* succ_block,
149 PrintF("[merge state %p from B%d into %p for B%d]\n",
hydrogen-flow-engine.h 45 inline NoState* Merge(HBasicBlock* succ, NoState* other, Zone* zone) {
130 // Merge the current state with the state already at the successor.
132 State::Merge(StateAt(succ), succ, state, block, zone_));
  /external/llvm/lib/Transforms/ObjCARC/
PtrState.h 93 /// Conservatively merge the two RRInfo. Returns true if a partial merge has
95 bool Merge(const RRInfo &Other);
154 void Merge(const PtrState &Other, bool TopDown);
PtrState.cpp 91 bool RRInfo::Merge(const RRInfo &Other) {
92 // Conservatively merge the ReleaseMetadata information.
96 // Conservatively merge the boolean state.
101 // Merge the call sets.
104 // Merge the insert point sets. If there are any differences,
105 // that makes this a partial merge.
138 void PtrState::Merge(const PtrState &Other, bool TopDown) {
147 // If we're doing a merge on a path that's previously seen a partial
148 // merge, conservatively drop the sequence, to avoid doing partial
149 // RR elimination. If the branch predicates for the two merge differ
    [all...]
  /build/core/
android_manifest.mk 29 # Set up rules to merge library manifest files
35 @echo "Merge android manifest files: $@ <-- $< $(PRIVATE_LIBS_MANIFESTS)"
  /external/lldb/include/lldb/Target/
StackFrameList.h 101 Merge (std::unique_ptr<StackFrameList>& curr_ap,
  /external/pdfium/core/src/fpdftext/
txtproc.h 38 void Merge(CTextBaseLine* pOther);
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 2 # Merge or print the coverage data collected by asan's coverage.
4 # We need to merge these integers into a set and then
17 " " + prog_name + " [32|64] merge file1 [file2 ...] > output\n" \
69 def Merge(files):
79 s = Merge(files)
90 s = Merge(files)
193 elif sys.argv[1] == "merge":
  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 626 void Instruction::getAAMetadata(AAMDNodes &N, bool Merge) const {
627 if (Merge)
633 if (Merge)
639 if (Merge)
  /external/libvncserver/utils/
git2cl.pl 10 # - skip "merge branch" statements as they don't
319 # * if we meet a "merge branch" statement, we need to start
324 if ($_s =~ m/^Merge branch|^Merge remote branch/)

Completed in 828 milliseconds

1 2 3