HomeSort by relevance Sort by last modified time
    Searched full:objects (Results 126 - 150 of 21490) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/python/cpython3/Doc/c-api/
gen.rst 3 .. _gen-objects:
5 Generator Objects
8 Generator objects are what Python uses to implement generator iterators. They
15 The C structure used for generator objects.
20 The type object corresponding to generator objects.
abstract.rst 6 Abstract Objects Layer
9 The functions in this chapter interact with Python objects regardless of their
14 It is not possible to use these functions on objects that are not properly
  /external/robolectric-shadows/processor/src/test/resources/org/robolectric/
Robolectric_Anything.java 3 import com.example.objects.AnyObject;
4 import com.example.objects.Dummy;
19 SHADOW_MAP.put("com.example.objects.AnyObject", "org.robolectric.annotation.processing.shadows.ShadowAnything");
20 SHADOW_MAP.put("com.example.objects.Dummy", "org.robolectric.annotation.processing.shadows.ShadowDummy");
44 return new String[] {"com.example.objects"};
Robolectric_ClassNameOnly.java 3 import com.example.objects.AnyObject;
4 import com.example.objects.Dummy;
19 SHADOW_MAP.put("com.example.objects.AnyObject", "org.robolectric.annotation.processing.shadows.ShadowClassNameOnly");
20 SHADOW_MAP.put("com.example.objects.Dummy", "org.robolectric.annotation.processing.shadows.ShadowDummy");
44 return new String[] {"com.example.objects"};
Robolectric_Parameterized.java 3 import com.example.objects.Dummy;
4 import com.example.objects.ParameterizedDummy;
19 SHADOW_MAP.put("com.example.objects.Dummy", "org.robolectric.annotation.processing.shadows.ShadowDummy");
20 SHADOW_MAP.put("com.example.objects.ParameterizedDummy", "org.robolectric.annotation.processing.shadows.ShadowParameterizedDummy");
43 return new String[] {"com.example.objects"};
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectGraphMeasurer.java 21 import com.google.common.base.Objects;
35 * ({@literal e.g.}, number of objects, references,
43 private final int objects; field in class:ObjectGraphMeasurer.Footprint
53 * Constructs a Footprint, by specifying the number of objects,
56 * @param objects the number of objects
62 public Footprint(int objects, int nonNullRefs, int nullRefs,
64 Preconditions.checkArgument(objects >= 0, "Negative number of objects");
69 this.objects = objects
187 private int objects; field in class:ObjectGraphMeasurer.ObjectGraphVisitor
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/
app.makefile 23 $(APPLICATION): $(OBJECTS)
24 $(LINKER) -o $(APPLICATION) $(BUILD_LFLAGS) $(OBJECTS) -L$(MAKEROOT)/libs $(LIBS)
26 $(OBJECTS): ../Include/Common/BuildVersion.h
  /external/python/cpython2/Doc/c-api/
abstract.rst 7 Abstract Objects Layer
10 The functions in this chapter interact with Python objects regardless of their
15 It is not possible to use these functions on objects that are not properly
  /external/selinux/libsemanage/tests/
Makefile 14 OBJECTS = $(SOURCES:.c=.o)
18 $(EXECUTABLE): $(OBJECTS) ../src/libsemanage.a
22 rm -rf $(OBJECTS) $(EXECUTABLE)
  /packages/apps/Settings/src/com/android/settings/vpn2/
AppVpnInfo.java 7 import java.util.Objects;
37 return userId == that.userId && Objects.equals(packageName, that.packageName);
44 return Objects.hash(packageName, userId);
  /tools/test/connectivity/acts/framework/acts/controllers/
__init__.py 15 A list of controller objects.
18 '''Destroys a list of controller objects created by the "create" function
22 objs: A list of controller objects created from this module.
  /external/autotest/frontend/tko/
models_test.py 16 self.machine1 = models.Machine.objects.create(hostname='myhost')
17 self.good_status = models.Status.objects.create(word='GOOD')
19 self.kernel1 = models.Kernel.objects.create(kernel_hash=kernel_name,
22 self.job1 = models.Job.objects.create(
26 self.job1_test1 = models.Test.objects.create(
38 models.Test.objects.populate_relationships(
  /external/pdfium/fxjs/
README 11 FXJS binds objects by sticking a pointer to a CFXJS_PerObjectData in
12 the V8 object's internal slot. FXJSE binds objects by sticking a
15 represents (in some notion) a "class" or an "instance". Also, V8 objects
20 objects, regardless of the FXJS/FXJSE distinction. Slot 0 is the
22 kPerObjectDataTag for FXJS objects, or
23 g_FXJSETagString for FXJSE Host objects, or
  /external/python/cpython2/Demo/tkinter/guido/
canvasevents.py 16 """Base class for composite graphical objects.
18 Objects belong to a canvas, and can be moved around on the canvas.
19 They also belong to at most one ``pile'' of objects, and can be
22 Objects have a canonical ``x, y'' position which is moved when the
24 depends on the object; for simple objects, it may be their center.
26 Objects have mouse sensitivity. They can be clicked, dragged and
90 """A group of graphical objects."""
96 self.objects = []
107 self.objects.append(object)
113 self.objects.remove(object
    [all...]
  /external/valgrind/docs/internals/
tm-threadstates.dot 32 wait_mutex -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ];
33 wait_mutex -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ];
37 wait_condvar -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
38 wait_condvar -> wait_join [ style=dotted, label="waiting for\nmultiple objects" ];
42 wait_join -> wait_condvar [ style=dotted, label="waiting for\nmultiple objects" ];
43 wait_join -> wait_mutex [ style=dotted, label="waiting for\nmultiple objects" ];
  /libcore/support/src/test/java/org/apache/harmony/testframework/serialization/
SerializationTest.java 46 * returns array of objects to be de/serialized in tests, and the second
47 * compares reference and deserialized objects (needed only if tested objects do
56 * serialized objects. This mode should be run on a pure
74 * override it to provide actual objects for testing.
76 * @return array of objects to be de/serialized in tests.
81 * Tests that data objects can be serialized and deserialized without
83 * objects.
96 * Tests that data objects can be deserialized from golden files, to verify
123 * Working method for files generation mode. Serializes test objects
    [all...]
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
ConfigDescription.java 9 import java.util.Objects;
164 !Objects.equals(part, "car")) {
386 if (Objects.equals(name, kWildcardName)) {
393 } else if (Objects.equals(name, "ldltr")) {
400 } else if (Objects.equals(name, "ldrtl")) {
413 if (Objects.equals(name, kWildcardName)) {
429 if (Objects.equals(name, kWildcardName)) {
445 if (Objects.equals(name, kWildcardName)) {
461 if (Objects.equals(name, kWildcardName)) {
468 } else if (Objects.equals(name, "small"))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
rangeobject.h 17 Range objects behave like the corresponding tuple objects except that
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
rangeobject.h 17 Range objects behave like the corresponding tuple objects except that
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
new.py 1 """Create new objects of various types. Deprecated.
4 Objects of most types can now be created by calling the type object.
  /external/clang/test/CodeGenObjC/
objc2-strong-cast-block-import.m 6 Test ** __strong objects;
16 Test **children = objects;
  /external/clang/test/SemaObjC/
property-ns-returns-not-retained-attr.m 11 - (id) newName2; // expected-warning {{property declared as returning non-retained objects; getter returning retained objects}}
  /external/guava/guava-tests/benchmark/com/google/common/base/
ObjectsBenchmark.java 20 import com.google.common.base.Objects;
23 * Some microbenchmarks for the {@link Objects} class.
43 dummy += Objects.hashCode(S0, S1);
51 dummy += Objects.hashCode(S0, S1, S2);
59 dummy += Objects.hashCode(S0, S1, S2, S3);
67 dummy += Objects.hashCode(S0, S1, S2, S3, S4);
75 dummy += Objects.hashCode(I2, S1, D1, S2, I0);
76 dummy += Objects.hashCode(D0, I1, S3, I2, S0);
  /external/python/cpython2/Include/
rangeobject.h 17 Range objects behave like the corresponding tuple objects except that
  /external/python/cpython2/Lib/
new.py 1 """Create new objects of various types. Deprecated.
4 Objects of most types can now be created by calling the type object.

Completed in 1105 milliseconds

1 2 3 4 56 7 8 91011>>