HomeSort by relevance Sort by last modified time
    Searched defs:class (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/nist-sip/java/gov/nist/javax/sip/parser/
ParserFactory.java 39 * A factory class that does a name lookup on a registered parser and
49 public class ParserFactory {
51 private static Hashtable<String,Class<? extends HeaderParser>> parserTable;
52 private static Class[] constructorArgs;
56 parserTable = new Hashtable<String,Class<? extends HeaderParser>>();
58 constructorArgs = new Class[1];
59 constructorArgs[0] = String.class;
60 parserTable.put(ReplyToHeader.NAME.toLowerCase(), ReplyToParser.class);
64 InReplyToParser.class);
68 AcceptEncodingParser.class);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ObjectDescriptorFactory.java 31 /* class tag values of 14496-1
122 public class ObjectDescriptorFactory {
123 protected static Logger log = Logger.getLogger(ObjectDescriptorFactory.class.getName());
125 protected static Map<Integer, Map<Integer, Class<? extends BaseDescriptor>>> descriptorRegistry = new HashMap<Integer, Map<Integer, Class<? extends BaseDescriptor>>>();
128 Set<Class<? extends BaseDescriptor>> annotated = new HashSet<Class<? extends BaseDescriptor>>();
130 annotated.add(DecoderSpecificInfo.class);
131 annotated.add(SLConfigDescriptor.class);
132 annotated.add(BaseDescriptor.class);
    [all...]
  /external/elfutils/0.153/libelf/
elf_update.c 66 int class = elf->class; local
106 if ((class == ELFCLASS32
115 if ((class == ELFCLASS32
195 size = (elf->class == ELFCLASS32
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.java 21 * numeric class is provided (e.g., Number.class or Integer.class) then the
25 Class<?> applicableTo() default Object.class;
  /external/guava/guava-tests/test/com/google/common/testing/
NullPointerTesterTest.java 40 public class NullPointerTesterTest extends TestCase {
50 public static class FooException extends RuntimeException {
55 * Class for testing all permutations of static/non-static one-argument
58 public static class OneArg {
125 Method method = OneArg.class.getMethod(methodName, String.class);
127 tester.testMethodParameter(OneArg.class, method, 0);
136 Method method = OneArg.class.getMethod(methodName, String.class);
139 tester.testMethodParameter(OneArg.class, method, 0)
    [all...]
  /art/test/031-class-attributes/src/
ClassAttrs.java 13 public class ClassAttrs {
16 class ConsInnerNamed {
26 public class PublicInnerClass {
29 protected class ProtectedInnerClass {
32 private class PrivateInnerClass {
35 class PackagePrivateInnerClass {
50 private static void showModifiers(Class<?> c) {
57 showModifiers(int.class);
58 showModifiers(int[].class);
61 showModifiers(Object.class);
    [all...]
  /external/elfutils/0.153/libasm/
asm_begin.c 85 int class = ebl_get_elfclass (ebl); local
86 if (gelf_newehdr (result->out.elf, class) == 0)
98 /* Use the machine, class, and endianess values from the Ebl descriptor. */
100 ehdr->e_ident[EI_CLASS] = class;
  /external/junit/src/org/junit/
Test.java 11 * JUnit first constructs a fresh instance of the class then invokes the
18 * public class Example {
32 * &#064;Test(<b>expected=IndexOutOfBoundsException.class</b>) public void outOfBounds() {
52 static class None extends Throwable {
60 * an exception of the specified class is thrown by the method.
62 Class<? extends Throwable> expected() default None.class;
  /cts/tests/tests/app/src/android/app/cts/
FragmentTest.java 28 @TestTargetClass(Fragment.class)
29 public class FragmentTest extends AndroidTestCase {
31 public static class TestFragment extends Fragment {
35 public static class TestNotFragment {
42 assertNotNull(Fragment.instantiate(getContext(), TestFragment.class.getName()));
47 Fragment.instantiate(getContext(), TestNotFragment.class.getName());
SearchManagerTest.java 22 public class SearchManagerTest extends CTSActivityTestCaseBase {
28 intent.setClass(getInstrumentation().getTargetContext(), SearchManagerStubActivity.class);
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 40 * This class performs end-to-end testing of the accessibility feature by
44 public class AccessibilityEndToEndTest extends
51 super(AccessibilityEndToEndActivity.class);
59 expected.setClassName(ListView.class.getName());
100 expected.setClassName(Button.class.getName());
136 expected.setClassName(Button.class.getName());
172 expected.setClassName(Button.class.getName());
240 expected.setClassName(EditText.class.getName());
278 expected.setClassName(AlertDialog.class.getName());
326 expected.setClassName(Notification.class.getName())
    [all...]
  /art/test/005-annotations/src/android/test/anno/
AnnoFancyMethod.java 13 Class someClass() default SomeClass.class;
  /art/test/044-proxy/src/
Clash.java 23 * Try to instantiate a proxy class with interfaces that have conflicting
26 public class Clash {
32 Proxy.newProxyInstance(Clash.class.getClassLoader(),
33 new Class[] { Interface1A.class, Interface1A.class },
41 Proxy.newProxyInstance(Clash.class.getClassLoader(),
42 new Class[] { Interface1A.class, Interface1B.class },
    [all...]
Clash2.java 23 * Try to instantiate a proxy class with interfaces that have conflicting
26 public class Clash2 {
31 Proxy.newProxyInstance(Clash.class.getClassLoader(),
32 new Class[] { Interface2A.class, Interface2B.class },
53 class Clash2InvocationHandler implements InvocationHandler {
Clash3.java 23 * Try to instantiate a proxy class with interfaces that have conflicting
26 public class Clash3 {
31 Proxy.newProxyInstance(Clash.class.getClassLoader(),
32 new Class[] {
33 Interface3a.class,
34 Interface3base.class,
35 Interface3aa.class,
36 Interface3b.class },
45 class R3base implements I3 { int mBlah; public void x() {} }
46 class R3a extends R3base { int mBlah_a;
    [all...]
  /external/mockito/src/org/mockito/internal/configuration/injection/scanner/
InjectMocksScanner.java 21 public class InjectMocksScanner {
22 private final Class<?> clazz;
27 * @param clazz Current class in the hierarchy of the test
29 public InjectMocksScanner(Class<?> clazz) {
52 if (null != field.getAnnotation(InjectMocks.class)) {
53 assertNoAnnotations(field, Mock.class, MockitoAnnotations.Mock.class, Captor.class);
61 void assertNoAnnotations(final Field field, final Class... annotations) {
62 for (Class annotation : annotations)
    [all...]
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvInputInfoTest.java 30 public class TvInputInfoTest extends AndroidTestCase {
43 StubTunerTvInputService.class.getName())) {
58 TvInputSettingsActivityStub.class));
70 TvInputSetupActivityStub.class));
  /art/test/100-reflect2/src/
Main.java 20 class Main {
33 f = Main.class.getDeclaredField("z");
35 f = Main.class.getDeclaredField("b");
37 f = Main.class.getDeclaredField("c");
39 f = Main.class.getDeclaredField("d");
41 f = Main.class.getDeclaredField("f");
43 f = Main.class.getDeclaredField("i");
45 f = Main.class.getDeclaredField("j");
47 f = Main.class.getDeclaredField("s");
50 f = Main.class.getDeclaredField("z")
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
FaceDetectorTest.java 28 public class FaceDetectorTest extends InstrumentationTestCase {
36 intent.setClass(getInstrumentation().getTargetContext(), FaceDetectorStub.class);
  /developers/build/prebuilts/gradle/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizReportActionService.java 38 public class QuizReportActionService extends IntentService {
44 super(QuizReportActionService.class.getSimpleName());
  /developers/samples/android/wearable/wear/Quiz/Wearable/src/main/java/com/example/android/wearable/quiz/
QuizReportActionService.java 38 public class QuizReportActionService extends IntentService {
44 super(QuizReportActionService.class.getSimpleName());
  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
LocalServiceTest.java 36 * -e class com.example.android.apis.app.LocalServiceTest \
39 public class LocalServiceTest extends ServiceTestCase<LocalService> {
42 super(LocalService.class);
66 startIntent.setClass(getContext(), LocalService.class);
76 startIntent.setClass(getContext(), LocalService.class);
  /development/samples/browseable/Quiz/Wearable/src/com.example.android.wearable.quiz/
QuizReportActionService.java 38 public class QuizReportActionService extends IntentService {
44 super(QuizReportActionService.class.getSimpleName());
  /external/libnl/lib/route/
class.c 2 * lib/route/class.c Queueing Classes
14 * @defgroup class Queueing Classes
22 #include <netlink/route/class.h>
23 #include <netlink/route/class-modules.h>
34 struct rtnl_class *class; local
37 class = rtnl_class_alloc();
38 if (!class) {
42 class->ce_msgtype = n->nlmsg_type;
44 err = tca_msg_parser(n, (struct rtnl_tca *) class);
48 cops = rtnl_class_lookup_ops(class);
263 struct rtnl_class *class; local
    [all...]
  /external/libnl/src/
nl-tctree-list.c 42 struct rtnl_class *class = (struct rtnl_class *) obj; local
44 uint32_t parent = rtnl_class_get_handle(class);
49 leaf = rtnl_class_leaf_qdisc(class, qdisc_cache);
53 rtnl_class_foreach_child(class, class_cache, &print_class, arg + 2);

Completed in 2376 milliseconds

1 2 3 4 5