Home
last modified time | relevance | path

Searched full:classes (Results 1 – 25 of 6470) sorted by relevance

12345678910>>...259

/external/testng/src/test/resources/
Dtestng.xml17 <classes>
19 </classes>
35 <classes>
46 </classes>
55 <classes>
121 </classes>
130 <classes>
134 </classes>
138 <classes>
148 </classes>
[all …]
Dtestng.yaml7 classes:
13 classes:
26 classes:
80 classes:
88 classes:
92 classes:
97 classes:
104 classes:
109 classes:
130 classes:
[all …]
/external/tensorflow/tensorflow/python/data/util/
Dsparse_test.py37 "classes": (),
41 "classes": (ops.Tensor),
45 "classes": (((ops.Tensor))),
49 "classes": (ops.Tensor, ops.Tensor),
53 "classes": (ops.Tensor, sparse_tensor.SparseTensor),
57 "classes": (sparse_tensor.SparseTensor, sparse_tensor.SparseTensor),
62 "classes": (sparse_tensor.SparseTensor, ops.Tensor),
66 "classes": (((sparse_tensor.SparseTensor))),
72 sparse.any_sparse(test_case["classes"]), test_case["expected"])
86 "classes": (),
[all …]
Dsparse.py28 def any_sparse(classes): argument
32 classes: a structure of objects that identify the dataset item classes
35 `True` if `classes` contains a sparse tensor type and `False` otherwise.
37 return any(c is sparse_tensor.SparseTensor for c in nest.flatten(classes))
40 def as_dense_shapes(shapes, classes): argument
45 classes: a structure of objects that identify the dataset item classes
49 `tensor_shape.unknown_shape()` at positions where `classes` contains
54 for shape, c in zip(nest.flatten(shapes), nest.flatten(classes))
59 def as_dense_types(types, classes): argument
64 classes: a structure of objects that identify the dataset item classes
[all …]
/external/tensorflow/tensorflow/python/ops/
Dcandidate_sampling_ops.py36 """Samples a set of classes using a uniform base distribution.
38 This operation randomly samples a tensor of sampled classes
50 of the target classes (`true_classes`) and the sampled
51 classes (`sampled_candidates`) is expected to occur in an average
52 tensor of sampled classes. These values correspond to `Q(y|x)`
60 num_true]`. The target classes.
61 num_true: An `int`. The number of target classes per training example.
62 num_sampled: An `int`. The number of classes to randomly sample. The
65 unique: A `bool`. Determines whether all sampled classes in a batch are
67 range_max: An `int`. The number of possible classes.
[all …]
/external/python/cpython2/Modules/_ctypes/libffi_osx/x86/
Dx86-ffi64.c52 /* All reference to register classes here is identical to the code in
56 These represent classes as documented by the PS ABI, with the exception
57 of SSESF, SSEDF classes, that are basically SSE class, just gcc will
91 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes()
95 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes()
103 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes()
107 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes()
116 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes()
131 CLASSES will be filled by the register class used to pass each word
134 sized containers, classes[0] will be NO_CLASS and 1 is returned.
[all …]
/external/python/cpython3/Modules/_ctypes/libffi_osx/x86/
Dx86-ffi64.c52 /* All reference to register classes here is identical to the code in
56 These represent classes as documented by the PS ABI, with the exception
57 of SSESF, SSEDF classes, that are basically SSE class, just gcc will
91 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes()
95 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes()
103 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes()
107 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes()
116 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes()
131 CLASSES will be filled by the register class used to pass each word
134 sized containers, classes[0] will be NO_CLASS and 1 is returned.
[all …]
/external/clang/test/Index/
Dload-classes.cpp27 // CHECK: load-classes.cpp:3:8: StructDecl=X:3:8 (Definition) Extent=[3:1 - 21:2]
28 // CHECK: load-classes.cpp:4:3: CXXConstructor=X:4:3 (converting constructor) Extent=[4:3 - 4:15] […
30 // CHECK: load-classes.cpp:4:9: ParmDecl=value:4:9 (Definition) Extent=[4:5 - 4:14]
31 // CHECK: load-classes.cpp:5:3: CXXConstructor=X:5:3 (copy constructor) (converting constructor) Ex…
33 // CHECK: load-classes.cpp:5:14: ParmDecl=x:5:14 (Definition) Extent=[5:5 - 5:15]
34 // CHECK: load-classes.cpp:5:11: TypeRef=struct X:3:8 Extent=[5:11 - 5:12]
35 // CHECK: load-classes.cpp:6:1: CXXAccessSpecifier=:6:1 (Definition) Extent=[6:1 - 6:11] [access=pr…
36 // CHECK: load-classes.cpp:7:3: CXXDestructor=~X:7:3 Extent=[7:3 - 7:7] [access=protected]
38 // CHECK: load-classes.cpp:8:1: CXXAccessSpecifier=:8:1 (Definition) Extent=[8:1 - 8:9] [access=pri…
39 // CHECK: load-classes.cpp:9:3: CXXConversion=operator X *:9:3 Extent=[9:3 - 9:16] [access=private]
[all …]
/external/junit/src/main/java/org/junit/runner/
DJUnitCore.java28 * Run the tests contained in the classes named in the <code>args</code>.
33 * @param args names of classes in which to find tests to run
41 * Run the tests contained in <code>classes</code>. Write feedback while the tests
45 * @param classes Classes in which to find tests
48 public static Result runClasses(Class<?>... classes) { in runClasses() argument
49 return runClasses(defaultComputer(), classes); in runClasses()
53 * Run the tests contained in <code>classes</code>. Write feedback while the tests
57 * @param computer Helps construct Runners from classes
58 * @param classes Classes in which to find tests
61 public static Result runClasses(Computer computer, Class<?>... classes) { in runClasses() argument
[all …]
DRequest.java15 * JUnit did not need such a concept--tests to be run were described either by classes containing
18 * specification than just the classes.
66 * in a set of classes.
68 * @param computer Helps construct Runners from classes
69 * @param classes the classes containing the tests
70 * @return a <code>Request</code> that will cause all tests in the classes to be run
72 public static Request classes(Computer computer, Class<?>... classes) { in classes() argument
75 Runner suite = computer.getSuite(builder, classes); in classes()
85 * in a set of classes with the default <code>Computer</code>.
87 * @param classes the classes containing the tests
[all …]
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/
Dffi64.c70 /* All reference to register classes here is identical to the code in
74 These represent classes as documented by the PS ABI, with the
75 exception of SSESF, SSEDF classes, that are basically SSE class,
110 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes()
114 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes()
121 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes()
125 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes()
133 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes()
148 CLASSES will be filled by the register class used to pass each word
151 sized containers, classes[0] will be NO_CLASS and 1 is returned.
[all …]
/external/libffi/src/x86/
Dffi64.c70 /* All reference to register classes here is identical to the code in
74 These represent classes as documented by the PS ABI, with the
75 exception of SSESF, SSEDF classes, that are basically SSE class,
110 /* Rule #1: If both classes are equal, this is the resulting class. */ in merge_classes()
114 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is in merge_classes()
121 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */ in merge_classes()
125 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */ in merge_classes()
133 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class, in merge_classes()
148 CLASSES will be filled by the register class used to pass each word
151 sized containers, classes[0] will be NO_CLASS and 1 is returned.
[all …]
/external/proguard/build/
Dbuild.xml9 <property name = "classes" value = "classes"/>
23 <target name = "proguard" depends = "classes,lib">
28 destdir = "${classes}"
33 <copy todir = "${classes}">
44 basedir = "${classes}"
53 destdir = "${classes}"
58 <copy todir = "${classes}">
69 basedir = "${classes}"
73 <target name = "retrace" depends = "classes,lib">
78 destdir = "${classes}"
[all …]
Dmakefile9 CLASSES = $(PROGUARD_HOME)/classes macro
33 JAVAC_OPTIONS = -nowarn -Xlint:none -classpath $(CLASSPATH) -sourcepath $(SRC) -d $(CLASSES)
39 -C $(CLASSES) $(dir $<)
44 -C $(CLASSES) $(dir $<)
79 -rm -fr $(CLASSES) $(LIB)
83 ….properties -o -name \*.png -o -name \*.gif -o -name \*.pro \) -printf $(CLASSES)/$(dir $(1))%P\\n)
87 $(1): $(CLASSES) $(CLASSES)/$(1).class $(call RESOURCES,$(1)) $(LIB)
92 $(CLASSES) $(LIB):
95 $(CLASSES)/%.class: $(SRC)/%.java
98 $(CLASSES)/%.properties $(CLASSES)/%.png $(CLASSES)/%.gif $(CLASSES)/%.pro:
[all …]
/external/proguard/src/proguard/
DInitializer.java46 * Creates a new Initializer to initialize classes according to the given
56 * Initializes the classes in the given program class pool and library class
116 // classes whose hierarchies are referenced by the program classes. in execute()
125 // Initialize the superclass hierarchies for program classes. in execute()
132 // Initialize the superclass hierarchy of all library classes, without in execute()
156 // Collect the library classes that are directly referenced by in execute()
157 // program classes, without introspection. in execute()
164 // classes, this time with warnings. in execute()
219 // Collect the library classes that are referenced by program in execute()
220 // classes, directly or indirectly, with or without reflection. in execute()
[all …]
DClassSpecificationVisitorFactory.java30 * This factory creates visitors to efficiently travel to specified classes and
39 * classes and class members.
42 * instances that specify the classes and
45 * classes.
89 * classes and class members.
92 * that specify the classes and class members
95 * classes.
125 * classes and class members.
130 * matching classes.
139 // classes. in createClassPoolVisitor()
[all …]
/external/python/cpython2/Demo/metaclasses/
Dmeta-vladimir.txt18 1. Classes.
79 Classes can be defined in terms of other existing classes (and only
80 classes! -- don't bug me on this now). Thus, we can compose property
100 Classes define one special property, indicating whether a class
102 __bases__ and it contains a list (a tuple) of the classes the new
103 class inherits from. The classes from which a class is inheriting the
105 base classes).
121 2. Meta-classes
126 modelled successfully with classes. Or, that the way classes are
127 implemented in Python and the way classes and instances behave at
[all …]
/external/libxml2/python/
Dgenerator.py587 # This part writes part of the Python front-end classes based on
588 # mapping rules between types and classes and also based on function
594 # The type automatically remapped to generated classes
871 # with primary classes
936 classes = open("libxml2class.py", "w")
938 txt.write(" Generated Classes for libxml2-python\n\n")
948 classes.write("#\n# Functions from module %s\n#\n\n" % file)
951 classes.write("def %s(" % func)
956 classes.write(", ")
957 classes.write("%s" % arg[0])
[all …]
/external/chromium-trace/catapult/common/py_utils/py_utils/
Ddiscover.py69 'Found conflicting classes for the same key: '
74 # TODO(dtu): Normalize all discoverable classes to have corresponding module
82 """Discover all classes in |start_dir| which subclass |base_class|.
84 Base classes that contain subclasses are ignored by default.
93 directly_constructable: If True, will only return classes that can be
100 classes = {}
109 AssertNoKeyConflicts(classes, new_classes)
110 classes = dict(classes.items() + new_classes.items())
111 return classes
122 """Discover all classes in |module| which subclass |base_class|.
[all …]
/external/proguard/src/proguard/classfile/
DClassPool.java28 * This is a set of representations of classes. They can be enumerated or
35 // We're using a sorted tree map instead of a hash map to store the classes,
37 private final Map classes = new TreeMap(); field in ClassPool
45 classes.clear(); in clear()
54 classes.put(clazz.getName(), clazz); in addClass()
72 classes.remove(className); in removeClass()
83 return (Clazz)classes.get(className); in getClass()
92 return classes.keySet().iterator(); in classNames()
97 * Returns the number of classes in the class pool.
101 return classes.size(); in size()
[all …]
/external/owasp/sanitizer/
DMakefile10 @echo " default - Build documentation&classes, and run checks."
13 @echo " classes - Put Java .class files under out/."
57 out/classes: out
58 mkdir -p out/classes
66 classes: out/classes.tstamp target
67 out/classes.tstamp: out/classes src/main/org/owasp/html/*.java
68 javac -g ${JAVAC_FLAGS} -classpath ${CLASSPATH} -d out/classes \
70 touch out/classes.tstamp
73 out/examples.tstamp: out/classes.tstamp src/main/org/owasp/html/examples/*.java
74 javac -g ${JAVAC_FLAGS} -classpath ${CLASSPATH}:out/classes \
[all …]
/external/iproute2/man/man8/
Dtc.8108 classes and filters.
124 .SH CLASSES
125 Some qdiscs can contain classes, which contain further qdiscs - traffic may
127 .B classes.
130 it can come from any of the classes. A qdisc may for example prioritize
131 certain kinds of traffic by trying to dequeue from certain classes
245 is a set of contiguous qdisc classes which map 1:1 to a set of hardware exposed
320 Class Based Queueing implements a rich linksharing hierarchy of classes.
328 classes and then set up filters to classify packets accordingly. This can be
338 Hierarchical Fair Service Curve guarantees precise bandwidth and delay allocation for leaf classes
[all …]
/external/apache-commons-bcel/src/examples/
DPackage.java41 * that contains a minimal set of classes needed to run the client.
43 * Use BCEL to extract class names and read/write classes
74 * A map for all Classes, the ones we're going to package.
81 * We start at the root classes, put them in here, then go through
82 * this list, putting dependent classes in here and from there
88 * Collect all classes that could not be found in the classpath.
94 * See wheather we print the classes that were not found (default = false)
102 * Wheather we log classes during processing (default = false)
107 System.out.println(" This program packages classes and all their dependents"); in usage()
108 System.out.println(" into one jar. Give all starting classes (your main)"); in usage()
[all …]
/external/junit/src/main/java/org/junit/runners/
DSuite.java20 * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
23 * When you run this class, it will run all the tests in all the suite classes.
40 * The <code>SuiteClasses</code> annotation specifies the classes to be run when a class
48 * @return the classes to be run
64 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code>
67 * @param builder builds runners for classes in the suite
77 * @param builder builds runners for classes in the suite
78 * @param classes the classes in the suite
80 public Suite(RunnerBuilder builder, Class<?>[] classes) throws InitializationError { in Suite() argument
81 this(null, builder.runners(null, classes)); in Suite()
[all …]
/external/proguard/src/proguard/gui/
DGUIResources.properties30 keepAdditional = Keep additional classes and class members
41 If required, keep additional classes, fields, and methods as entry points.
43 If required, keep the names of additional classes, fields, and methods.
48 Ask ProGuard why it is keeping certain classes, fields, or methods.
111 repackageClasses = Repackage classes
127 skipNonPublicLibraryClasses = Skip non-public library classes
148 Remove unused classes, fields, and methods from the output.
150 Print out the list of unused classes, fields, and methods.
153 Optimize the bytecode of the processed classes.
155 Allow the optimization step to modify the access modifiers of classes, fields, and methods.
[all …]

12345678910>>...259