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

/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/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/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/bluetooth/bluez/audio/
H A Dgateway.c274 sdp_list_t *protos, *classes; local
291 if (sdp_get_service_classes(recs->data, &classes) < 0) {
292 error("Unable to get service classes from record");
303 memcpy(&uuid, classes->data, sizeof(uuid));
304 sdp_list_free(classes, free);
H A Dheadset.c1474 sdp_list_t *classes; local
1479 if (sdp_get_service_classes(record, &classes) < 0) {
1480 error("Unable to get service classes from record");
1484 memcpy(&class, classes->data, sizeof(uuid));
1486 sdp_list_free(classes, free);
/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/WebKit/qt/tests/qwebelement/
H A Dtst_qwebelement.cpp49 void classes();
191 void tst_QWebElement::classes() function in class:tst_QWebElement
196 QCOMPARE(body.classes().count(), 0);
199 QStringList classes = p.classes(); local
200 QCOMPARE(classes.count(), 4);
201 QCOMPARE(classes[0], QLatin1String("a"));
202 QCOMPARE(classes[1], QLatin1String("b"));
203 QCOMPARE(classes[2], QLatin1String("c"));
204 QCOMPARE(classes[
[all...]
/external/webkit/WebKit/qt/Api/
H A Dqwebelement.cpp859 Returns the list of classes of this element.
861 QStringList QWebElement::classes() const function in class:QWebElement
866 QStringList classes = attribute(QLatin1String("class")).simplified().split(QLatin1Char(' '), QString::SkipEmptyParts);
868 classes.removeDuplicates();
870 int n = classes.size();
875 const QString& s = classes.at(i);
880 classes[j] = s;
884 classes.erase(classes.begin() + j, classes
[all...]
/external/webkit/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js2581 var m, parsed = {classes: [], pseudos: [], attributes: []};
2585 parsed.classes.push(cn);
2594 if (!parsed.classes.length) delete parsed.classes;
2597 if (!parsed.classes && !parsed.attributes && !parsed.pseudos) parsed = null;
2609 if (parsed.classes){
2610 for (i = parsed.classes.length; i--; i){
2611 var cn = parsed.classes[i];
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 314 milliseconds