Home
last modified time | relevance | path

Searched defs:class (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/external/jcommander/src/main/java/com/beust/jcommander/internal/
DDefaultConverterFactory.java50 classConverters.put(String.class, StringConverter.class); in classConverters.put()
51 classConverters.put(Integer.class, IntegerConverter.class); in classConverters.put()
52 classConverters.put(int.class, IntegerConverter.class); in classConverters.put()
53 classConverters.put(Long.class, LongConverter.class); in classConverters.put()
54 classConverters.put(long.class, LongConverter.class); in classConverters.put()
55 classConverters.put(Float.class, FloatConverter.class); in classConverters.put()
56 classConverters.put(float.class, FloatConverter.class); in classConverters.put()
57 classConverters.put(Double.class, DoubleConverter.class); in classConverters.put()
58 classConverters.put(double.class, DoubleConverter.class); in classConverters.put()
59 classConverters.put(Boolean.class, BooleanConverter.class); in classConverters.put()
[all …]
/external/guava/guava-testlib/src/com/google/common/testing/
DArbitraryInstances.java317 setImplementation(Appendable.class, StringBuilder.class); in setImplementation()
318 setImplementation(BlockingQueue.class, LinkedBlockingDeque.class); in setImplementation()
319 setImplementation(BlockingDeque.class, LinkedBlockingDeque.class); in setImplementation()
320 setImplementation(ConcurrentMap.class, ConcurrentHashMap.class); in setImplementation()
321 setImplementation(ConcurrentNavigableMap.class, ConcurrentSkipListMap.class); in setImplementation()
322 setImplementation(CountDownLatch.class, Dummies.DummyCountDownLatch.class); in setImplementation()
323 setImplementation(Deque.class, ArrayDeque.class); in setImplementation()
324 setImplementation(OutputStream.class, ByteArrayOutputStream.class); in setImplementation()
325 setImplementation(PrintStream.class, Dummies.InMemoryPrintStream.class); in setImplementation()
326 setImplementation(PrintWriter.class, Dummies.InMemoryPrintWriter.class); in setImplementation()
[all …]
/external/guava/android/guava-testlib/src/com/google/common/testing/
DArbitraryInstances.java308 setImplementation(Appendable.class, StringBuilder.class); in setImplementation()
309 setImplementation(BlockingQueue.class, LinkedBlockingDeque.class); in setImplementation()
310 setImplementation(BlockingDeque.class, LinkedBlockingDeque.class); in setImplementation()
311 setImplementation(ConcurrentMap.class, ConcurrentHashMap.class); in setImplementation()
312 setImplementation(ConcurrentNavigableMap.class, ConcurrentSkipListMap.class); in setImplementation()
313 setImplementation(CountDownLatch.class, Dummies.DummyCountDownLatch.class); in setImplementation()
314 setImplementation(Deque.class, ArrayDeque.class); in setImplementation()
315 setImplementation(OutputStream.class, ByteArrayOutputStream.class); in setImplementation()
316 setImplementation(PrintStream.class, Dummies.InMemoryPrintStream.class); in setImplementation()
317 setImplementation(PrintWriter.class, Dummies.InMemoryPrintWriter.class); in setImplementation()
[all …]
/external/mockito/src/main/java/org/mockito/internal/util/
DPrimitives.java65 PRIMITIVE_TYPES.put(Boolean.class, Boolean.TYPE); in PRIMITIVE_TYPES.put()
66 PRIMITIVE_TYPES.put(Character.class, Character.TYPE); in PRIMITIVE_TYPES.put()
67 PRIMITIVE_TYPES.put(Byte.class, Byte.TYPE); in PRIMITIVE_TYPES.put()
68 PRIMITIVE_TYPES.put(Short.class, Short.TYPE); in PRIMITIVE_TYPES.put()
69 PRIMITIVE_TYPES.put(Integer.class, Integer.TYPE); in PRIMITIVE_TYPES.put()
70 PRIMITIVE_TYPES.put(Long.class, Long.TYPE); in PRIMITIVE_TYPES.put()
71 PRIMITIVE_TYPES.put(Float.class, Float.TYPE); in PRIMITIVE_TYPES.put()
72 PRIMITIVE_TYPES.put(Double.class, Double.TYPE); in PRIMITIVE_TYPES.put()
76 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Boolean.class, false); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
77 PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put(Character.class, '\u0000'); in PRIMITIVE_OR_WRAPPER_DEFAULT_VALUES.put()
[all …]
/external/guava/android/guava/src/com/google/common/primitives/
DPrimitives.java48 add(primToWrap, wrapToPrim, boolean.class, Boolean.class); in add()
49 add(primToWrap, wrapToPrim, byte.class, Byte.class); in add()
50 add(primToWrap, wrapToPrim, char.class, Character.class); in add()
51 add(primToWrap, wrapToPrim, double.class, Double.class); in add()
52 add(primToWrap, wrapToPrim, float.class, Float.class); in add()
53 add(primToWrap, wrapToPrim, int.class, Integer.class); in add()
54 add(primToWrap, wrapToPrim, long.class, Long.class); in add()
55 add(primToWrap, wrapToPrim, short.class, Short.class); in add()
56 add(primToWrap, wrapToPrim, void.class, Void.class); in add()
/external/guava/guava/src/com/google/common/primitives/
DPrimitives.java48 add(primToWrap, wrapToPrim, boolean.class, Boolean.class); in add()
49 add(primToWrap, wrapToPrim, byte.class, Byte.class); in add()
50 add(primToWrap, wrapToPrim, char.class, Character.class); in add()
51 add(primToWrap, wrapToPrim, double.class, Double.class); in add()
52 add(primToWrap, wrapToPrim, float.class, Float.class); in add()
53 add(primToWrap, wrapToPrim, int.class, Integer.class); in add()
54 add(primToWrap, wrapToPrim, long.class, Long.class); in add()
55 add(primToWrap, wrapToPrim, short.class, Short.class); in add()
56 add(primToWrap, wrapToPrim, void.class, Void.class); in add()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowServiceManager.java86 Context.CLIPBOARD_SERVICE, createBinder(IClipboard.class, "android.content.IClipboard")); in map.put()
89 createBinder(IWifiP2pManager.class, "android.net.wifi.p2p.IWifiP2pManager")); in map.put()
92 createBinder(IAccountManager.class, "android.accounts.IAccountManager")); in map.put()
94 Context.USB_SERVICE, createBinder(IUsbManager.class, "android.hardware.usb.IUsbManager")); in map.put()
97 createBinder(ILocationManager.class, "android.location.ILocationManager")); in map.put()
100 createBinder(IInputMethodManager.class, "com.android.internal.view.IInputMethodManager")); in map.put()
101 map.put(Context.ALARM_SERVICE, createBinder(IAlarmManager.class, "android.app.IAlarmManager")); in map.put()
102 map.put(Context.POWER_SERVICE, createBinder(IPowerManager.class, "android.os.IPowerManager")); in map.put()
105 createBinder(IBatteryStats.class, "com.android.internal.app.IBatteryStats")); in map.put()
109 IDropBoxManagerService.class, "com.android.internal.os.IDropBoxManagerService")); in map.put()
[all …]
/external/llvm/docs/
DWritingAnLLVMPass.rst329 .. _writing-an-llvm-pass-ModulePass:
352 The ``runOnModule`` method
398 The ``doInitialization(CallGraph &)`` method
414 The ``runOnSCC`` method
425 The ``doFinalization(CallGraph &)`` method
463 .. _writing-an-llvm-pass-doInitialization-mod:
465 The ``doInitialization(Module &)`` method
488 The ``runOnFunction`` method
501 The ``doFinalization(Module &)`` method
536 The ``doInitialization(Loop *, LPPassManager &)`` method
[all …]
DProgrammersManual.rst266 .. _error_apis:
2476 .. _UserLayout:
2887 .. _m_Module:
2889 Important Public Members of the ``Module`` class
2955 .. _Value:
2990 .. _nameWarning:
3005 .. _m_Value:
3007 Important Public Members of the ``Value`` class
3046 .. _User:
3074 The ``User`` class exposes the operand list in two ways: through an index access
[all …]
DCodeGenerator.rst221 .. _DataLayout:
233 .. _TargetLowering:
253 .. _TargetRegisterInfo:
282 .. _TargetInstrInfo:
320 .. _code being generated:
321 .. _machine code representation:
376 .. _create instructions:
378 Using the ``MachineInstrBuilder.h`` functions
415 Fixed (preassigned) registers
472 Call-clobbered registers
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/utils/
DClassUtils.java12 primitiveWrapperMap.put(Boolean.TYPE, Boolean.class); in primitiveWrapperMap.put()
13 primitiveWrapperMap.put(Byte.TYPE, Byte.class); in primitiveWrapperMap.put()
14 primitiveWrapperMap.put(Character.TYPE, Character.class); in primitiveWrapperMap.put()
15 primitiveWrapperMap.put(Short.TYPE, Short.class); in primitiveWrapperMap.put()
16 primitiveWrapperMap.put(Integer.TYPE, Integer.class); in primitiveWrapperMap.put()
17 primitiveWrapperMap.put(Long.TYPE, Long.class); in primitiveWrapperMap.put()
18 primitiveWrapperMap.put(Double.TYPE, Double.class); in primitiveWrapperMap.put()
19 primitiveWrapperMap.put(Float.TYPE, Float.class); in primitiveWrapperMap.put()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
DClassUtils.java34 primitiveWrapperMap.put(Boolean.TYPE, Boolean.class); in primitiveWrapperMap.put()
35 primitiveWrapperMap.put(Byte.TYPE, Byte.class); in primitiveWrapperMap.put()
36 primitiveWrapperMap.put(Character.TYPE, Character.class); in primitiveWrapperMap.put()
37 primitiveWrapperMap.put(Short.TYPE, Short.class); in primitiveWrapperMap.put()
38 primitiveWrapperMap.put(Integer.TYPE, Integer.class); in primitiveWrapperMap.put()
39 primitiveWrapperMap.put(Long.TYPE, Long.class); in primitiveWrapperMap.put()
40 primitiveWrapperMap.put(Double.TYPE, Double.class); in primitiveWrapperMap.put()
41 primitiveWrapperMap.put(Float.TYPE, Float.class); in primitiveWrapperMap.put()
/external/llvm-project/llvm/docs/
DWritingAnLLVMPass.rst355 .. _writing-an-llvm-pass-ModulePass:
378 The ``runOnModule`` method
423 The ``doInitialization(CallGraph &)`` method
439 The ``runOnSCC`` method
450 The ``doFinalization(CallGraph &)`` method
488 .. _writing-an-llvm-pass-doInitialization-mod:
490 The ``doInitialization(Module &)`` method
513 The ``runOnFunction`` method
526 The ``doFinalization(Module &)`` method
561 The ``doInitialization(Loop *, LPPassManager &)`` method
[all …]
DProgrammersManual.rst272 .. _formatting_strings:
3120 .. _UserLayout:
3397 .. _m_Module:
3399 Important Public Members of the ``Module`` class
3471 .. _Value:
3506 .. _nameWarning:
3521 .. _m_Value:
3523 Important Public Members of the ``Value`` class
3562 .. _User:
3590 The ``User`` class exposes the operand list in two ways: through an index access
[all …]
DCodeGenerator.rst221 .. _DataLayout:
233 .. _TargetLowering:
253 .. _TargetRegisterInfo:
282 .. _TargetInstrInfo:
320 .. _code being generated:
321 .. _machine code representation:
376 .. _create instructions:
378 Using the ``MachineInstrBuilder.h`` functions
415 Fixed (preassigned) registers
472 Call-clobbered registers
[all …]
/external/libnl/lib/route/
Dclass.c33 struct rtnl_class *class = (struct rtnl_class *) tc; in class_dump_details() local
45 struct rtnl_class *class; in class_msg_parser() local
88 void rtnl_class_put(struct rtnl_class *class) in rtnl_class_put()
101 static int class_build(struct rtnl_class *class, int type, int flags, in class_build()
130 int rtnl_class_build_add_request(struct rtnl_class *class, int flags, in rtnl_class_build_add_request()
172 int rtnl_class_add(struct nl_sock *sk, struct rtnl_class *class, int flags) in rtnl_class_add()
196 int rtnl_class_build_delete_request(struct rtnl_class *class, struct nl_msg **result) in rtnl_class_build_delete_request()
253 int rtnl_class_delete(struct nl_sock *sk, struct rtnl_class *class) in rtnl_class_delete()
278 struct rtnl_qdisc *rtnl_class_leaf_qdisc(struct rtnl_class *class, in rtnl_class_leaf_qdisc()
357 struct rtnl_class *class; in rtnl_class_get() local
[all …]
/external/libnl/lib/route/qdisc/
Dhtb.c294 static struct rtnl_htb_class *htb_class_data(struct rtnl_class *class, int *err) in htb_class_data()
374 uint32_t rtnl_htb_get_prio(struct rtnl_class *class) in rtnl_htb_get_prio()
385 int rtnl_htb_set_prio(struct rtnl_class *class, uint32_t prio) in rtnl_htb_set_prio()
407 uint32_t rtnl_htb_get_rate(struct rtnl_class *class) in rtnl_htb_get_rate()
428 int rtnl_htb_get_rate64(struct rtnl_class *class, uint64_t *out_rate64) in rtnl_htb_get_rate64()
448 int rtnl_htb_set_rate(struct rtnl_class *class, uint32_t rate) in rtnl_htb_set_rate()
460 int rtnl_htb_set_rate64(struct rtnl_class *class, uint64_t rate) in rtnl_htb_set_rate64()
483 uint32_t rtnl_htb_get_ceil(struct rtnl_class *class) in rtnl_htb_get_ceil()
504 int rtnl_htb_get_ceil64(struct rtnl_class *class, uint64_t *out_ceil64) in rtnl_htb_get_ceil64()
524 int rtnl_htb_set_ceil(struct rtnl_class *class, uint32_t ceil) in rtnl_htb_set_ceil()
[all …]
Dhfsc.c183 static struct rtnl_hfsc_class *hfsc_class_data(const struct rtnl_class *class, int *err) in hfsc_class_data()
232 int rtnl_class_hfsc_get_rsc(const struct rtnl_class *class, struct tc_service_curve *tsc) in rtnl_class_hfsc_get_rsc()
246 int rtnl_class_hfsc_set_rsc(struct rtnl_class *class, const struct tc_service_curve *tsc) in rtnl_class_hfsc_set_rsc()
260 int rtnl_class_hfsc_get_fsc(const struct rtnl_class *class, struct tc_service_curve *tsc) in rtnl_class_hfsc_get_fsc()
274 int rtnl_class_hfsc_set_fsc(struct rtnl_class *class, const struct tc_service_curve *tsc) in rtnl_class_hfsc_set_fsc()
288 int rtnl_class_hfsc_get_usc(const struct rtnl_class *class, struct tc_service_curve *tsc) in rtnl_class_hfsc_get_usc()
302 int rtnl_class_hfsc_set_usc(struct rtnl_class *class, const struct tc_service_curve *tsc) in rtnl_class_hfsc_set_usc()
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
DDataType.java108 typeCodes.put(Float.class, DataType.FLOAT); in typeCodes.put()
109 typeCodes.put(Double.class, DataType.DOUBLE); in typeCodes.put()
110 typeCodes.put(Integer.class, DataType.INT32); in typeCodes.put()
111 typeCodes.put(UInt8.class, DataType.UINT8); in typeCodes.put()
112 typeCodes.put(Long.class, DataType.INT64); in typeCodes.put()
113 typeCodes.put(Boolean.class, DataType.BOOL); in typeCodes.put()
114 typeCodes.put(String.class, DataType.STRING); in typeCodes.put()
/external/vogar/src/vogar/
DOptionParser.java146 handlers.put(boolean.class, new BooleanHandler()); in handlers.put()
147 handlers.put(Boolean.class, new BooleanHandler()); in handlers.put()
149 handlers.put(byte.class, new ByteHandler()); in handlers.put()
150 handlers.put(Byte.class, new ByteHandler()); in handlers.put()
151 handlers.put(short.class, new ShortHandler()); in handlers.put()
152 handlers.put(Short.class, new ShortHandler()); in handlers.put()
153 handlers.put(int.class, new IntegerHandler()); in handlers.put()
154 handlers.put(Integer.class, new IntegerHandler()); in handlers.put()
155 handlers.put(long.class, new LongHandler()); in handlers.put()
156 handlers.put(Long.class, new LongHandler()); in handlers.put()
[all …]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DTypeId.java70 PRIMITIVE_TO_TYPE.put(boolean.class, BOOLEAN); in PRIMITIVE_TO_TYPE.put()
71 PRIMITIVE_TO_TYPE.put(byte.class, BYTE); in PRIMITIVE_TO_TYPE.put()
72 PRIMITIVE_TO_TYPE.put(char.class, CHAR); in PRIMITIVE_TO_TYPE.put()
73 PRIMITIVE_TO_TYPE.put(double.class, DOUBLE); in PRIMITIVE_TO_TYPE.put()
74 PRIMITIVE_TO_TYPE.put(float.class, FLOAT); in PRIMITIVE_TO_TYPE.put()
75 PRIMITIVE_TO_TYPE.put(int.class, INT); in PRIMITIVE_TO_TYPE.put()
76 PRIMITIVE_TO_TYPE.put(long.class, LONG); in PRIMITIVE_TO_TYPE.put()
77 PRIMITIVE_TO_TYPE.put(short.class, SHORT); in PRIMITIVE_TO_TYPE.put()
78 PRIMITIVE_TO_TYPE.put(void.class, VOID); in PRIMITIVE_TO_TYPE.put()
/external/llvm-project/lldb/test/API/lang/cpp/struct_with_keyword_name/
Dmain.c1 struct class { struct
2 int class; member
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/
DConcreteSyntaxModel.java90 concreteSyntaxModelByClass.put(AnnotationDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
107 concreteSyntaxModelByClass.put(AnnotationMemberDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
120 concreteSyntaxModelByClass.put(ClassOrInterfaceDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
140 concreteSyntaxModelByClass.put(ConstructorDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
154 concreteSyntaxModelByClass.put(EnumConstantDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
165 concreteSyntaxModelByClass.put(EnumDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
192 concreteSyntaxModelByClass.put(FieldDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
202 concreteSyntaxModelByClass.put(InitializerDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
207 concreteSyntaxModelByClass.put(MethodDeclaration.class, sequence( in concreteSyntaxModelByClass.put()
223 concreteSyntaxModelByClass.put(Parameter.class, sequence( in concreteSyntaxModelByClass.put()
[all …]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
DProxyBuilder.java862 PRIMITIVE_TO_BOXED.put(boolean.class, Boolean.class); in PRIMITIVE_TO_BOXED.put()
863 PRIMITIVE_TO_BOXED.put(int.class, Integer.class); in PRIMITIVE_TO_BOXED.put()
864 PRIMITIVE_TO_BOXED.put(byte.class, Byte.class); in PRIMITIVE_TO_BOXED.put()
865 PRIMITIVE_TO_BOXED.put(long.class, Long.class); in PRIMITIVE_TO_BOXED.put()
866 PRIMITIVE_TO_BOXED.put(short.class, Short.class); in PRIMITIVE_TO_BOXED.put()
867 PRIMITIVE_TO_BOXED.put(float.class, Float.class); in PRIMITIVE_TO_BOXED.put()
868 PRIMITIVE_TO_BOXED.put(double.class, Double.class); in PRIMITIVE_TO_BOXED.put()
869 PRIMITIVE_TO_BOXED.put(char.class, Character.class); in PRIMITIVE_TO_BOXED.put()
893 map.put(boolean.class, TypeId.get(Boolean.class).getMethod(TypeId.BOOLEAN, "booleanValue")); in map.put()
894 map.put(int.class, TypeId.get(Integer.class).getMethod(TypeId.INT, "intValue")); in map.put()
[all …]
/external/jline/src/src/main/native/
Djline_WindowsTerminal.c36 JNIEXPORT jint JNICALL Java_jline_WindowsTerminal_readByte (JNIEnv * env, jclass class) in Java_jline_WindowsTerminal_readByte()
41 …EXPORT jint JNICALL Java_jline_WindowsTerminal_getWindowsTerminalWidth (JNIEnv * env, jclass class) in Java_jline_WindowsTerminal_getWindowsTerminalWidth()
50 …XPORT jint JNICALL Java_jline_WindowsTerminal_getWindowsTerminalHeight (JNIEnv * env, jclass class) in Java_jline_WindowsTerminal_getWindowsTerminalHeight()

12345678910>>...20