Searched defs:classes (Results 1 - 25 of 35) sorted by relevance

12

/external/doclava/src/com/google/doclava/
H A DHierarchy.java26 public static void makeHierarchy(Data hdf, ClassInfo[] classes) { argument
29 for (ClassInfo cl : classes) {
59 hdf.setValue("classes.0", "");
62 recurse(nodes, "java.lang.Object", hdf.getChild("classes.0"), depth, depth);
67 System.err.println("The following classes are hidden but"
68 + " are superclasses of not-hidden classes");
H A DNavTree.java61 private static void addClassNodes(List<Node> parent, String label, ClassInfo[] classes) { argument
64 for (ClassInfo cl : classes) {
H A DPackageInfo.java89 // TODO should return false if all classes are hidden but the package isn't.
110 public static ClassInfo[] filterHidden(ClassInfo[] classes) { argument
113 for (ClassInfo cl : classes) {
133 ClassInfo.makeLinkListHDF(data, base + ".classes", ordinaryClasses());
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 DDoclava.java561 ClassInfo[] classes = Converter.rootClasses();
564 for (ClassInfo cl : classes) {
700 ClassInfo[] classes = Converter.rootClasses();
703 for (ClassInfo cl : classes) {
766 * Writes the list of classes that must be present in order to provide the non-hidden APIs known
805 ClassInfo[] classes = Converter.rootClasses();
807 for (ClassInfo cl : classes) {
909 makeClassListHDF(data, "package.classes", ClassInfo.sortByName(pkg.ordinaryClasses()));
927 ClassInfo[] classes = PackageInfo.filterHidden(Converter.convertClasses(root.classes()));
1030 makeClassListHDF(Data data, String base, ClassInfo[] classes) argument
[all...]
/external/freetype/src/base/
H A Dftinit.c97 /* count all module classes */
107 /* destroy all module classes */
110 if ( classes[i] ) { FT_Destroy_Class_##x(library, classes[i]); } \
116 FT_Module_Class** classes; local
125 classes = pic_container->default_module_classes;
130 FT_FREE( classes );
134 /* initialize all module classes and the pointer table */
139 classes[i++] = clazz;
146 FT_Module_Class** classes; local
[all...]
/external/proguard/src/proguard/classfile/attribute/
H A DInnerClassesAttribute.java27 * This Attribute represents an inner classes attribute.
34 public InnerClassesInfo[] classes; field in class:InnerClassesAttribute
50 InnerClassesInfo[] classes)
55 this.classes = classes;
69 * Applies the given visitor to all inner classes.
77 innerClassesInfoVisitor.visitInnerClassesInfo(clazz, classes[index]);
48 InnerClassesAttribute(int u2attributeNameIndex, int u2classesCount, InnerClassesInfo[] classes) argument
/external/android-mock/tests/com/google/android/testing/mocking/
H A DAndroidFrameworkMockGeneratorTest.java38 private void cleanupGeneratedClasses(CtClass... classes) { argument
39 for (CtClass clazz : classes) {
75 private List<String> getClassNames(List<GeneratedClassFile> classes) { argument
77 for (GeneratedClassFile clazz : classes) {
91 List<GeneratedClassFile> classes = mockGenerator.createMocksForClass(Object.class, version);
97 List<String> actualNames = getClassNames(classes);
H A DClassTypeTests.java50 Map<String, List<String>> expectedMethods, List<GeneratedClassFile> classes)
52 for (GeneratedClassFile clazz : classes) {
94 // That's ok, we're just defrosting any classes that affect us that were created
159 List<GeneratedClassFile> classes =
161 assertEquals(2, classes.size());
162 assertAllMethodNames(expectedNames, expectedMethods, classes);
173 List<GeneratedClassFile> classes =
175 assertEquals(2, classes.size());
176 assertAllMethodNames(expectedNames, expectedMethods, classes);
182 List<GeneratedClassFile> classes
49 assertAllMethodNames(List<String> expectedNames, Map<String, List<String>> expectedMethods, List<GeneratedClassFile> classes) argument
[all...]
H A DUsesMocksProcessorTest.java54 private Set<? extends Element> getAnnotatedElementsSet(Class<?>... classes) { argument
56 for (Class<?> clazz : classes) {
H A DAndroidMockGeneratorTest.java48 private void cleanupGeneratedClasses(CtClass... classes) { argument
49 for (CtClass clazz : classes) {
115 private List<String> getClassNames(List<GeneratedClassFile> classes) { argument
117 for (GeneratedClassFile clazz : classes) {
524 List<GeneratedClassFile> classes = mockGenerator.createMocksForClass(Object.class);
531 List<String> actualNames = getClassNames(classes);
/external/proguard/src/proguard/classfile/
H A DClassPool.java29 * This is a set of representations of classes. They can be enumerated or
36 private final Map classes = new HashMap(); field in class:ClassPool
44 classes.clear();
53 classes.put(clazz.getName(), clazz);
62 classes.remove(clazz.getName());
73 return (Clazz)classes.get(ClassUtil.internalClassNameFromClassType(className));
82 return classes.keySet().iterator();
87 * Returns the number of classes in the class pool.
91 return classes.size();
105 * Applies the given ClassVisitor to all classes i
[all...]
/external/junit/src/junit/framework/
H A DTestSuite.java30 * A final option is to do the same for a large array of test classes.
165 * Constructs a TestSuite from the given array of classes.
166 * @param classes
168 public TestSuite (Class[] classes) { argument
169 for (int i= 0; i < classes.length; i++)
170 addTest(new TestSuite(classes[i]));
174 * Constructs a TestSuite from the given array of classes with the given name.
177 public TestSuite(Class[] classes, String name) { argument
178 this(classes);
/external/oprofile/pp/
H A Dopreport_options.cpp31 profile_classes classes;
243 /// process a spec into classes
244 void process_spec(profile_classes & classes, list<string> const & spec) argument
266 classes = arrange_profiles(sample_files, merge_by,
269 cverb << vsfile << "profile_classes:\n" << classes << endl;
271 if (classes.v.empty()) {
319 process_spec(classes, spec.common);
326 process_spec(classes, spec.first);
330 if (!classes.matches(classes2)) {
331 cerr << "profile classes ar
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DReferenceValue.java261 // See if we can take into account the referenced classes.
291 System.out.println(" This super classes: "+thisSuperClasses);
292 System.out.println(" Other super classes: "+otherSuperClasses);
300 System.out.println(" Common super classes: "+thisSuperClasses);
388 * set of classes.
390 private int superClassCount(Clazz subClass, Set classes) argument
394 Iterator iterator = classes.iterator();
/external/qemu/distrib/sdl-1.2.12/src/joystick/macos/
H A DSDL_sysjoystick.c68 static ISpDeviceClass classes[4] = { local
94 for ( i=0; classes[i]; ++i ) {
97 classes[i],
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DMapMaker.java84 public static StackMapTable make(ClassPool classes, MethodInfo minfo) argument
95 MapMaker mm = new MapMaker(classes, minfo, ca);
105 public static StackMap make2(ClassPool classes, MethodInfo minfo) argument
116 MapMaker mm = new MapMaker(classes, minfo, ca);
121 public MapMaker(ClassPool classes, MethodInfo minfo, CodeAttribute ca) { argument
122 super(classes, minfo.getConstPool(),
H A DTracer.java39 public Tracer(ClassPool classes, ConstPool cp, int maxStack, int maxLocals, argument
41 classPool = classes;
/external/bluetooth/bluez/audio/
H A Dgateway.c271 sdp_list_t *protos, *classes; local
288 if (sdp_get_service_classes(recs->data, &classes) < 0) {
289 error("Unable to get service classes from record");
300 memcpy(&uuid, classes->data, sizeof(uuid));
301 sdp_list_free(classes, free);
/external/javassist/src/main/javassist/
H A DClassPool.java47 * that have been created so that the consistency among modified classes
51 * should be recreated, for example, every hundred classes processed.
140 protected Hashtable classes; // should be synchronous field in class:ClassPool
181 this.classes = new Hashtable(INIT_HASH_SIZE);
187 classes.put(pt[i].getName(), pt[i]);
232 * caching of classes.
238 return (CtClass)classes.get(classname);
243 * caching of classes.
249 classes.put(classname, c);
254 * caching of classes
[all...]
/external/libffi/src/x86/
H A Dffi64.c49 /* All reference to register classes here is identical to the code in
53 These represent classes as documented by the PS ABI, with the exception
54 of SSESF, SSEDF classes, that are basically SSE class, just gcc will
88 /* Rule #1: If both classes are equal, this is the resulting class. */
92 /* Rule #2: If one of the classes is NO_CLASS, the resulting class is
99 /* Rule #3: If one of the classes is MEMORY, the result is MEMORY. */
103 /* Rule #4: If one of the classes is INTEGER, the result is INTEGER. */
111 /* Rule #5: If one of the classes is X87, X87UP, or COMPLEX_X87 class,
129 sized containers, classes[0] will be NO_CLASS and 1 is returned.
134 classify_argument (ffi_type *type, enum x86_64_reg_class classes[], argument
234 examine_argument(ffi_type *type, enum x86_64_reg_class classes[MAX_CLASSES], _Bool in_return, int *pngpr, int *pnsse) argument
279 enum x86_64_reg_class classes[MAX_CLASSES]; local
346 enum x86_64_reg_class classes[MAX_CLASSES]; local
484 enum x86_64_reg_class classes[MAX_CLASSES]; local
511 enum x86_64_reg_class classes[MAX_CLASSES]; local
[all...]
/external/webkit/Source/WebKit/qt/tests/qwebelement/
H A Dtst_qwebelement.cpp49 void classes();
192 void tst_QWebElement::classes() function in class:tst_QWebElement
197 QCOMPARE(body.classes().count(), 0);
200 QStringList classes = p.classes(); local
201 QCOMPARE(classes.count(), 4);
202 QCOMPARE(classes[0], QLatin1String("a"));
203 QCOMPARE(classes[1], QLatin1String("b"));
204 QCOMPARE(classes[2], QLatin1String("c"));
205 QCOMPARE(classes[
[all...]
/external/oprofile/libpp/
H A Darrange_profiles.cpp4 * into merged sets and classes.
63 // The profile classes are used to traverse the sample data
67 // process and thread classes be the outermost nesting level of
116 bool profile_classes::matches(profile_classes const & classes) argument
118 if (v.size() != classes.v.size())
121 axis_types const axis2 = classes.axis;
139 vector<profile_class>::const_iterator it2 = classes.v.begin();
176 void report_error(profile_classes const & classes, axis_types newaxis) argument
179 str += axes[classes.axis].name;
181 vector<profile_class>::const_iterator it = classes
216 allow_axes(profile_classes const & classes, axis_types newaxis) argument
316 name_classes(profile_classes & classes, merge_option const & merge_by) argument
363 identify_classes(profile_classes & classes, merge_option const & merge_by) argument
418 identify_xml_classes(profile_classes & classes, merge_option const & merge_by) argument
491 find_class(set<profile_class> & classes, parsed_filename const & parsed, merge_option const & merge_by) argument
675 profile_classes classes; local
827 invert_profiles(profile_classes const & classes) argument
[all...]
/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/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);

Completed in 1685 milliseconds

12