Home
last modified time | relevance | path

Searched defs:objects (Results 1 – 25 of 158) sorted by relevance

1234567

/external/autotest/frontend/client/src/autotest/common/table/
DSelectionManager.java36 public void onAdd(Collection<JSONObject> objects); in onAdd()
37 public void onRemove(Collection<JSONObject> objects); in onRemove()
79 public void selectObjects(Collection<? extends JSONObject> objects) { in selectObjects()
91 public void deselectObjects(Collection<JSONObject> objects) { in deselectObjects()
95 protected void addOrRemoveObjects(Collection<? extends JSONObject> objects, in addOrRemoveObjects()
162 protected void notifyListeners(Collection<JSONObject> objects, in notifyListeners()
/external/vogar/src/vogar/util/
DStrings.java74 public static String join(String delimiter, Object... objects) { in join()
78 public static String join(Iterable<?> objects, String delimiter) { in join()
92 public static String[] objectsToStrings(Object[] objects) { in objectsToStrings()
101 public static String[] objectsToStrings(Collection<?> objects) { in objectsToStrings()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowArrayAdapter.java58 public void __constructor__(Context context, int textViewResourceId, T[] objects) { in __constructor__()
62 … public void __constructor__(Context context, int resource, int textViewResourceId, T[] objects) { in __constructor__()
66 public void __constructor__(Context context, int textViewResourceId, List<T> objects) { in __constructor__()
70 …blic void __constructor__(Context context, int resource, int textViewResourceId, List<T> objects) { in __constructor__()
74 private void init(Context context, int resource, int textViewResourceId, List<T> objects) { in init()
/external/selinux/policycoreutils/scripts/
Dchcat103 def chcat_add(orig, newcat, objects, login_ind): argument
182 def chcat_remove(orig, newcat, objects, login_ind): argument
255 def chcat_replace(newcat, objects, login_ind): argument
449 objects = cmds[1:] variable
/external/caliper/caliper/src/main/java/com/google/caliper/memory/
DObjectGraphMeasurer.java43 private final int objects; field in ObjectGraphMeasurer.Footprint
62 public Footprint(int objects, int nonNullRefs, int nullRefs, in Footprint()
187 private int objects; field in ObjectGraphMeasurer.ObjectGraphVisitor
/external/autotest/frontend/server/
Dmodels.py39 objects = model_logic.ExtendedManager() variable in Server
117 objects = model_logic.ExtendedManager() variable in ServerRole
131 objects = model_logic.ExtendedManager() variable in ServerAttribute
/external/testng/src/test/java/test/dataprovider/
DTestContextSampleTest.java41 public void verifyTen(Object[] objects) { in verifyTen()
46 public void verifyFive(Object[] objects) { in verifyFive()
/external/clang/test/CodeGen/
D2007-04-05-PadBeforeZeroLengthField.c6 union A objects[]; member
8 void foo(union A * objects, struct B *array, unsigned long k) in foo()
/external/opencv3/modules/java/src/
Dobjdetect+CascadeClassifier.java91 …public void detectMultiScale(Mat image, MatOfRect objects, double scaleFactor, int minNeighbors, … in detectMultiScale()
100 public void detectMultiScale(Mat image, MatOfRect objects) in detectMultiScale()
114 …public void detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections, double scaleF… in detectMultiScale2()
124 public void detectMultiScale2(Mat image, MatOfRect objects, MatOfInt numDetections) in detectMultiScale2()
139 …public void detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble le… in detectMultiScale3()
150 …public void detectMultiScale3(Mat image, MatOfRect objects, MatOfInt rejectLevels, MatOfDouble le… in detectMultiScale3()
/external/mockito/src/org/mockito/internal/configuration/injection/
DConstructorInjection.java70 final Set<Object> objects; field in ConstructorInjection.SimpleArgumentResolver
72 public SimpleArgumentResolver(Set<Object> objects) { in SimpleArgumentResolver()
/external/testng/src/test/java/test/mustache/
DMustacheTest.java87 private Map<String, Object> create(Object... objects) { in create()
90 result.put((String) objects[i], objects[i + 1]); in create() local
/external/replicaisland/src/com/replica/replicaisland/
DRenderSystem.java61 private void clearQueue(FixedSizeArray<BaseObject> objects) { in clearQueue()
82 FixedSizeArray<BaseObject> objects = mRenderQueues[lastQueue].getObjects(); in swap() local
93 FixedSizeArray<BaseObject> objects = mRenderQueues[x].getObjects(); in emptyQueues() local
DGameObjectManager.java82 FixedSizeArray<BaseObject> objects = getObjects(); in update() local
159 FixedSizeArray<BaseObject> objects = getObjects(); in destroyAll() local
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/
DSerializationTest.java485 public static void verifyGolden(TestCase test, Object[] objects) in verifyGolden()
509 public static void verifyGolden(TestCase test, Object[] objects, in verifyGolden()
565 public static void verifySelf(Object[] objects) in verifySelf()
585 public static void verifySelf(Object[] objects, SerializableAssert comparator) in verifySelf()
/external/autotest/frontend/afe/
Dmodels.py68 objects = model_logic.ModelWithInvalidManager() variable in AtomicGroup
117 objects = model_logic.ModelWithInvalidManager() variable in Label
199 objects = model_logic.ExtendedManager() variable in Drone
241 objects = model_logic.ExtendedManager() variable in DroneSet
348 objects = model_logic.ExtendedManager() variable in User
471 objects = model_logic.ModelWithInvalidManager() variable in Host
731 objects = model_logic.ExtendedManager() variable in HostAttribute
816 objects = model_logic.ExtendedManager() variable in Test
864 objects = model_logic.ExtendedManager() variable in Profiler
894 objects = model_logic.ExtendedManager() variable in AclGroup
[all …]
/external/opencv3/modules/cudaobjdetect/src/cuda/
Dlbp.cu132 …__global__ void disjoin(int4* candidates, int4* objects, unsigned int n, int groupThreshold, float… in disjoin()
186 …connectedConmonents(PtrStepSz<int4> candidates, int ncandidates, PtrStepSz<int4> objects, int grou… in connectedConmonents()
246 …const int total, int* integral, const int pitch, PtrStepSz<int4> objects, unsigned int* classified) in lbp_cascade()
292 … const int subsetSize, PtrStepSz<int4> objects, unsigned int* classified, PtrStepSzi integral) in classifyPyramid()
/external/autotest/frontend/client/src/autotest/common/
DUtils.java74 public static String[] JSONObjectsToStrings(JSONArray objects, String field) { in JSONObjectsToStrings()
144 public static <T> String joinStrings(String joiner, List<T> objects, boolean wantBlanks) { in joinStrings()
162 public static <T> String joinStrings(String joiner, List<T> objects) { in joinStrings()
310 public static <T> List<T> createList(JSONArray objects, JsonObjectFactory<T> factory) { in createList()
/external/skia/bench/
DGrMemoryPoolBench.cpp51 A* objects[kMaxObjects]; in onDraw() local
113 SkAutoTDelete<B> objects[kMaxObjects]; in onDraw() local
158 C* objects[M]; in onDraw() local
/external/autotest/frontend/tko/
Dmodels.py182 objects = model_logic.ExtendedManager() variable in Job
218 objects = model_logic.ExtendedManager() variable in Test
247 objects = model_logic.ExtendedManager() variable in TestAttribute
263 objects = model_logic.ExtendedManager() variable in IterationAttribute
278 objects = model_logic.ExtendedManager() variable in IterationResult
293 objects = model_logic.ExtendedManager() variable in TestLabel
745 objects = TestViewManager() variable in TestView
/external/clang/test/CodeGenObjC/
Dobjc2-strong-cast-block-import.m6 Test ** __strong objects; field
/external/autotest/frontend/client/src/autotest/tko/
DTestViewDataSource.java20 List<JSONObject> objects = super.handleJsonResult(result); in handleJsonResult() local
/external/chromium-trace/catapult/telemetry/telemetry/util/
Dmatching.py8 def GetMostLikelyMatchedObject(objects, target_name, argument
/external/testng/src/test/java/org/testng/remote/strprotocol/
DTestResultMessageTest.java49 public void toStringTest(Object[] objects, Class<?>[] objectClasses, in toStringTest()
/external/junit/src/org/junit/
DAssume.java46 public static void assumeNotNull(Object... objects) { in assumeNotNull()
/external/clang/test/Analysis/
Dmalloc.m39 id * objects; field

1234567