HomeSort by relevance Sort by last modified time
    Searched refs:classes (Results 76 - 100 of 313) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/tools/common/proguard/proguard4.7/examples/
android.pro 17 -injars bin/classes
19 -outjars bin/classes-processed.jar
28 -printmapping bin/classes-processed.map
32 #-printseeds bin/classes-processed.seeds
58 # Preserve all fundamental application classes.
76 # Preserve all classes that have special context constructors, and the
83 # Preserve all classes that have special context constructors, and the
96 # Preserve static fields of inner classes of R classes that might be accessed
110 # The Android Compatibility library references some classes that may not b
    [all...]
  /external/doclava/res/assets/templates/
macros.cs 207 <?cs # A table of links to classes with descriptions, as in a package file or the nested classes ?><?cs
208 def:class_link_table(classes) ?><?cs
211 each:cl=classes ?>
220 <?cs # A list of links to classes, for use in the side navigation of classes when viewing a package (panel nav) ?><?cs
221 def:class_link_list(label, classes) ?><?cs
222 if:subcount(classes) ?>
225 each:cl=classes ?>
233 <?cs # A list of links to classes, for use in the side navigation of classes when viewing a class (panel nav) ?><?cs
    [all...]
  /cts/tools/vm-tests-tf/
Android.mk 39 $(LOCAL_BUILT_MODULE): PRIVATE_CLASS_INTERMEDIATES_DIR := $(intermediates)/classes
41 TF_BUILD_UTIL_INTERMEDIATES_CLASSES := $(intermediates)/classes
85 $(hide) cd $(PRIVATE_INTERMEDIATES)/hostjunit_files/classes && \
97 define dex-classes
111 $(call dex-classes,$(TF_BUILD_UTIL_INTERMEDIATES_CLASSES),dot/junit/DxUtil.class dot/junit/DxAbstractMain.class)
  /external/doclava/src/com/google/doclava/
DoclavaDiff.java 86 * packages.0.classes.0.qualifiedName = java.lang.Object
87 * packages.0.classes.0.sites.0.hasClass = 1
88 * packages.0.classes.0.sites.0.link = http://proja.domain.com/reference/java/lang/Object
89 * packages.0.classes.0.sites.1.hasClass = 0
90 * packages.0.classes.0.methods.0.signature = wait()
91 * packages.0.classes.0.methods.0.sites.0.hasMethod = 1
92 * packages.0.classes.0.methods.0.sites.0.link = http://proja.domain.com/reference/java/lang/Object#wait
93 * packages.0.classes.0.methods.0.sites.1.hasMethod = 0
135 String classBase = packageBase + ".classes." + (c++);
208 * Returns all known classes from all sites for a given package
217 HashMap<String, ClassInfo> classes = packageInfo.allClasses(); local
223 List<String> classes = new ArrayList<String>(allClasses); local
263 List<String> classes = knownClassesForPackage(pkg, sites); local
    [all...]
TodoFile.java 71 ClassInfo[] classes = Converter.rootClasses(); local
72 Arrays.sort(classes);
76 for (ClassInfo cl : classes) {
81 String classBase = "classes." + classIndex;
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm 135 my $classes = $useDocument->classes;
136 foreach my $class (@$classes) {
145 my $classes = $useDocument->classes;
146 foreach my $class (@$classes) {
297 foreach my $interface (@{$document->classes}) {
IDLStructure.pm 31 classes => '@', # All parsed interfaces
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 49 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[3], QLatin1String("d"))
    [all...]
  /build/core/tasks/
cts.mk 72 # $4 : The package prefix of classes to include, possible empty
89 GEN_CLASSPATH := $(CORE_INTERMEDIATES)/classes.jar:$(BOUNCYCASTLE_INTERMEDIATES)/classes.jar:$(APACHEXML_INTERMEDIATES)/classes.jar:$(JUNIT_INTERMEDIATES)/classes.jar:$(SQLITEJDBC_INTERMEDIATES)/javalib.jar:$(CORETESTS_INTERMEDIATES)/javalib.jar
100 # Why does this depend on javalib.jar instead of classes.jar? Because
101 # even though the tool will operate on the classes.jar files, the
103 # javalib.jar is up-to-date, then classes.jar is as well. Depending
104 # on classes.jar will build the files incorrectly.
136 # core tests only needed to get hold of junit-framework-classes
    [all...]
  /external/oprofile/libpp/
xml_utils.cpp 42 return classes.v[0].ptemplate.cpu != "all";
48 return classes.v[pclass].ptemplate.event;
87 cverb << vxml << "<!-- classes dump" << endl;
88 cverb << vxml << classes.event;
89 cverb << vxml << "classes.size= " << classes.v.size() << endl;
90 for (size_t i = 0; i < classes.v.size(); ++i) {
91 cverb << vxml << "--- class " << i << ":" << classes.v[i].name << " ---" << endl;
92 cverb << vxml << classes.v[i].ptemplate;
100 return classes.v[0].ptemplate.tid != "all"
    [all...]
arrange_profiles.h 4 * into merged sets and classes.
122 * files into the classes. Only one is allowed.
147 /// the actual classes
150 /// the axis of the classes
157 bool matches(profile_classes const & classes);
171 * classes containing profile_sets. Merging is done at this stage
174 * The classes correspond to the columns you'll get in opreport:
244 invert_profiles(profile_classes const & classes);
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
TextReport.java 51 List<ApiClass> classes = new ArrayList<ApiClass>(apiPackage.getClasses()); local
52 Collections.sort(classes, comparator);
53 for (ApiClass apiClass : classes) {
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerHelp.java 115 // Containing classes
189 Set<Class<?>> classes = Sets.newTreeSet(CLASS_SORTER); local
190 getAllExportedClasses(fields, methods, constructors, classes);
192 for (Class<?> clz : classes) {
248 Set<Class<?>> classes = Sets.newTreeSet(CLASS_SORTER); local
249 getAllExportedClasses(fields, methods, constructors, classes);
251 // The classes object only captures classes that are specifically exporter, which isn't
252 // good enough. So go through all the fields, methods, etc. and collect those classes as
255 allClasses.addAll(classes);
    [all...]
  /dalvik/vm/
InitRefs.cpp 18 * Code to initialize references to classes and members for use by
45 static struct { ClassObject** ref; const char* name; } classes[] = { local
51 /* The corest of the core classes */
55 /* Slightly less core, but still down there, classes */
76 /* Exception classes */
118 /* Other classes */
146 for (i = 0; classes[i].ref != NULL; i++) {
147 if (!initClassReference(classes[i].ref, classes[i].name)) {
258 static struct { const char* name; const struct FieldInfo* fields; } classes[] = local
    [all...]
  /dalvik/vm/reflect/
Proxy.cpp 78 ALOGV("+++ Generate proxy class '%s' %p from %d interface classes",
94 * TODO: set protection domain so it matches bootstrap classes.
235 * We also allocate an array of arrays of throwable classes, one for each
242 ClassObject** classes; local
256 classes = (ClassObject**)(void*)interfaces->contents;
258 for (i = 0; i < numInterfaces; i++, classes++) {
259 ClassObject* clazz = *classes;
294 classes = (ClassObject**)(void*)interfaces->contents;
295 for (i = 0; i < numInterfaces; i++, classes++) {
296 ClassObject* clazz = *classes;
570 const ClassObject** classes = local
1018 const ClassObject** classes = local
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/
StubGenerator.java 36 * Given a set of already filtered classes, this filters out all private members,
37 * stubs the remaining classes and then generates a Jar out of them.
51 * Generate source for the stubbed classes, mostly for debug purposes.
55 Map<String, ClassReader> classes,
60 for (Entry<String, ClassReader> entry : classes.entrySet()) {
85 * @param all The map of all classes to output.
  /external/junit/src/org/junit/runners/
Suite.java 19 * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
22 * When you run this class, it will run all the tests in all the suite classes.
37 * The <code>SuiteClasses</code> annotation specifies the classes to be run when a class
45 * @return the classes to be run
60 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code>
63 * @param builder builds runners for classes in the suite
74 * @param builder builds runners for classes in the suite
75 * @param classes the classes in the suite
78 public Suite(RunnerBuilder builder, Class<?>[] classes) throws InitializationError
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebRenderLayer.mm 62 String classes;
65 classes += " ";
66 classes += styledElement->classNames()[i];
68 name = [name stringByAppendingFormat:@" class=\"%@\"", (NSString *)classes];
  /frameworks/base/services/input/
EventHub.cpp 164 classes(0), configuration(NULL), virtualKeyMap(NULL),
268 return device->classes;
    [all...]
  /external/clang/include/clang/AST/
Makefile 11 $(Echo) "Building Clang attribute classes with tblgen"
12 $(Verb) $(ClangTableGen) -gen-clang-attr-classes -o $(call SYSPATH, $@) \
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-bcel.jar 
  /external/junit/src/junit/framework/
TestSuite.java 36 * <p>A final option is to do the same for a large array of test classes.
174 * Constructs a TestSuite from the given array of classes.
175 * @param classes {@link TestCase}s
177 public TestSuite (Class<?>... classes) {
178 for (Class<?> each : classes)
190 * Constructs a TestSuite from the given array of classes with the given name.
193 public TestSuite(Class<? extends TestCase>[] classes, String name) {
194 this(classes);
  /external/opencv/ml/src/
_ml.h 114 uchar* classes; int clstep; int ncl;- trainClasses
126 uchar* classes; \
142 data = classes = tmask = missed = sidx = cidx = NULL; \
165 ICV_MAT2VEC( *(param), classes, clstep, ncl ); \
250 /* Generates a set of classes centers in quantity <num_of_clusters> that are generated as
303 cvSortSamplesByClasses( const float** samples, const CvMat* classes,
  /external/protobuf/
configure.ac 35 [include classes for streaming compressed data in and out @<:@default=check@:>@])],
102 AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.])
  /external/javassist/src/main/javassist/
ClassPool.java 47 * 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...]

Completed in 2426 milliseconds

1 2 34 5 6 7 8 91011>>