HomeSort by relevance Sort by last modified time
    Searched full:getname (Results 51 - 75 of 8357) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/editor/
MemberAdder.java 99 //String name = programField.getName(programClass);
118 // System.out.println("MemberAdder: renaming field ["+targetClass+"."+targetField.getName(targetClass)+" "+targetField.getDescriptor(targetClass)+"]");
123 // constantPoolEditor.addUtf8Constant(newUniqueMemberName(name, targetClass.getName()));
131 // System.out.println("MemberAdder: updating field ["+programClass+"."+programField.getName(programClass)+" "+programField.getDescriptor(programClass)+"] into ["+targetClass.getName()+"]");
150 System.out.println("MemberAdder: copying field ["+programClass+"."+programField.getName(programClass)+" "+programField.getDescriptor(programClass)+"] into ["+targetClass.getName()+"]");
186 String name = programMethod.getName(programClass);
200 System.out.println("MemberAdder: skipping abstract method ["+programClass.getName()+"."+programMethod.getName(programClass)+programMethod.getDescriptor(programClass)+"] into ["+targetClass.getName()+"]")
    [all...]
MemberReferenceFixer.java 104 String newName = referencedMember.getName(referencedClass);
130 String newName = referencedMember.getName(referencedClass);
133 if (!fieldrefConstant.getName(clazz).equals(newName) ||
158 String newName = referencedMember.getName(referencedClass);
161 if (!interfaceMethodrefConstant.getName(clazz).equals(newName) ||
188 System.out.println(" Class file = "+clazz.getName());
189 System.out.println(" Ref class = "+referencedClass.getName());
190 System.out.println(" Ref method = "+interfaceMethodrefConstant.getName(clazz)+interfaceMethodrefConstant.getType(clazz));
214 String newName = referencedMember.getName(referencedClass);
217 if (!methodrefConstant.getName(clazz).equals(newName) |
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
OldAndroidClassTest.java 32 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
54 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
60 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
70 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
76 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
82 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
89 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
95 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
100 Class helloClass = Class.forName(OldAndroidClassTest.class.getName());
204 assertEquals(packageName, getClass().getPackage().getName());
    [all...]
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 50 return R.getName() + BaseSuffix;
76 std::string BaseName = macroName(Base->getName());
89 std::string NodeName = macroName(R->getName());
97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "("
98 << R->getName() << ", " << baseName(*Base) << "))\n";
100 OS << NodeName << "(" << R->getName() << ", "
125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE(";
127 OS << macroName(Root.getName()) << "_RANGE(";
128 OS << Base->getName() << ", " << First->getName() << ", "
    [all...]
  /packages/inputmethods/LatinIME/native/dicttoolkit/src/utils/
arguments_parser.cpp 30 AKLOGE("minCount = maxCount = 0 for %s.", mArgumentSpecs[i].getName().c_str());
36 mArgumentSpecs[i].getName().c_str()v );
39 if (argumentNameSet.count(mArgumentSpecs[i].getName()) > 0) {
41 mArgumentSpecs[i].getName().c_str());
44 argumentNameSet.insert(mArgumentSpecs[i].getName());
63 printf(" [<%s>]", argSpec.getName().c_str());
65 printf(" <%s>", argSpec.getName().c_str());
67 printf(" [<%s>...]", argSpec.getName().c_str());
69 printf(" <%s>...", argSpec.getName().c_str());
87 printf(" <%s>\t\t\t%s\n", argSpec.getName().c_str(), argSpec.getDescription().c_str())
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 25 private static Logger logger = Logger.getLogger(DNSQuestion.class.getName());
45 String name = this.getName().toLowerCase();
46 return jmDNSImpl.getLocalHost().getName().equals(name) || jmDNSImpl.getServices().keySet().contains(name);
69 String name = this.getName().toLowerCase();
70 return jmDNSImpl.getLocalHost().getName().equals(name) || jmDNSImpl.getServices().keySet().contains(name);
134 String loname = this.getName().toLowerCase();
135 if (jmDNSImpl.getLocalHost().getName().equalsIgnoreCase(loname)) {
142 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique());
152 String name = this.getName().toLowerCase();
153 return jmDNSImpl.getLocalHost().getName().equals(name) || jmDNSImpl.getServices().keySet().contains(name)
    [all...]
SocketListener.java 18 static Logger logger = Logger.getLogger(SocketListener.class.getName());
29 super("SocketListener(" + (jmDNSImpl != null ? jmDNSImpl.getName() : "") + ")");
52 logger.finest(this.getName() + ".run() JmDNS in:" + msg.print(true));
63 logger.log(Level.WARNING, this.getName() + ".run() exception ", e);
68 logger.log(Level.WARNING, this.getName() + ".run() exception ", e);
73 logger.finest(this.getName() + ".run() exiting.");
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
IllegalArgumentExceptionTest.java 51 assertEquals(emptyThrowable.getClass().getName(), emptyException.getMessage());
52 assertEquals(emptyThrowable.getClass().getName(), emptyException.getLocalizedMessage());
53 assertEquals(emptyThrowable.getClass().getName(), emptyException.getCause().toString());
57 assertEquals(exception.getClass().getName() + ": " + "msg", e.getMessage());
58 assertEquals(exception.getClass().getName(), emptyException.getLocalizedMessage());
59 assertEquals(exception.getClass().getName(), emptyException.getCause().toString());
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 43 if (DBG) Log.d(TAG, "Cancelling " + mQueue.size() + " tasks: " + mWorker.getName());
74 String threadName = currentThread.getName();
82 currentThread.setName(threadName + " " + task.getName());
84 if (DBG) Log.d(TAG, "Running task " + task.getName());
86 if (DBG) Log.d(TAG, "Task " + task.getName() + " complete");
88 Log.e(TAG, "Task " + task.getName() + " failed", ex);
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITMultipleModuleTest.cpp 100 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str());
103 ptr = TheJIT->getFunctionAddress(FB->getName().str());
120 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str());
124 ptr = TheJIT->getFunctionAddress(FA->getName().str());
141 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str());
145 ptr = TheJIT->getFunctionAddress(FA->getName().str());
162 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str());
165 ptr = TheJIT->getFunctionAddress(FB->getName().str());
183 uint64_t ptr = TheJIT->getFunctionAddress(FB->getName().str());
187 ptr = TheJIT->getFunctionAddress(FA2->getName().str())
    [all...]
  /external/mockito/src/org/mockito/internal/creation/
DelegatingMethod.java 28 public String getName() {
29 return method.getName();
  /external/nist-sip/java/gov/nist/javax/sip/header/
Credentials.java 110 if (nameValue.getName().compareToIgnoreCase(URI) == 0)
112 else if (nameValue.getName().compareToIgnoreCase(NONCE) == 0)
114 else if (nameValue.getName().compareToIgnoreCase(REALM) == 0)
116 else if (nameValue.getName().compareToIgnoreCase(CNONCE) == 0)
118 else if (nameValue.getName().compareToIgnoreCase(RESPONSE) == 0)
120 else if (nameValue.getName().compareToIgnoreCase(OPAQUE) == 0)
122 else if (nameValue.getName().compareToIgnoreCase(USERNAME) == 0)
124 else if (nameValue.getName().compareToIgnoreCase(DOMAIN) == 0)
  /external/proguard/src/proguard/optimize/
MemberDescriptorSpecializer.java 81 System.out.println("MemberDescriptorSpecializer: "+programClass.getName()+"."+programField.getName(programClass)+" "+programField.getDescriptor(programClass));
82 System.out.println(" "+programField.referencedClass.getName()+" -> "+referencedClass.getName());
121 System.out.println("MemberDescriptorSpecializer: "+programClass.getName()+"."+programMethod.getName(programClass)+programMethod.getDescriptor(programClass));
122 System.out.println(" "+programMethod.referencedClasses[classIndex].getName()+" -> "+referencedClass.getName());
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen); member in struct:__anon68372
25 as for getname. */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
ucnhash.h 22 int (*getname)(PyObject *self, Py_UCS4 code, char* buffer, int buflen); member in struct:__anon68495
25 as for getname. */
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/
AccessService.java 8 AccessService.class.getName());
OffHostService.java 8 OffHostService.class.getName());
PaymentService2.java 8 PaymentService2.class.getName());
TransportService1.java 8 TransportService1.class.getName());
TransportService2.java 8 TransportService2.class.getName());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECNamedCurveGenParameterSpec.java 24 public String getName()
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoLaunchEntry.java 23 public String getName() {
  /external/lldb/test/python_api/default-constructor/
sb_function.py 9 obj.GetName()
sb_section.py 10 obj.GetName()
  /external/mockito/src/org/mockito/internal/matchers/
CompareEqual.java 19 protected String getName() {

Completed in 2565 milliseconds

1 23 4 5 6 7 8 91011>>