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

1 23 4 5 6 7 8 91011>>

  /external/oprofile/pp/
opannotate_options.cpp 29 profile_classes classes;
143 classes = arrange_profiles(sample_files, merge_by,
146 cverb << vsfile << "profile_classes:\n" << classes << endl;
148 if (classes.v.empty()) {
opreport_options.cpp 31 profile_classes classes;
243 /// process a spec into classes
244 void process_spec(profile_classes & classes, list<string> const & spec)
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 are incompatible" << endl
    [all...]
opreport.cpp 207 cout << classes.cpuinfo << endl;
208 if (!classes.event.empty())
209 cout << classes.event << endl;
212 i < classes.v.size(); ++i) {
213 cout << classes.v[i].longname << endl;
244 for (size_t i = 0; i < classes.v.size(); ++i) {
245 string name = classes.v[i].name;
261 for (size_t i = 0; i < classes.v.size(); ++i) {
274 for (size_t i = 0; i < classes.v.size(); ++i) {
502 nr_classes = classes.v.size()
    [all...]
oparchive.cpp 106 string archive_path = classes.extra_found_images.get_archive_path();
116 list<inverted_profile> iprofiles = invert_profiles(classes);
118 report_image_errors(iprofiles, classes.extra_found_images);
129 classes.extra_found_images.find_image_path(it->image,
133 exe_name = classes.extra_found_images.strip_path_prefix(real_exe_name);
168 debug_filename, classes.extra_found_images)) {
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Output.java 97 * Prints the list of classes in a simple human-readable format.
99 static void printClassRefs(ClassRef[] classes, boolean justClasses) {
101 out.println("Classes:");
104 for (int i = 0; i < classes.length; i++) {
105 ClassRef ref = classes[i];
114 static void printFieldRefs(ClassRef[] classes) {
116 for (int i = 0; i < classes.length; i++) {
117 FieldRef[] fields = classes[i].getFieldArray();
131 static void printMethodRefs(ClassRef[] classes) {
133 for (int i = 0; i < classes.length; i++)
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
Classes.java 9 public class Classes {
17 System.out.println("Classes.checkCast");
19 Classes classes; local
22 classes = (Classes) thisRef;
23 assert(thisRef instanceof Classes);
24 classes = (Classes) moreRef;
25 assert(moreRef instanceof Classes);
197 Classes classes = new Classes(); local
    [all...]
  /external/regex-re2/re2/
make_perl_groups.pl 7 # for POSIX/Perl character classes. Rather than
79 my ($cname, @classes) = @_;
81 foreach my $cl (@classes) {
  /libcore/
run-libcore-tests 8 # We enumerate the test packages for vogar rather than just giving it the classes.jar
25 --classpath out/target/common/obj/JAVA_LIBRARIES/sqlite-jdbc_intermediates/classes.jar \
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
Api.java 68 private Api(Map<String, ApiClass> classes) {
69 mClasses = new HashMap<String, ApiClass>(classes);
  /external/javassist/src/main/javassist/scopedpool/
ScopedClassPool.java 121 classes.clear();
132 classes.remove(classname);
145 classes.remove(clazz.getName());
250 CtClass cached = (CtClass)classes.get(classname);
270 CtClass clazz = (CtClass)classes.get(classname);
303 // org.apache.jsp. For classes belonging to org.apache.jsp,
  /build/core/
dex_preopt.mk 28 # $(1): the .jar or .apk to remove classes.dex
29 define dexpreopt-remove-classes.dex
30 $(hide) $(AAPT) remove $(1) classes.dex
59 $$(call dexpreopt-remove-classes.dex,$$@)
java.mk 17 # It's possible to build a package that doesn't contain any classes.
62 ifneq ($(filter classes-compiled.jar classes.jar,$(LOCAL_BUILT_MODULE_STEM)),)
83 full_classes_compiled_jar_leaf := classes-no-debug-var.jar
84 built_dex_intermediate_leaf := classes-no-local.dex
86 full_classes_compiled_jar_leaf := classes-full-debug.jar
87 built_dex_intermediate_leaf := classes-with-local.dex
100 proguard_jar_leaf := proguard.classes.jar
102 built_dex_leaf := proguard.classes.dex
104 proguard_jar_leaf := noproguard.classes.ja
    [all...]
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
XmlReport.java 67 List<ApiClass> classes = new ArrayList<ApiClass>(pkg.getClasses()); local
68 Collections.sort(classes, comparator);
70 for (ApiClass apiClass : classes) {
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 55 * they can be sent across the network. Serializing classes should extend
98 // Registers the classes we already have serializers for.
123 // all the Collection classes go here
136 // All the Map classes go here
155 * When set to true, classes that do not have intrinsic IDs in their
168 public static void registerClasses(Class... classes) {
169 for( Class c : classes ) {
225 ArrayList<Class> classes = new ArrayList<Class>(); local
227 classes.addAll(findClasses(directory, pkgName));
230 SerializerRegistration[] registeredClasses = new SerializerRegistration[classes.size()]
243 List<Class> classes = new ArrayList<Class>(); local
    [all...]
  /sdk/apigenerator/src/com/android/apigenerator/enumfix/
AndroidJarReader.java 122 private ApiClass addClass(HashMap<String, ApiClass> classes, String name, int apiLevel) {
123 ApiClass theClass = classes.get(name);
126 classes.put(name, theClass);
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 30 * Tests that native delegate classes implement all the required methods.
32 * This looks at {@link CreateInfo#DELEGATE_CLASS_NATIVES} to get the list of classes that
46 final String[] classes = CreateInfo.DELEGATE_CLASS_NATIVES; local
47 final int count = classes.length;
49 loadAndCompareClasses(classes[i], classes[i] + "_Delegate");
68 // load the classes
  /development/samples/ApiDemos/tests/
Android.mk 14 # automatically get all of its classes loaded into our environment.
  /development/tools/mkstubs/src/com/android/mkstubs/
SourceGenerator.java 34 * Given a set of already filtered classes, this filters out all private members and then
35 * generates the Java source for the remaining classes.
49 * Generate source for the stubbed classes, mostly for debug purposes.
53 Map<String, ClassReader> classes,
56 for (Entry<String, ClassReader> entry : classes.entrySet()) {
Main.java 51 /** Sets the name of the input jar, where to read classes from. Must not be null. */
56 /** Sets the name of the output jar, where to write classes to. Must not be null. */
61 /** Returns the name of the input jar, where to read classes from. */
66 /** Returns the name of the output jar, where to write classes to. */
256 System.out.println("Usage: mkstub [--h|--s|--v] input.jar output.jar [excluded-class @excluded-classes-file ...]");
265 "+com.package.Class[$Inner] or ...Class*: whole classes with optional glob\n" +
270 "-com.package.Class[$Inner] or ...Class*: whole classes with optional glob\n" +
280 * <li> Read the input Jar to get all its classes.
281 * <li> Filter out all classes that should not be included or that should be excluded.
282 * <li> Goes thru the classes, filters methods/fields and generate their sourc
290 Map<String, ClassReader> classes = aa.parseInputJar(p.getInputJarPath()); local
    [all...]
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
BinaryExporter.java 51 * 1. "number of classes" - four bytes - int value representing the number of
157 private HashMap<String, BinaryClassObject> classes field in class:BinaryExporter
176 classes.clear();
189 int classNum = classes.keySet().size();
195 for (String key : classes.keySet()) {
196 BinaryClassObject bco = classes.get(key);
256 byte[] aliasBytes = fixClassAlias(classes.get(savableName).alias, aliasSize);
292 logger.log(Level.INFO, "classes: {0}", classNum);
351 classes.put(clazz.getName(), bco);
361 BinaryClassObject bco = classes.get(object.getClass().getName())
    [all...]
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 11 * representation, the classes in the VMCore library.
  /external/proguard/examples/annotations/
examples.pro 3 # specifying which classes and class members should be kept.
12 -injars classes(*.class)
34 # Preserve all native method names and the names of their classes.
41 # classes.
51 # If your code contains serializable classes that have to be backward
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 12 # automatically get all of its classes loaded into our environment.
  /external/android-mock/tests/com/google/android/testing/mocking/
AndroidFrameworkMockGeneratorTest.java 38 private void cleanupGeneratedClasses(CtClass... classes) {
39 for (CtClass clazz : classes) {
75 private List<String> getClassNames(List<GeneratedClassFile> classes) {
77 for (GeneratedClassFile clazz : classes) {
91 List<GeneratedClassFile> classes = mockGenerator.createMocksForClass(Object.class, version); local
97 List<String> actualNames = getClassNames(classes);
  /external/doclava/res/assets/templates/
hierarchy.cs 25 <?cs def:hierarchy_list(classes) ?>
26 <?cs each:cl = classes ?>
55 <?cs call:hierarchy_list(classes) ?>

Completed in 1148 milliseconds

1 23 4 5 6 7 8 91011>>