Searched defs:merge (Results 26 - 50 of 88) sorted by relevance

1234

/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java33 public abstract void merge(TypeData neighbor); method in class:TypeData
85 public void merge(TypeData neighbor) {} method in class:TypeData.BasicType
137 public void merge(TypeData neighbor) { method in class:TypeData.TypeName
453 public void merge(TypeData neighbor) {} method in class:TypeData.UninitData
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTexturePixel.java198 * the pixel we merge with
200 public void merge(TexturePixel pixel) { method in class:TexturePixel
H A DUVCoordinatesGenerator.java209 result.merge(bb);
248 result.merge(bs);
320 result.merge(bt);
356 * @return new instance of bounding tube representing the tubes' merge
358 public BoundingTube merge(BoundingTube boundingTube) { method in class:UVCoordinatesGenerator.BoundingTube
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DBoundingSphere.java456 * <code>merge</code> combines this sphere with a second bounding sphere.
463 public BoundingVolume merge(BoundingVolume volume) { method in class:BoundingSphere
475 return merge(temp_radius, temp_center, rVal);
484 return merge(radVect.length(), temp_center, rVal);
519 return merge(temp_radius, temp_center, this);
530 return merge(len, temp_center, this);
546 // * The OBB to merge.
573 // //merge obb points result
574 // merge( newRadius, newCenter, this );
578 private BoundingVolume merge(floa method in class:BoundingSphere
[all...]
H A DBoundingVolume.java160 * <code>merge</code> combines two bounding volumes into a single bounding
167 public abstract BoundingVolume merge(BoundingVolume volume); method in class:BoundingVolume
H A DBoundingBox.java360 * <code>merge</code> combines this sphere with a second bounding sphere.
367 public BoundingVolume merge(BoundingVolume volume) { method in class:BoundingBox
375 return merge(vBox.center, vBox.xExtent, vBox.yExtent,
382 return merge(vSphere.center, vSphere.radius, vSphere.radius,
415 return merge(vBox.center, vBox.xExtent, vBox.yExtent,
421 return merge(vSphere.center, vSphere.radius, vSphere.radius,
438 * the OBB to merge this AABB with.
478 * <code>merge</code> combines this bounding box with another box which is
482 * the center of the box to merge with
484 * the x extent of the box to merge wit
493 private BoundingBox merge(Vector3f boxCenter, float boxX, float boxY, method in class:BoundingBox
[all...]
/external/nist-sip/java/gov/nist/core/
H A DGenericObject.java217 public void merge(Object mergeObject) { method in class:GenericObject
276 gobj.merge(mobj);
/external/openssl/crypto/engine/
H A Deng_dyn.c419 char *merge = DSO_merge(ctx->dynamic_dso, ctx->DYNAMIC_LIBNAME, s); local
420 if(!merge)
422 if(DSO_load(ctx->dynamic_dso, merge, NULL, 0))
425 OPENSSL_free(merge);
428 OPENSSL_free(merge);
/external/proguard/src/proguard/optimize/info/
H A DMethodOptimizationInfo.java259 public void merge(MethodOptimizationInfo other) method in class:MethodOptimizationInfo
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DRegisterType.java266 public RegisterType merge(RegisterType type) { method in class:RegisterType
/external/stlport/stlport/stl/debug/
H A D_list.h399 void merge(_Self& __x) { function in class:list
404 _M_non_dbg_impl.merge(__x._M_non_dbg_impl);
465 void merge(_Self& __x, _StrictWeakOrdering __comp) { function in class:list
470 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __comp);
H A D_slist.h528 void merge(_Self& __x) { function in class:slist
537 _M_non_dbg_impl.merge(__x._M_non_dbg_impl);
581 void merge(_Self& __x, _StrictWeakOrdering __ord) { function in class:slist
590 _M_non_dbg_impl.merge(__x._M_non_dbg_impl, __ord);
/external/emma/ant/ant14/com/vladium/emma/
H A DemmajavaTask.java115 super.createArg ().setValue ("-merge");
125 log (getTaskName () + ": merge attribute setting ignored ('fullmetadata=\"true\"' not specified)", Project.MSG_WARN);
428 // merge attribute:
430 public void setMerge (final boolean merge) argument
432 m_outFileMerge = merge ? Boolean.TRUE : Boolean.FALSE;
/external/iproute2/tc/
H A Dm_xt_old.c96 struct option *merge; local
104 merge = malloc(sizeof (struct option) * (num_new + num_old + 1));
105 memcpy(merge, oldopts, num_old * sizeof (struct option));
107 merge[num_old + i] = newopts[i];
108 merge[num_old + i].val += *option_offset;
110 memset(merge + num_old + num_new, 0, sizeof (struct option));
112 return merge;
H A Dm_ipt.c177 struct option *merge; local
185 merge = malloc(sizeof (struct option) * (num_new + num_old + 1));
186 memcpy(merge, oldopts, num_old * sizeof (struct option));
188 merge[num_old + i] = newopts[i];
189 merge[num_old + i].val += *option_offset;
191 memset(merge + num_old + num_new, 0, sizeof (struct option));
193 return merge;
/external/stlport/stlport/stl/pointers/
H A D_list.h304 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:list
317 void merge(_Self &__x, _StrictWeakOrdering __comp) function in class:list
318 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
H A D_slist.h385 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:slist
398 void merge(_Self& __x, _StrictWeakOrdering __comp) function in class:slist
399 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
/external/clang/lib/Analysis/
H A DLiveVariables.cpp100 merge(LiveVariables::LivenessValues valsA,
149 LiveVariablesImpl::merge(LiveVariables::LivenessValues valsA, function in class:LiveVariablesImpl
552 val = LV->merge(val, LV->blocksBeginToLiveness[succ]);
/external/emma/core/java12/com/vladium/emma/rt/
H A DAppRunner.java205 * @param merge [null unsets the previous override setting]
207 public synchronized final void setSessionOutMerge (final Boolean merge) argument
209 m_sdataOutMerge = merge;
324 log.verbose ("session data output merge mode: " + sdataOutMerge);
/external/llvm/lib/CodeGen/
H A DExecutionDepsFix.cpp180 bool merge(DomainValue *A, DomainValue *B);
313 bool ExeDepsFix::merge(DomainValue *A, DomainValue *B) { function in class:ExeDepsFix
314 assert(!A->isCollapsed() && "Cannot merge into collapsed");
315 assert(!B->isCollapsed() && "Cannot merge from collapsed");
401 // Currently open, merge in predecessor.
403 merge(LiveRegs[rx].Value, pdv);
574 // incoming DomainValues that we want to merge.
597 // doms are now sorted in order of appearance. Try to merge them all, giving
613 if (merge(dv, Latest))
616 // If latest didn't merge, i
[all...]
H A DMachineBlockPlacement.cpp115 void merge(MachineBasicBlock *BB, BlockChain *Chain) { function in class:__anon8672::BlockChain
334 DEBUG(dbgs() << "Attempting merge from: " << getBlockName(BB) << "\n");
527 // Zero out LoopPredecessors for the successor we're about to merge in case
533 Chain.merge(BestSucc, &SuccChain);
881 // Also, merge any blocks which we cannot reason about and must preserve
897 Chain->merge(NextBB, 0);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DTextFormat.java785 * Parse a text-format message from {@code input} and merge the contents
788 public static void merge(final Readable input, method in class:TextFormat
791 merge(input, ExtensionRegistry.getEmptyRegistry(), builder);
795 * Parse a text-format message from {@code input} and merge the contents
798 public static void merge(final CharSequence input, method in class:TextFormat
801 merge(input, ExtensionRegistry.getEmptyRegistry(), builder);
805 * Parse a text-format message from {@code input} and merge the contents
809 public static void merge(final Readable input, method in class:TextFormat
821 merge(toStringBuilder(input), extensionRegistry, builder);
844 * Parse a text-format message from {@code input} and merge th
848 public static void merge(final CharSequence input, method in class:TextFormat
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSMutableStyleDeclaration.cpp751 void CSSMutableStyleDeclaration::merge(const CSSMutableStyleDeclaration* other, bool argOverridesOnConflict) function in class:WebCore::CSSMutableStyleDeclaration
/external/clang/include/clang/AST/
H A DDecl.h296 void merge(LinkageInfo Other) { function in class:clang::NamedDecl::LinkageInfo
/external/iptables/iptables/
H A Dxtoptions.c78 struct option *merge, *mp; local
97 merge = malloc(sizeof(*mp) * (num_orig + num_old + num_new + 1));
98 if (merge == NULL)
102 memcpy(merge, orig_opts, sizeof(*mp) * num_orig);
103 mp = merge + num_orig;
123 return merge;

Completed in 661 milliseconds

1234