HomeSort by relevance Sort by last modified time
    Searched defs:methods (Results 226 - 250 of 386) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 99 HashSet<String> methods = new HashSet<String>(); local
102 if (!methods.add(methodDescriptor)) {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliClass.java 401 List<Method> methods = type.methodsByName(smaliMethod.getName(), local
403 if (methods.size() > 0) {
404 return methods.get(0).locationOfCodeIndex(offset/2);
  /external/testng/src/main/java/org/testng/internal/
ClassHelper.java 81 * class loading methods in that it does not throw an exception if the class
173 * Extract all callable methods of a class and all its super (keeping in mind
177 Set<Method> methods = Sets.newHashSet(); local
178 methods.addAll(Arrays.asList(clazz.getDeclaredMethods()));
182 methods.addAll(extractMethods(clazz, parent, methods));
186 return methods;
215 Set<Method> methods = Sets.newHashSet(); local
235 methods.add(method);
240 return methods;
    [all...]
  /external/turbine/javatests/com/google/turbine/lower/
LowerTest.java 109 ImmutableList<SourceTypeBoundClass.MethodInfo> methods = local
184 methods,
  /external/wpa_supplicant_8/src/wps/
wps_common.c 530 u16 methods = 0; local
533 /* Default to enabling methods based on build configuration */
534 methods |= WPS_CONFIG_DISPLAY | WPS_CONFIG_KEYPAD;
535 methods |= WPS_CONFIG_VIRT_DISPLAY;
537 methods |= WPS_CONFIG_NFC_INTERFACE;
540 methods |= WPS_CONFIG_P2PS;
544 methods |= WPS_CONFIG_ETHERNET;
546 methods |= WPS_CONFIG_LABEL;
548 methods |= WPS_CONFIG_DISPLAY;
550 methods |= WPS_CONFIG_EXT_NFC_TOKEN
    [all...]
  /art/test/912-classes/
classes.cc 128 jmethodID* methods = nullptr; local
129 jvmtiError result = jvmti_env->GetClassMethods(klass, &count, &methods);
137 jvmti_env->GetMethodModifiers(methods[i], &modifiers);
140 methods[i],
144 if (methods != nullptr) {
145 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(methods));
  /dalvik/dx/src/com/android/dx/cf/code/
RopperMachine.java 75 /** {@code non-null:} list of methods from the class whose method is being converted */
76 private final MethodList methods; field in class:RopperMachine
133 * @param methods {@code non-null;} list of methods defined by the class
137 TranslationAdvice advice, MethodList methods) {
140 if (methods == null) {
141 throw new NullPointerException("methods == null");
154 this.methods = methods;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 268 * Processes the methods of the given class.
280 MethodList methods = cf.getMethods(); local
281 int sz = methods.size();
284 Method one = methods.get(i);
297 // There's no code for native or abstract methods.
309 RopMethod rmeth = Ropper.convert(concrete, advice, methods, dexOptions);
360 * ...but only native methods are actually allowed to be
  /external/antlr/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 354 Method[] methods = _return.getDeclaredMethods(); local
355 for(Method method : methods) {
511 Method[] methods = _treeReturn.getDeclaredMethods(); local
512 for(Method method : methods) {
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DescendingVisitor.java 97 final Method[] methods = _clazz.getMethods(); local
98 for (final Method method : methods) {
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
ClassGen.java 56 // ArrayLists instead of arrays to gather fields, methods, etc.
144 final Method[] methods = clazz.getMethods(); local
158 for (final Method method : methods) {
203 final Method[] methods = getMethods(); local
217 super.getAccessFlags(), _cp, interfaces, fields, methods, attributes);
439 public void setMethods( final Method[] methods ) {
441 for (final Method method : methods) {
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
Pass3aVerifier.java 166 final Method[] methods = jc.getMethods(); local
167 if (method_no >= methods.length) {
170 final Method method = methods[method_no];
676 constraintViolated(o, "Only INVOKESPECIAL is allowed to invoke instance initialization methods.");
680 "No method with a name beginning with '<' other than the instance initialization methods"+
    [all...]
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
GeneratingAnnotatedClassesTestCase.java 258 // check the three methods
259 final Method[] methods = cgen.getMethods(); local
260 assertEquals(3, methods.length);
261 for (final Method method : methods)
612 // helper methods
  /external/doclava/src/com/google/doclava/
PackageInfo.java 423 * constructors and methods.
426 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods) {
460 constructors, methods, annotationElements, local
472 * <li>stripped existing classes stripped where only newly added methods are kept
486 * <li>stripped existing classes stripped where only newly added methods are kept
516 // generate a "delta" class with only added methods and constructors, but no fields etc
  /external/emma/core/java12/com/vladium/jcd/cls/
ClassDef.java 165 // methods for getting various nested tables:
299 // was set for an interface only if the interface declared methods
375 // descriptor separators (this is done for methods only, not for fields)
377 final IMethodCollection methods = getMethods (); local
380 final ConstructorDescriptor [] cds = new ConstructorDescriptor [methods.size ()];
387 final Method_info method = methods.get (i);
  /external/guice/core/test/com/google/inject/spi/
InjectionPointTest.java 319 // Subclass also has the "private" methods, but they do not override
320 // the superclass' methods, and it now owns the inject2 methods.
341 * This test serves two purposes: 1) It makes sure that the bridge methods javax generates don't
342 * stop us from injecting superclass methods in the case of javax.inject.Inject. This would happen
344 * method when it generated the bridge methods).
346 * <p>2) It makes sure that the methods we're going to inject have the correct generic types.
367 Set<String> methods = new HashSet<String>(); local
370 methods.add(point.getMember().getName());
373 assertEquals(points.toString(), ImmutableSet.copyOf(methodNames), methods); local
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CheckTags.java 12 * - methods that have no tags
330 doDocs(cdoc.methods(), "Methods", !brief);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclarationTest.java 172 List<ResolvedMethodDeclaration> methods = string.getDeclaredMethods().stream() local
177 assertEquals(69, methods.size());
179 assertEquals(67, methods.size());
181 assertEquals("charAt", methods.get(0).getName());
182 assertEquals(false, methods.get(0).isAbstract());
183 assertEquals(1, methods.get(0).getNumberOfParams());
184 assertEquals("int", methods.get(0).getParam(0).getType().describe());
186 assertEquals("compareTo", methods.get(6).getName());
187 assertEquals(false, methods.get(6).isAbstract());
188 assertEquals(1, methods.get(6).getNumberOfParams())
    [all...]
  /external/libjpeg-turbo/simd/mips/
jsimd.c 112 upsample1_ptr methods[MAX_COMPONENTS]; member in struct:__anon28865
  /external/oj-libjdwp/src/share/javavm/export/
jvm.h 730 * Returns the number of *declared* fields or methods.
1024 unsigned int methods; member in struct:__anon34669
    [all...]
  /external/protobuf/src/google/protobuf/
api.pb.h 115 // repeated .google.protobuf.Method methods = 2;
119 const ::google::protobuf::Method& methods(int index) const;
125 methods() const;
485 // repeated .google.protobuf.Method methods = 2;
492 inline const ::google::protobuf::Method& Api::methods(int index) const { function in class:google::protobuf::Api
493 // @@protoc_insertion_point(field_get:google.protobuf.Api.methods)
497 // @@protoc_insertion_point(field_mutable:google.protobuf.Api.methods)
501 // @@protoc_insertion_point(field_add:google.protobuf.Api.methods)
506 // @@protoc_insertion_point(field_mutable_list:google.protobuf.Api.methods)
510 Api::methods() const function in class:google::protobuf::Api
    [all...]
  /external/python/cpython2/Mac/Modules/ctl/
ctlsupport.py 16 OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
509 methods = [] variable
515 for f in methods: object.add(f)
  /external/python/cpython3/Python/
codecs.c 1416 } methods[] = local
    [all...]
  /external/tensorflow/tensorflow/tools/docs/
parser.py 739 # Note we cannot test for ismethod here since unbound methods do not register
740 # as methods (in Python 3).
960 methods: A list of `_MethodInfo` objects documenting the class' methods.
1130 def methods(self): member in class:_ClassPageInfo
    [all...]
  /external/testng/src/test/java/org/testng/internal/
MethodInstanceTest.java 35 List<MethodInstance> methods = new ArrayList<>(); local
36 methods.add(buildMethodInstance("unittests", "StateTest", 1, "aCategorization"));
37 methods.add(buildMethodInstance("unittests", "StateTest", 1, "bCategorization"));
38 methods.add(buildMethodInstance("unittests", "StateTest", 1, "cCategorization"));
39 methods.add(buildMethodInstance("unittests", "StateTest", 1, "dCategorization"));
40 methods.add(buildMethodInstance("unittests", "StateTest", 1, "eCategorization"));
41 methods.add(buildMethodInstance("unittests", "StateTest", 1, "fCategorization"));
42 methods.add(buildMethodInstance("unittests", "StatusTest", 2, "aStatus"));
43 methods.add(buildTestNgFactoryMethodInstance("unittests"));
44 methods.add(buildTestNgFactoryMethodInstance("unittests"));
    [all...]

Completed in 2963 milliseconds

1 2 3 4 5 6 7 8 91011>>