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

1 23 4 5 6 7 8 91011>>

  /external/webkit/WebCore/inspector/front-end/
WelcomeView.js 39 this.contentElement.className = "panel-enabler-view-content";
43 this.alignerElement.className = "welcome-instructions-aligner";
47 this.instructionsElement.className = "instructions";
62 messageElement.className = "message";
StatusBarButton.js 31 WebInspector.StatusBarButton = function(title, className, states)
34 this.element.className = className + " status-bar-item";
38 this.glyph.className = "glyph";
42 this.glyphShadow.className = "glyph shadow";
SidebarPane.js 32 this.element.className = "pane";
35 this.titleElement.className = "title";
41 this.bodyElement.className = "body";
79 this._growbarElement.className = "growbar";
  /external/webkit/WebCore/platform/win/
GDIObjectCounter.h 47 GDIObjectCounter(const String& className, void* instance);
  /frameworks/base/include/android_runtime/
AndroidRuntime.h 44 const char* className, const JNINativeMethod* gMethods, int numMethods);
49 status_t callStatic(const char* className, const char* methodName);
54 status_t callMain(const char* className, int argc, const char* const argv[]);
60 static jclass findClass(JNIEnv* env, const char* className);
64 void start(const char *classname, const bool startSystemServer);
  /libcore/luni/src/main/java/org/apache/xalan/extensions/
ExtensionHandler.java 55 * @param className Name of the class to load
57 static Class getClassForName(String className)
61 if(className.equals("org.apache.xalan.xslt.extensions.Redirect")) {
62 className = "org.apache.xalan.lib.Redirect";
66 className, ObjectFactory.findClassLoader(), true);
  /libcore/luni/src/main/java/java/lang/
ClassLoader.java 268 * @param className
286 protected final Class<?> defineClass(String className, byte[] classRep, int offset, int length)
290 return defineClass(className, classRep, offset, length, null);
299 * @param className
320 * if {@code className} is not equal to the name of the class
323 protected final Class<?> defineClass(String className, byte[] classRep, int offset, int length,
326 return VMClassLoader.defineClass(this, className, classRep, offset, length,
348 * if {@code className} is not equal to the name of the class
364 * @param className
370 protected Class<?> findClass(String className) throws ClassNotFoundException
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/xml/
AndroidManifest.java 188 * @param className the class name from the manifest.
191 public static String combinePackageAndClassName(String javaPackage, String className) {
192 if (className == null || className.length() == 0) {
196 return className;
201 boolean startWithDot = (className.charAt(0) == '.');
202 boolean hasDot = (className.indexOf('.') != -1);
207 return javaPackage + className;
209 return javaPackage + '.' + className;
213 return className;
    [all...]
  /dalvik/libnativehelper/include/nativehelper/
JNIHelp.h 41 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className,
46 * The "className" argument will be passed directly to FindClass, which
54 int jniThrowException(C_JNIEnv* env, const char* className, const char* msg);
110 inline int jniRegisterNativeMethods(JNIEnv* env, const char* className,
113 return jniRegisterNativeMethods(&env->functions, className, gMethods,
116 inline int jniThrowException(JNIEnv* env, const char* className,
119 return jniThrowException(&env->functions, className, msg);
  /external/jdiff/src/jdiff/
HTMLReportGenerator.java 355 String className = classAPI.name_;
356 if (trace) System.out.println("Class/Interface " + className + " was removed.");
357 writeClassTableEntry(pkgName, className, 0, classAPI.isInterface_, classAPI.doc_, false);
385 String className = classAPI.name_;
386 if (trace) System.out.println("Class/Interface " + className + " was added.");
387 writeClassTableEntry(pkgName, className, 1, classAPI.isInterface_, classAPI.doc_, false);
416 String className = classDiff.name_;
417 if (trace) System.out.println("Package " + pkgDiff.name_ + ", class/Interface " + className + " was changed.");
418 writeClassTableEntry(pkgName, className, 2, classDiff.isInterface_, null, false);
440 String className = classDiff.name_
    [all...]
DiffOutput.java 30 public DiffOutput(String pkgName, String className, String id,
33 className_ = className;
  /libcore/luni/src/main/java/java/util/jar/
Pack200.java 58 String className = System
65 .loadClass(className).newInstance();
67 throw new Error("Can't load class " + className, e);
88 String className = System
93 .loadClass(className).newInstance();
95 throw new Error("Can't load class " + className, e);
  /libcore/luni/src/main/java/java/util/logging/
MemoryHandler.java 91 String className = this.getClass().getName();
93 final String targetName = manager.getProperty(className + ".target");
111 String sizeString = manager.getProperty(className + ".size");
119 printInvalidPropMessage(className + ".size", sizeString, e);
123 String pushName = manager.getProperty(className + ".push");
128 printInvalidPropMessage(className + ".push", pushName, e);
  /external/webkit/WebCore/bindings/scripts/
CodeGeneratorJS.pm 143 my $className = shift;
145 return "DOMException" if $className eq "DOMCoreException";
146 return $className;
252 my $className = shift;
254 return "get${className}Table(exec)";
256 return "&${className}Table";
263 my $className = shift;
265 return "get${className}PrototypeTable(exec)";
267 return "&${className}PrototypeTable";
273 my ($dataNode, $interfaceName, $className, $implClassName, $hasAttributes, $inlined) = @_
    [all...]
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 54 public MemoryByteCode getMemoryByteCode(String className) {
55 return store.get(className);
  /cts/tools/host/src/com/android/cts/
TestController.java 30 final String className, final String methodName) {
33 mClassName = className;
  /development/tools/apkcheck/src/com/android/apkcheck/
PackageInfo.java 51 * @param className Binary or non-binary class name without the
57 public ClassInfo getOrCreateClass(String className, String superclassName,
59 String fixedName = TypeUtils.simpleClassNameToBinary(className);
  /external/webkit/WebCore/html/
HTMLViewSourceDocument.h 57 void addLine(const String& className);
58 void addText(const String& text, const String& className);
  /libcore/luni/src/main/native/
JniConstants.h 72 #define NATIVE_METHOD(className, functionName, signature) \
73 { #functionName, signature, reinterpret_cast<void*>(className ## _ ## functionName) }
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
TestCaseReference.java 38 TestCaseReference(String className, String testName) {
39 mClassName = className;
TestSuiteReference.java 36 * @param className the fully qualified name of the test class
38 TestSuiteReference(String className) {
39 mClassName = className;
  /cts/tests/tests/performance/src/android/performance/cts/
MultiAppStartupTest.java 38 private Intent buildIntent(final String pkgName, String className, boolean isMain) {
39 final String fullClassName = pkgName + "." + className;
50 private void launchActivity(final String pkgName, String className, boolean isMain) {
52 ctx.startActivity(buildIntent(pkgName, className, isMain));
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoadHook.java 53 public boolean processClassDef (final String className,
60 $assert.ASSERT (className != null, "className is null");
66 if ((filter == null) || filter.included (className))
69 final String classVMName = Descriptors.javaNameToVMName (className);
80 // loading the class in question, if metadata for 'className' exists
  /external/quake/quake/src/QW/client/
main.cpp 70 static int registerNativeMethods(JNIEnv* env, const char* className,
75 clazz = env->FindClass(className);
78 "Native registration unable to find class '%s'\n", className);
82 fprintf(stderr, "RegisterNatives failed for '%s'\n", className);
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
ListTestCaseNames.java 50 String className = test.getClass().getName();
52 testNames.add(new TestDescriptor(className, testName));
67 public TestDescriptor(String className, String testName) {
68 mClassName = className;

Completed in 1206 milliseconds

1 23 4 5 6 7 8 91011>>