HomeSort by relevance Sort by last modified time
    Searched refs:classes (Results 226 - 250 of 1955) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jline/src/src/main/java/jline/
ClassNameCompletor.java 17 * it scans the java class path to locate all the classes.
24 * Complete candidates using all the classes available in the
51 // some JVMs do not report the core classes jar in the list of
70 Set classes = new HashSet(); local
79 classes.addAll(files);
107 classes.add(name);
111 // now filter classes by changing "/" to "." and trimming the
115 for (Iterator i = classes.iterator(); i.hasNext();) {
  /external/libphonenumber/
Android.mk 31 --classpath out/target/common/obj/JAVA_LIBRARIES/libphonenumber-test_intermediates/classes.jack \
  /external/libvpx/libvpx/vp9/common/
vp9_entropymv.c 122 comp_counts->classes[c] += incr;
172 vpx_tree_merge_probs(vp9_mv_class_tree, pre_comp->classes, c->classes,
173 comp->classes);
vp9_entropymv.h 90 vpx_prob classes[MV_CLASSES - 1]; member in struct:__anon26169
116 unsigned int classes[MV_CLASSES]; member in struct:__anon26171
  /external/oj-libjdwp/src/share/back/
classTrack.c 26 * This module tracks classes that have been prepared, so as to
28 * all prepared classes are put in a table. As class prepare
31 * of classes; this list is compared against the table keep by
32 * this module, any classes no longer present are known to
39 * track of the status of classes using JVMTI tags.
41 * We keep a linked-list of the signatures of loaded classes
46 * ObjectFree event be called for each of these classes. This
47 * allows us to keep a running list of all the classes known to
65 * holding the event handlerLock. The list of freed classes is
80 * pointer to first node of a linked list of prepared classes KlassNodes
292 jclass *classes; local
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
ListVtablesCommand.java 50 @Parameters(commandDescription = "Lists the virtual method tables for classes in a dex file.")
66 @Parameter(names = "--classes",
67 description = "A comma separated list of classes. Only print the vtable for these classes")
68 @ExtendedParameter(argumentNames = "classes")
69 private List<String> classes = null; field in class:ListVtablesCommand
102 if (classes != null && !classes.isEmpty()) {
103 for (String cls: classes) {
  /external/testng/src/test/java/test/
SimpleBaseTest.java 58 protected XmlTest createXmlTest(XmlSuite suite, String name, Class clazz, Class... classes) {
62 XmlClass xc = new XmlClass(clazz.getName(), index++, true /* load classes */);
64 for (Class c : classes) {
65 xc = new XmlClass(c.getName(), index++, true /* load classes */);
72 protected XmlTest createXmlTest(XmlSuite suite, String name, String... classes) {
76 for (String c : classes) {
77 XmlClass xc = new XmlClass(c, index++, true /* load classes */);
  /external/turbine/java/com/google/turbine/binder/bytecode/
BytecodeBinder.java 39 List<Type.ClassTy.SimpleClassTy> classes = new ArrayList<>(); local
40 for (Sig.SimpleClassTySig s : sig.classes()) {
50 classes.add(new Type.ClassTy.SimpleClassTy(sym, tyArgs.build(), ImmutableList.of()));
53 return new Type.ClassTy(classes);
  /system/tools/aidl/
ast_cpp_unittest.cpp 130 vector<unique_ptr<Declaration>> classes; local
131 classes.push_back(std::move(test));
132 classes.push_back(std::move(test_sub));
135 std::move(classes)}};
  /art/tools/
generate-boot-image-profile.sh 23 echo "Also outputs <output>.txt and <output>.preloaded-classes"
66 "$ANDROID_HOST_OUT/bin/profman" --dump-classes-and-methods "--profile-file=$OUT_PROFILE" "${jar_args[@]}" > "$OUT_PROFILE.txt"
68 # Generate preloaded classes
69 # Filter only classes by using grep -v
72 grep -v "\\->" "$OUT_PROFILE.txt" | sed 's/.\(.*\)./\1/g' | tr "/" "." > "$OUT_PROFILE.preloaded-classes"
74 # You may need to filter some classes out since creating threads is not allowed in the zygote.
  /dalvik/dx/tests/127-merge-stress/
run 43 # classes.dex file. DexMerger assumes file contents based on the
48 unzip -l "$dex" 2>&1 | grep -q -m 1 classes.dex
  /development/samples/ApiDemos/tests/
Android.mk 16 # 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()) {
  /external/desugar/java/com/google/devtools/common/options/
OptionsData.java 57 * OptionsBase} classes. In addition to the work done to construct the {@link
62 static OptionsData from(Collection<Class<? extends OptionsBase>> classes) {
63 IsolatedOptionsData isolatedData = IsolatedOptionsData.from(classes);
  /external/guava/guava-testlib/test/com/google/common/collect/testing/features/
FeatureEnumTest.java 75 final Class<?>[] classes = featureEnumClass.getDeclaredClasses(); local
76 for (Class<?> containedClass : classes) {
  /external/guice/core/src/com/google/inject/internal/util/
SourceProvider.java 69 private static List<String> asStrings(Class... classes) {
71 for (Class c : classes) {
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
AnalyzerTest.java 56 private Map<String, IClassCoverage> classes; field in class:AnalyzerTest
65 classes.put(name, coverage));
71 classes = new HashMap<String, IClassCoverage>();
88 assertFalse(classes.get("org/jacoco/core/analysis/AnalyzerTest")
100 assertFalse(classes.get("org/jacoco/core/analysis/AnalyzerTest")
110 assertTrue(classes.get("org/jacoco/core/analysis/AnalyzerTest")
254 assertEquals(Collections.emptyMap(), classes); local
361 classes.keySet());
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 11 * representation, the classes in the VMCore library.
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 13 the classes in the Linker library. *)
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
SearchWorkingInstantiator.java 51 SortedSet<String> classes = ClassEnumerator.getClassesForPackage(ObjectInstantiator.class.getPackage()); local
53 for (Iterator<String> it = classes.iterator(); it.hasNext();) {
  /external/swiftshader/third_party/LLVM/bindings/ocaml/bitwriter/
llvm_bitwriter.ml 11 * representation, the classes in the VMCore library.
  /external/testng/src/test/java/test/failures/
BaseFailuresTest.java 16 // protected TestNG run(Class[] classes, String outputDir) {
17 // return run(new TestNG(), classes, outputDir);
24 protected TestNG run(TestNG result, Class[] classes, String outputDir) {
27 result.setTestClasses(classes);
  /frameworks/base/core/java/com/android/internal/util/
MessageUtils.java 44 * Finds the names of integer constants. Searches the specified {@code classes}, looking for
48 * @param classes the classes to examine.
52 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) {
54 for (Class c : classes) {
122 * Finds the names of integer constants. Searches the specified {@code classes}, looking for
125 * @param classNames the classes to examine.
  /frameworks/base/packages/SettingsProvider/test/
Android.mk 7 # Note we statically link several classes to do some unit tests. It's not accessible otherwise
  /frameworks/base/tests/SmokeTest/tests/
Android.mk 12 # automatically get all of its classes loaded into our environment.

Completed in 3242 milliseconds

1 2 3 4 5 6 7 8 91011>>