/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
stl_list.h | [all...] |
forward_list.h | [all...] |
/external/chromium_org/third_party/cython/src/Cython/Build/ |
Dependencies.py | 194 def merge(self, other): member in class:DistutilsInfo 543 return (self.transitive_merge(filename, self.distutils_info0, DistutilsInfo.merge) 545 .merge(base)) 547 def transitive_merge(self, node, extract, merge): 549 seen = self._transitive_cache[extract, merge] 551 seen = self._transitive_cache[extract, merge] = {} 553 node, extract, merge, seen, {}, self.cimported_files)[0] 555 def transitive_merge_helper(self, node, extract, merge, seen, stack, outgoing): 565 sub_deps, sub_loop = self.transitive_merge_helper(next, extract, merge, seen, stack, outgoing) 571 deps = merge(deps, sub_deps [all...] |
/external/elfutils/0.153/src/ |
i386_ld.c | 465 size_t pltidx = symbol->merge.value; 769 /* We cannot handle relocations against merge-able sections. */ 801 value = symref[idx]->merge.value; 804 /* MERGE.VALUE contains the PLT index. If this is not for 834 + symref[idx]->merge.value); 957 value = symref[idx]->merge.value - ld_state.tls_tcb; 974 store_4ubyte_unaligned (relloc, (symref[idx]->merge.value 989 value = symref[idx]->merge.value - ld_state.tls_start; 1020 value = ld_state.tls_tcb- symref[idx]->merge.value; [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
Frame.java | 1247 boolean merge(final ClassWriter cw, final Frame frame, final int edge) { method in class:Frame 1340 private static boolean merge( method in class:Frame [all...] |
/frameworks/native/libs/ui/ |
Region.cpp | 319 const Region Region::merge(const Rect& rhs) const { function in class:android::Region 339 const Region Region::merge(const Region& rhs) const { function in class:android::Region 385 const Region Region::merge(const Region& rhs, int dx, int dy) const { function in class:android::Region 458 bool merge = false; local 463 merge = true; 466 merge = false; 473 if (merge) {
|
Fence.cpp | 72 sp<Fence> Fence::merge(const String8& name, const sp<Fence>& f1, function in class:android::Fence 76 // Merge the two fences. In the case where one of the fences is not a 77 // valid fence (e.g. NO_FENCE) we merge the one valid fence with itself so 90 ALOGE("merge: sync_merge(\"%s\", %d, %d) returned an error: %s (%d)",
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
forward_list.h | 1165 merge(forward_list&& __list) function in class:forward_list 1169 merge(forward_list& __list) function in class:forward_list 1189 merge(forward_list& __list, _Comp __comp) function in class:forward_list [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
forward_list.h | 1165 merge(forward_list&& __list) function in class:forward_list 1169 merge(forward_list& __list) function in class:forward_list 1189 merge(forward_list& __list, _Comp __comp) function in class:forward_list [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
forward_list.h | 1165 merge(forward_list&& __list) function in class:forward_list 1169 merge(forward_list& __list) function in class:forward_list 1189 merge(forward_list& __list, _Comp __comp) function in class:forward_list [all...] |
/external/javassist/src/main/javassist/bytecode/analysis/ |
Type.java | 147 // Used to indicate a merge internally triggered a change 279 * the data-flow analyzer to merge the type state from multiple branches. 281 * @param type the type to merge with 284 public Type merge(Type type) { method in class:Type 300 return type.merge(this); 363 Type mergedComponent = thisRoot.merge(typeRoot);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
UndoDelegator.py | 122 if lastcmd.merge(cmd): 191 def merge(self, cmd): member in class:Command 238 def merge(self, cmd): member in class:InsertCommand
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
UndoDelegator.py | 122 if lastcmd.merge(cmd): 191 def merge(self, cmd): member in class:Command 238 def merge(self, cmd): member in class:InsertCommand
|
/system/core/libpixelflinger/codeflinger/tinyutils/ |
VectorImpl.cpp | 497 ssize_t SortedVectorImpl::merge(const VectorImpl& vector) function in class:SortedVectorImpl 499 // naive merge... 514 ssize_t SortedVectorImpl::merge(const SortedVectorImpl& vector) function in class:SortedVectorImpl 526 err = merge(static_cast<const VectorImpl&>(vector));
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ExecutionStack.java | 299 * this merge results in a change. If no change results, this instance is 303 * @param other {@code non-null;} a stack to merge with 304 * @return {@code non-null;} the result of the merge 306 public ExecutionStack merge(ExecutionStack other) { method in class:ExecutionStack
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/ |
functional.rb | 134 grammar.compile( compile_options.merge( options ) )
|
/external/llvm/lib/CodeGen/ |
ExecutionDepsFix.cpp | 188 bool merge(DomainValue *A, DomainValue *B); 321 /// Merge - All instructions and registers in B are moved to A, and B is 323 bool ExeDepsFix::merge(DomainValue *A, DomainValue *B) { function in class:ExeDepsFix 324 assert(!A->isCollapsed() && "Cannot merge into collapsed"); 325 assert(!B->isCollapsed() && "Cannot merge from collapsed"); 415 // Currently open, merge in predecessor. 417 merge(LiveRegs[rx].Value, pdv); 643 // incoming DomainValues that we want to merge. 666 // doms are now sorted in order of appearance. Try to merge them all, giving 682 if (merge(dv, Latest) [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/ |
SourceInterpreter.java | 155 public Value merge(final Value v, final Value w) {
method in class:SourceInterpreter
|
/external/stlport/stlport/stl/debug/ |
_list.h | 399 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);
|
/external/stlport/stlport/stl/pointers/ |
_slist.h | 385 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)); }
|
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3IOStreamBase.cpp | 233 mCombinedFence = Fence::merge(mName, mCombinedFence, releaseFence);
|
StatusTracker.cpp | 182 mIdleFence = Fence::merge(String8("idleFence"),
|
/frameworks/compile/libbcc/lib/Core/ |
Source.cpp | 144 bool Source::merge(Source &pSource, bool pPreserveSource) { function in class:bcc::Source
|
/frameworks/compile/mclinker/lib/LD/ |
GroupReader.cpp | 134 // after all needed member included, merge the archive sub-tree to main 139 m_Module.getInputTree().merge<InputTree::Inclusive>((*it)->input,
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_list.h | 399 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);
|