HomeSort by relevance Sort by last modified time
    Searched full:class_path (Results 1 - 25 of 67) sorted by null

1 2 3

  /art/runtime/
parsed_options_test.cc 39 std::string class_path; local
46 class_path += ":";
50 class_path += dex_file_name;
52 boot_class_path += class_path;
57 options.push_back(std::make_pair(class_path.c_str(), nullptr));
59 options.push_back(std::make_pair(class_path.c_str(), nullptr));
83 EXPECT_PARSED_EQ(class_path, Opt::BootClassPath);
84 EXPECT_PARSED_EQ(class_path, Opt::ClassPath);
common_runtime_test.cc 579 std::vector<const DexFile*> class_path; local
583 class_path.push_back(dex_file.get());
587 class_path.push_back(dex_file.get());
593 class_path);
608 std::vector<const DexFile*> class_path; local
611 class_path.push_back(dex_file.get());
619 class_path,
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 90 String class_path[] = Utils.getClassFieldFromString(dAsm.getClassName()); local
91 String class_name = class_path[1];
95 if (class_path[0] != null) {
96 String class_dir = class_path[0].replaceAll("/|\\.", Character.toString(File.separatorChar));
JavacBuildStep.java 77 fileManager.setLocation(StandardLocation.CLASS_PATH, classPathFiles);
BuildDalvikSuite.java 77 private static String CLASS_PATH = "";
125 CLASS_PATH = args[2];
291 HOSTJUNIT_CLASSES_OUTPUT_FOLDER, CLASS_PATH);
294 srcBuildStep = new JavacBuildStep(CLASSES_OUTPUT_FOLDER, CLASS_PATH);
  /art/test/071-dexfile-map-clean/src/
Main.java 27 private static final String CLASS_PATH =
71 "ERROR: Memory mapping for " + CLASS_PATH + " is unexpectedly dirty");
113 if (smapsLines[i].contains(CLASS_PATH)) {
121 System.out.println("Could not find " + CLASS_PATH + " RO-anonymous smaps entry");
133 Object dexFile = DexFile_loadDex.invoke(null, CLASS_PATH, null, 0);
  /art/test/071-dexfile/src/
Main.java 27 private static final String CLASS_PATH = System.getenv("DEX_LOCATION") + "/071-dexfile-ex.jar";
88 return (ClassLoader) DexClassLoader_init.newInstance(CLASS_PATH,
102 Object dexFile = DexFile_loadDex.invoke(null, CLASS_PATH, null, 0);
  /cts/tools/dasm/src/dasm/
Main.java 110 String class_path[] = Utils local
112 String class_name = class_path[1];
116 if (class_path[0] != null) {
117 String class_dir = class_path[0].replaceAll("/|\\.", Character
  /art/dex2oat/linker/
image_test.h 146 std::vector<const DexFile*> class_path = class_linker->GetBootClassPath(); local
154 class_path.push_back(dex_file.get());
158 for (const DexFile* dex_file : class_path) {
167 for (int i = 0; i < static_cast<int>(class_path.size()); ++i) {
208 for (const DexFile* dex_file : class_path) {
226 driver->SetDexFilesForOatFile(class_path);
227 driver->CompileAll(class_loader, class_path, &timings);
232 for (size_t i = 0; i < class_path.size(); ++i) {
260 const DexFile* dex_file = class_path[i];
305 std::vector<const DexFile*> cur_dex_files(1u, class_path[i])
    [all...]
  /test/framework/harnesses/host_controller/command_processor/
command_flash.py 144 class_path = args.flasher_type.rsplit(".", 1)
145 flasher_module = importlib.import_module(class_path[0])
146 flasher_class = getattr(flasher_module, class_path[1])
149 "%s is not a subclass of BuildFlasher." % class_path[1])
  /art/test/068-classloader/src/
FancyLoader.java 38 static final String CLASS_PATH = "classes-ex/";
65 * We search for a file in CLASS_PATH or pull an entry from DEX_FILE.
137 String pathName = CLASS_PATH + name + ".class";
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
AttributesTest.java 151 assertNull("Assert 0: ", atts.put(Attributes.Name.CLASS_PATH, "tools.jar"));
155 assertEquals("Assert 2:", "tools.jar", atts2.get(Attributes.Name.CLASS_PATH));
228 assertNull("Assert 0: ", atts.put(Attributes.Name.CLASS_PATH, "tools.jar"));
229 assertEquals("Assert 1: ", "tools.jar", atts.getValue(Attributes.Name.CLASS_PATH));
238 atts.put(Attributes.Name.CLASS_PATH, Boolean.TRUE);
JarOutputStreamTest.java 49 att.put(Attributes.Name.CLASS_PATH, barZip.getName());
  /art/openjdkjvmti/
ti_properties.cc 156 static const char* DefaultToDot(const std::string& class_path) {
157 return class_path.empty() ? "." : class_path.c_str();
  /frameworks/base/core/jni/
android_os_HwBinder.cpp 54 #define CLASS_PATH PACKAGE_PATH "/" CLASS_NAME
91 env, FindClassOrDie(env, CLASS_PATH));
382 return RegisterMethodsOrDie(env, CLASS_PATH, gMethods, NELEM(gMethods));
android_os_HwRemoteBinder.cpp 41 #define CLASS_PATH PACKAGE_PATH "/" CLASS_NAME
218 jclass clazz = FindClassOrDie(env, CLASS_PATH);
259 ScopedLocalRef<jclass> clazz(env, FindClassOrDie(env, CLASS_PATH));
447 ScopedLocalRef<jclass> clazz(env, FindClassOrDie(env, CLASS_PATH));
485 return RegisterMethodsOrDie(env, CLASS_PATH, gMethods, NELEM(gMethods));
android_os_HwBlob.cpp 38 #define CLASS_PATH PACKAGE_PATH "/" CLASS_NAME
51 env, FindClassOrDie(env, CLASS_PATH));
230 ScopedLocalRef<jclass> clazz(env, FindClassOrDie(env, CLASS_PATH));
584 return RegisterMethodsOrDie(env, CLASS_PATH, gMethods, NELEM(gMethods));
android_os_HwParcel.cpp 42 #define CLASS_PATH PACKAGE_PATH "/" CLASS_NAME
133 env, FindClassOrDie(env, CLASS_PATH));
198 ScopedLocalRef<jclass> clazz(env, FindClassOrDie(env, CLASS_PATH));
976 return RegisterMethodsOrDie(env, CLASS_PATH, gMethods, NELEM(gMethods));
  /frameworks/base/tools/preload/
MemoryUsage.java 160 private static final String CLASS_PATH = "-Xbootclasspath"
169 "adb", "shell", "dalvikvm", CLASS_PATH, "LoadClass" };
  /art/compiler/driver/
compiler_driver_test.cc 74 const std::vector<const DexFile*> class_path = GetDexFiles(class_loader); local
75 for (size_t i = 0; i != class_path.size(); ++i) {
76 const DexFile* dex_file = class_path[i];
  /art/test/626-const-class-linking/src/
DefiningLoader.java 72 * We search for a file in CLASS_PATH or pull an entry from DEX_FILE.
  /art/test/647-jni-get-field-id/src/
DefiningLoader.java 72 * We search for a file in CLASS_PATH or pull an entry from DEX_FILE.
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
JarFinder.java 175 .getValue(Attributes.Name.CLASS_PATH.toString());
  /external/proguard/docs/manual/
refcard.html 61 <a href="usage.html#classpath"><i>class_path</i></a></td>
67 <a href="usage.html#classpath"><i>class_path</i></a></td>
74 <a href="usage.html#classpath"><i>class_path</i></a></td>
387 <li><i>class_path</i> is a list of jars, wars, ears, zips, and directories,
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
refcard.html 59 <a href="usage.html#classpath"><i>class_path</i></a></td>
65 <a href="usage.html#classpath"><i>class_path</i></a></td>
72 <a href="usage.html#classpath"><i>class_path</i></a></td>
385 <li><i>class_path</i> is a list of jars, wars, ears, zips, and directories,

Completed in 1470 milliseconds

1 2 3