Searched refs:classes (Results 101 - 125 of 180) sorted by relevance

12345678

/external/emma/core/java12/com/vladium/emma/report/txt/
H A DReportGenerator.java158 row ("total classes:" + m_separator + item.getAggregate (IItem.TOTAL_CLASS_COUNT));
268 for (Iterator classes = item.getChildren (order); classes.hasNext (); )
270 final IItem cls = (IItem) classes.next ();
/external/libvpx/examples/includes/geshi/contrib/
H A Dexample.php56 // Enable CSS classes. You can use get_stylesheet() to output a stylesheet for your code. Using
57 // CSS classes results in much less output source.
81 // note that classes must be enabled for this to work.
/external/libvpx/examples/includes/geshi/geshi/
H A Dactionscript3.php23 * 5 : all flash.* class names plus Top Level classes, mx are excluded
H A Dmysql.php13 * up-to-date for current MySQL versions, and with more classes for different
16 * Some "classes" have two groups here: this is to allow for the fact that some
/external/android-mock/tests/com/google/android/testing/mocking/
H A DUsesMocksProcessorTest.java54 private Set<? extends Element> getAnnotatedElementsSet(Class<?>... classes) { argument
56 for (Class<?> clazz : classes) {
/external/doclava/src/com/google/doclava/
H A DConverter.java35 ClassDoc[] classDocs = r.classes();
41 // fill in the fields that reference other classes
58 mRootClasses = Converter.convertClasses(r.classes());
163 public static ClassInfo[] convertClasses(ClassDoc[] classes) { argument
164 if (classes == null) return null;
165 int N = classes.length;
168 result[i] = Converter.obtainClass(classes[i]);
H A DClassInfo.java635 // rearrange our little inheritance hierarchy, because we need to hide classes that
835 public static void makeLinkListHDF(Data data, String base, ClassInfo[] classes) { argument
836 final int N = classes.length;
838 ClassInfo cl = classes[i];
846 * Used in lists of this class (packages, nested classes, known subclasses)
970 // nested classes
1292 // ClassDoc.findClass won't find inner classes. To deal with that,
1332 public static ClassInfo[] sortByName(ClassInfo[] classes) { argument
1334 Sorter[] sorted = new Sorter[classes.length];
1336 ClassInfo cl = classes[
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DExecutor.java933 CtClass classes[] = null;
935 classes = Descriptor.getParameterTypes(desc, classPool);
940 if (classes == null)
943 Type[] types = new Type[classes.length];
945 types[i] = Type.get(classes[i]);
H A DAnalyzer.java214 ClassPool classes = clazz.getClassPool();
222 type = index == 0 ? Type.THROWABLE : Type.get(classes.get(constPool.getClassInfo(index)));
/external/guava/guava-tests/test/com/google/common/testing/
H A DNullPointerTesterTest.java328 * This next part consists of several sample classes that provide
332 * Add naughty classes to failClasses to verify that NullPointerTest
335 * Add acceptable classes to passClasses to verify that NullPointerTest
339 /** List of classes that NullPointerTester should pass as acceptable. */
342 /** List of classes that NullPointerTester should flag as problematic. */
522 private void checkClasses(String message, List<Class<?>> classes) { argument
523 Set<Class<?>> set = Sets.newHashSet(classes);
524 for (Class<?> clazz : classes) {
/external/llvm/bindings/ocaml/target/
H A Dllvm_target.mli13 the classes in the Target library. *)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs53 #region Helper classes
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
H A DRuntime.pm41 that may be called on objects belonging to the classes that the module provides.
/external/oprofile/libpp/
H A Dformat_output.h36 extern profile_classes classes;
59 * Set the number of collected profile classes. Each class
63 * populated with the right number of classes.
152 /// number of profile classes
/external/proguard/src/proguard/shrink/
H A DClassShrinker.java58 * @param usageMarker the usage marker that is used to mark the classes
116 // Library classes are left unchanged.
147 shrinkArray(innerClassesAttribute.classes,
250 // Consider the classes referenced by this signature.
261 // Copy the referenced classes.
270 // Skip the referenced classes.
/external/webkit/Source/WebCore/inspector/front-end/
H A DDetailedHeapshotView.js208 function aggregatesReceived(classes)
219 var node = new WebInspector.HeapSnapshotDiffNode(this, clss, baseClasses[clss], classes[clss]);
223 for (clss in classes) {
225 var node = new WebInspector.HeapSnapshotDiffNode(this, clss, null, classes[clss]);
H A DElementsPanel.js712 var classes = classAttribute.split(/\s+/);
715 if (classes.length) {
720 for (var i = 0; i < classes.length; ++i) {
721 var className = classes[i];
799 // Restore the start and end crumb classes in case they got removed in coalesceCollapsedCrumbs().
/external/webkit/Source/WebCore/rendering/
H A DRenderTreeAsText.cpp426 String classes; local
429 classes += " ";
430 classes += styledElement->classNames()[i];
432 ts << " class=\"" + classes + "\""; local
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.event_1.2.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/iproute2/doc/
H A Dip-tunnels.tex189 Tunnels are divided to two classes: {\bf pointopoint} tunnels, which
443 just because they have no queues. Instead, it is better to create classes
445 In general case of dynamic routing you should create such classes
449 and you need to setup corresponding classes only on it.
/external/llvm/bindings/ocaml/transforms/scalar/
H A Dllvm_scalar_opts.mli13 classes in the [LLVMScalarOpts] library. *)
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm307 that may be called on objects belonging to the classes that the module provides.
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.h93 QStringList classes() const;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java1155 Class classes[] = new Class[] { byte.class, short.class, int.class, field in class:Test
1164 return Arrays.equals(classes, ((Test) o).classes);
/external/checkpolicy/
H A Dpolicy_parse.y157 classes initial_sids access_vectors
165 classes : class_def label
166 | classes class_def

Completed in 594 milliseconds

12345678