/external/ImageMagick/www/ |
connected-components.html | 59 <p class="lead magick-description">Connected-component labeling (alternatively connected-component analysis, blob extraction, region labeling, blob discovery, or region extraction) uniquely labels connected components in an image. The labeling process scans the image, pixel-by-pixel from top-left to bottom-right, in order to identify connected pixel regions, i.e. regions of adjacent pixels which share the same set of intensity values. For example, let's find the objects in this image:</p> 61 <a href="../images/objects.gif"><img src="../images/objects.gif" width="256" height="171" class="image-slices" alt="purse" /></a> 63 <p>To identify the objects in this image, use this command:</p> 65 convert objects.gif -connected-components 4 -auto-level -depth 8 objects.png 67 <p>The detected objects are uniquely labeled. Use auto leveling to visualize the detected objects:</p> 69 <a href="../images/objects.png"><img src="../images/objects.png" width="256" height="171" class="image-slices" alt="Objects" /></a [all...] |
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
UnknownFieldSetLite.java | 80 Object[] objects = Arrays.copyOf(first.objects, count); local 81 System.arraycopy(second.objects, 0, objects, first.count, second.count); 82 return new UnknownFieldSetLite(count, tags, objects, true /* isMutable */); 98 private Object[] objects; field in class:UnknownFieldSetLite 120 private UnknownFieldSetLite(int count, int[] tags, Object[] objects, boolean isMutable) { 123 this.objects = objects; 156 output.writeUInt64(fieldNumber, (Long) objects[i]) [all...] |
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/ |
TweenManager.java | 51 private final ArrayList<BaseTween<?>> objects = new ArrayList<BaseTween<?>>(20); field in class:TweenManager 60 if (!objects.contains(object)) objects.add(object); 70 for (int i=0, n=objects.size(); i<n; i++) { 71 BaseTween<?> obj = objects.get(i); 82 for (int i=0, n=objects.size(); i<n; i++) { 83 BaseTween<?> obj = objects.get(i); 93 for (int i=0, n=objects.size(); i<n; i++) { 94 BaseTween<?> obj = objects.get(i); 104 for (int i=0, n=objects.size(); i<n; i++) [all...] |
/frameworks/base/core/java/android/app/servertransaction/ |
LaunchActivityItem.java | 40 import java.util.Objects; 171 && activityInfoEqual(other.mInfo) && Objects.equals(mCurConfig, other.mCurConfig) 172 && Objects.equals(mOverrideConfig, other.mOverrideConfig) 173 && Objects.equals(mCompatInfo, other.mCompatInfo) 174 && Objects.equals(mReferrer, other.mReferrer) 177 && Objects.equals(mPendingResults, other.mPendingResults) 178 && Objects.equals(mPendingNewIntents, other.mPendingNewIntents) 180 && Objects.equals(mProfilerInfo, other.mProfilerInfo); 188 result = 31 * result + Objects.hashCode(mCurConfig); 189 result = 31 * result + Objects.hashCode(mOverrideConfig) [all...] |
/cts/libs/vogar-expect/src/vogar/util/ |
Strings.java | 71 public static String join(String delimiter, Object... objects) { 72 return join(Arrays.asList(objects), delimiter); 75 public static String join(Iterable<?> objects, String delimiter) { 76 Iterator<?> i = objects.iterator(); 89 public static String[] objectsToStrings(Object[] objects) { 90 String[] result = new String[objects.length]; 92 for (Object o : objects) { 98 public static String[] objectsToStrings(Collection<?> objects) { 99 return objectsToStrings(objects.toArray());
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
ObjectLinkingLayer.h | 29 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 31 /// An instance of this class will be created for each set of objects added 70 /// @brief Handle to a set of loaded objects. 75 /// @brief Default (no-op) action to perform when loading objects. 87 /// symbols queried. All objects added to this layer can see each other's 102 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 107 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 111 buildInitialSymbolTable(PFC->Objects); 125 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 155 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/external/python/cpython2/Doc/library/ |
copy.rst | 7 Assignment statements in Python do not copy objects, they create bindings 32 objects (objects that contain other objects, like lists or class instances): 35 possible) inserts *references* into it to the objects found in the original. 38 *copies* into it of the objects found in the original. 43 * Recursive objects (compound objects that, directly or indirectly, contain a 51 * keeping a "memo" dictionary of objects already copied during the current
|
weakref.rst | 19 references` to objects. 31 mappings holding large objects, where it's desired that a large object not be 34 For example, if you have a number of large binary image objects, you may wish to 36 images, or images to names, the image objects would remain alive just because 40 mappings that don't keep objects alive solely because they appear in the mapping 41 objects. If, for example, an image object is a value in a 56 Not all objects can be weakly referenced; those objects which can include class 58 unbound), sets, frozensets, file objects, :term:`generator`\s, type objects, [all...] |
/external/vogar/src/vogar/util/ |
Strings.java | 74 public static String join(String delimiter, Object... objects) { 75 return join(Arrays.asList(objects), delimiter); 78 public static String join(Iterable<?> objects, String delimiter) { 79 Iterator<?> i = objects.iterator(); 92 public static String[] objectsToStrings(Object[] objects) { 93 String[] result = new String[objects.length]; 95 for (Object o : objects) { 101 public static String[] objectsToStrings(Collection<?> objects) { 102 return objectsToStrings(objects.toArray());
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/ |
RTDyldObjectLinkingLayer.h | 40 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 42 /// An instance of this class will be created for each set of objects added 82 /// @brief Handle to a set of loaded objects. 86 /// @brief Default (no-op) action to perform when loading objects. 98 /// symbols queried. All objects added to this layer can see each other's 111 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 116 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 120 buildInitialSymbolTable(PFC->Objects); 135 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 163 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/ |
RTDyldObjectLinkingLayer.h | 40 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 42 /// An instance of this class will be created for each set of objects added 82 /// @brief Handle to a set of loaded objects. 86 /// @brief Default (no-op) action to perform when loading objects. 98 /// symbols queried. All objects added to this layer can see each other's 111 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 116 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 120 buildInitialSymbolTable(PFC->Objects); 139 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 167 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/ |
RTDyldObjectLinkingLayer.h | 40 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 42 /// An instance of this class will be created for each set of objects added 82 /// @brief Handle to a set of loaded objects. 86 /// @brief Default (no-op) action to perform when loading objects. 98 /// symbols queried. All objects added to this layer can see each other's 111 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 116 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 120 buildInitialSymbolTable(PFC->Objects); 139 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 167 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/ |
RTDyldObjectLinkingLayer.h | 40 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 42 /// An instance of this class will be created for each set of objects added 82 /// @brief Handle to a set of loaded objects. 86 /// @brief Default (no-op) action to perform when loading objects. 98 /// symbols queried. All objects added to this layer can see each other's 111 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 116 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 120 buildInitialSymbolTable(PFC->Objects); 135 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 163 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/ |
RTDyldObjectLinkingLayer.h | 40 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 42 /// An instance of this class will be created for each set of objects added 82 /// @brief Handle to a set of loaded objects. 86 /// @brief Default (no-op) action to perform when loading objects. 98 /// symbols queried. All objects added to this layer can see each other's 111 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 116 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 120 buildInitialSymbolTable(PFC->Objects); 139 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 167 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/ |
RTDyldObjectLinkingLayer.h | 40 /// @brief Holds a set of objects to be allocated/linked as a unit in the JIT. 42 /// An instance of this class will be created for each set of objects added 82 /// @brief Handle to a set of loaded objects. 86 /// @brief Default (no-op) action to perform when loading objects. 98 /// symbols queried. All objects added to this layer can see each other's 111 ConcreteLinkedObjectSet(ObjSetT Objects, MemoryManagerPtrT MemMgr, 116 PFC(llvm::make_unique<PreFinalizeContents>(std::move(Objects), 120 buildInitialSymbolTable(PFC->Objects); 139 PFC->Finalizer(PFC->Handle, RTDyld, std::move(PFC->Objects), 167 void buildInitialSymbolTable(const ObjSetT &Objects) { [all...] |
/external/chromium-trace/catapult/devil/devil/utils/ |
parallelizer.py | 7 This class wraps a list of objects of the same type, emulates their 8 interface, and executes any functions called on the objects in parallel 11 This means that, given a list of objects: 22 we can take a sequential operation on that list of objects: 27 and run it in parallel across all of the objects: 31 It can also handle (non-method) attributes of objects, so that this: 40 Because it emulates the interface of the wrapped objects, a Parallelizer 41 can be passed to a method or function that takes objects of that type: 65 """Allows parallel execution of method calls across a group of objects.""" 107 AttributeError if the wrapped objects aren't callable [all...] |
/external/libmojo/third_party/catapult/devil/devil/utils/ |
parallelizer.py | 7 This class wraps a list of objects of the same type, emulates their 8 interface, and executes any functions called on the objects in parallel 11 This means that, given a list of objects: 22 we can take a sequential operation on that list of objects: 27 and run it in parallel across all of the objects: 31 It can also handle (non-method) attributes of objects, so that this: 40 Because it emulates the interface of the wrapped objects, a Parallelizer 41 can be passed to a method or function that takes objects of that type: 65 """Allows parallel execution of method calls across a group of objects.""" 107 AttributeError if the wrapped objects aren't callable [all...] |
/external/apache-xml/src/main/java/org/apache/xpath/ |
XPathAPI.java | 27 import org.apache.xpath.objects.XObject; 37 * These functions tend to be a little slow, since a number of objects must be 179 * @see org.apache.xpath.objects.XObject 180 * @see org.apache.xpath.objects.XNull 181 * @see org.apache.xpath.objects.XBoolean 182 * @see org.apache.xpath.objects.XNumber 183 * @see org.apache.xpath.objects.XString 184 * @see org.apache.xpath.objects.XRTreeFrag 198 * a number of objects each time it is called. This could be optimized 199 * to keep the same objects around, but then thread-safety issues would arise [all...] |
/external/autotest/scheduler/ |
gc_stats.py | 10 # A mapping from type objects to a count of instances of those types in the 11 # garbage collectors all objects list on the previous call to 16 # A set of object ids for everything in the all objects list on the 32 # We get all objects -before- creating any new objects within this function. 84 logging.debug('Pretty printed representation of the new objects:')
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cmc/ |
SimplePKIResponse.java | 79 * Return any X.509 certificate objects in this SimplePKIResponse structure as a Store of X509CertificateHolder objects. 81 * @return a Store of X509CertificateHolder objects. 89 * Return any X.509 CRL objects in this SimplePKIResponse structure as a Store of X509CRLHolder objects. 91 * @return a Store of X509CRLHolder objects.
|
/external/clang/test/ARCMT/ |
objcmt-subscripting-unavailable.m.result | 20 + (id)arrayWithObjects:(const id [])objects count:(unsigned long)cnt; 24 - (id)initWithObjects:(const id [])objects count:(unsigned long)cnt; 39 + (id)dictionaryWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 42 + (id)dictionaryWithObjects:(NSArray *)objects forKeys:(NSArray *)keys; 44 - (id)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(unsigned long)cnt; 47 - (id)initWithObjects:(NSArray *)objects forKeys:(NSArray *)keys;
|
/external/pdfium/testing/ |
gtest_mac.h | 12 // This overloaded version allows comparison between ObjC objects that conform 18 // This overloaded version allows comparison between ObjC objects that conform 25 // This overloaded version allows comparison between NSRect objects using 31 // This overloaded version allows comparison between NSRect objects using 37 // This overloaded version allows comparison between NSPoint objects using 43 // This overloaded version allows comparison between NSPoint objects using
|
/external/python/cpython2/Doc/c-api/ |
cell.rst | 3 .. _cell-objects: 5 Cell Objects 8 "Cell" objects are used to implement variables referenced by multiple scopes. 15 Cell objects are not likely to be useful elsewhere. 20 The C structure used for cell objects. 25 The type object corresponding to cell objects.
|
class.rst | 5 Class and Instance Objects 10 Note that the class objects described here represent old-style classes, which 12 will want to work with type objects (section :ref:`typeobjects`). 17 The C structure of the objects used to describe built-in classes. 24 This is the type object for class objects; it is the same object as 41 There are very few functions specific to instance objects.
|
/external/python/cpython3/Doc/c-api/ |
cell.rst | 3 .. _cell-objects: 5 Cell Objects 8 "Cell" objects are used to implement variables referenced by multiple scopes. 15 Cell objects are not likely to be useful elsewhere. 20 The C structure used for cell objects. 25 The type object corresponding to cell objects.
|