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

1 2

  /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/protobuf/src/google/protobuf/
reflection_ops.h 59 static void Merge(const Message& from, Message* to);
text_format.h 199 static bool Merge(io::ZeroCopyInputStream* input, Message* output);
200 // Like Merge(), but reads directly from a string.
220 // Like TextFormat::Merge().
221 bool Merge(io::ZeroCopyInputStream* input, Message* output);
247 // Like TextFormat::Merge(). The provided implementation is used
reflection_ops_unittest.cc 81 TEST(ReflectionOpsTest, Merge) {
82 // Note: Copy is implemented in terms of Merge() so technically the Copy
103 ReflectionOps::Merge(message2, &message);
109 // Note: Copy is implemented in terms of Merge() so technically the Copy
133 ReflectionOps::Merge(message2, &message);
144 ReflectionOps::Merge(message2, &message1);
158 // Note: Copy is implemented in terms of Merge() so technically the Copy
164 ReflectionOps::Merge(message, &message),
reflection_ops.cc 47 Merge(from, to);
50 void ReflectionOps::Merge(const Message& from, Message* to) {
55 << "Tried to merge messages of different types.";
message.cc 63 << ": Tried to merge from a message with a different type. "
66 ReflectionOps::Merge(from, this);
repeated_field.h 167 // static void Merge(const Type& from, Type* to);
274 static void Merge(const GenericType& from, GenericType* to) {
281 inline void GenericTypeHandler<MessageLite>::Merge(
300 static void Merge(const string& from, string* to) { *to = from; }
678 TypeHandler::Merge(other.Get<TypeHandler>(i), Add<TypeHandler>());
    [all...]
text_format.cc 788 bool TextFormat::Parser::Merge(io::ZeroCopyInputStream* input,
798 return Merge(&input_stream, output);
830 /* static */ bool TextFormat::Merge(io::ZeroCopyInputStream* input,
832 return Parser().Merge(input, output);
    [all...]
descriptor.pb.cc     [all...]
  /external/chromium/testing/
generate_gmock_mutant.py 361 def Merge(a):
380 "template_params": Merge([Gen("typename P%", prebound),
384 "args": Merge([GenAlpha("p.%", prebound), GenAlpha("c.%", calltime)]),
396 "params": Merge([Gen("X%", prebound), Gen("A%", calltime)]),
399 "template_params": Merge([Gen("typename P%", prebound),
  /external/clang/include/clang/Analysis/FlowSensitive/
DataflowSolver.h 229 // Merge dataflow values from all predecessors of this block.
230 MergeOperatorTy Merge;
252 Merge(V, EI->second);
266 Merge(V, BI->second);
  /external/v8/tools/gcmole/
gcmole.cc 295 static ExprEffect Merge(ExprEffect a, ExprEffect b);
330 static Environment Merge(const Environment& l,
469 ExprEffect ExprEffect::Merge(ExprEffect a, ExprEffect b) {
649 return ExprEffect::Merge(VisitExpr(expr->getTrueExpr(), after_cond),
681 return ExprEffect::Merge(VisitExpr(lhs, env), VisitExpr(rhs, env));
947 in_ = Environment::Merge(in_, env);
968 out_ = Environment::Merge(out_, env);
1055 return Environment::Merge(then_out, else_out);
1065 Environment in = Environment::Merge(env, block_->in());
1071 Environment in = Environment::Merge(env, block_->in())
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 79 (* Merge lhs/rhs. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 79 (* Merge lhs/rhs. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 79 (* Merge lhs/rhs. *)
  /external/chromium/chrome/browser/
gpu_data_manager.cc 49 if (!gpu_info_.Merge(gpu_info))
  /external/protobuf/python/google/protobuf/internal/
descriptor_test.py 142 text_format.Merge(expected_ascii, expected_proto)
  /external/chromium/chrome/browser/resources/net_internals/
socketpoolwrapper.js 47 // Merge the arrays.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 115 (* Merge lhs/rhs. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 126 (* Merge lhs/rhs. *)
  /external/protobuf/src/google/protobuf/compiler/
plugin.pb.cc 414 ::google::protobuf::internal::ReflectionOps::Merge(from, this);
754 ::google::protobuf::internal::ReflectionOps::Merge(from, this);
    [all...]
  /external/webkit/Tools/android/webkitmerge/
webkitmerge.cpp 203 bool Merge(const char* oldDir, const char* oldFile, const char* newDir, const char* newFile,
208 sprintf(scratch, "merge -p -q \"%s/%s/%s\" \"%s/%s/%s\" \"%s/%s/%s\" > %s",
215 bool Merge(const char* dir, const char* file)
217 return Merge(dir, file, dir, file, "/dev/null");
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCOpts.cpp 480 void Merge(const PtrState &Other, bool TopDown);
485 PtrState::Merge(const PtrState &Other, bool TopDown) {
489 // We can't merge a plain objc_retain with an objc_retainBlock.
498 // If we're doing a merge on a path that's previously seen a partial
499 // merge, conservatively drop the sequence, to avoid doing partial
500 // RR elimination. If the branch predicates for the two merge differ,
504 // Conservatively merge the ReleaseMetadata information.
513 // Merge the insert point sets. If there are any differences,
514 // that makes this a partial merge.
637 /// The top-down traversal uses this to merge information about predecessors t
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 108 void Merge(DotDebugLocEntry *Next) {

Completed in 888 milliseconds

1 2