Home
last modified time | relevance | path

Searched full:code (Results 1 – 25 of 18111) sorted by relevance

12345678910>>...725

/external/javassist/tutorial/
Dtutorial2.html32 <p><code>CtClass</code> provides methods for introspection. The
34 the Java reflection API. <code>CtClass</code> provides
35 <code>getName()</code>, <code>getSuperclass()</code>,
36 <code>getMethods()</code>, and so on.
37 <code>CtClass</code> also provides methods for modifying a class
42 Methods are represented by <code>CtMethod</code> objects.
43 <code>CtMethod</code> provides several methods for modifying
46 the same <code>CtMethod</code> object
49 A <code>CtMethod</code> object corresponds to every method declaration.
52 For example, if class <code>Point</code> declares method <code>move()</code>
[all …]
Dtutorial.html40 <p>The class <code>Javassist.CtClass</code> is an absatract
41 representation of a class file. A <code>CtClass</code> (compile-time
52 <p>This program first obtains a <code>ClassPool</code> object, which
54 <code>ClassPool</code> object is a container of <code>CtClass</code>
56 constructing a <code>CtClass</code> object and records the
60 from a <code>ClassPool</code> object
61 a reference to a <code>CtClass</code> object representing that class.
62 <code>get()</code> in <code>ClassPool</code> is used for this purpose.
64 <code>CtClass</code> object representing a class
65 <code>test.Rectangle</code> is obtained from the
[all …]
Dtutorial3.html17 <li><a href="#classfile">Obtaining a <code>ClassFile</code> object</a>
45 <code>javassist.bytecode.ClassFileWriter</code> might provide
47 <code>javassist.bytecode.ClassFile</code> although its API
51 <h3>5.1 Obtaining a <code>ClassFile</code> object</h3>
53 <p>A <code>javassist.bytecode.ClassFile</code> object represents
54 a class file. To obtian this object, <code>getClassFile()</code>
55 in <code>CtClass</code> should be called.
58 <code>javassist.bytecode.ClassFile</code> directly from a class file.
68 This code snippet creats a <code>ClassFile</code> object from
69 <code>Point.class</code>.
[all …]
/external/libxml2/include/libxml/
Dxmlunicode.h26 XMLPUBFUN int XMLCALL xmlUCSIsAegeanNumbers (int code);
27 XMLPUBFUN int XMLCALL xmlUCSIsAlphabeticPresentationForms (int code);
28 XMLPUBFUN int XMLCALL xmlUCSIsArabic (int code);
29 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsA (int code);
30 XMLPUBFUN int XMLCALL xmlUCSIsArabicPresentationFormsB (int code);
31 XMLPUBFUN int XMLCALL xmlUCSIsArmenian (int code);
32 XMLPUBFUN int XMLCALL xmlUCSIsArrows (int code);
33 XMLPUBFUN int XMLCALL xmlUCSIsBasicLatin (int code);
34 XMLPUBFUN int XMLCALL xmlUCSIsBengali (int code);
35 XMLPUBFUN int XMLCALL xmlUCSIsBlockElements (int code);
[all …]
/external/regex-re2/doc/
Dsyntax.html17 <tr><td><code>.</code></td><td>any character, including newline (s=true)</td></tr>
18 <tr><td><code>[xyz]</code></td><td>character class</td></tr>
19 <tr><td><code>[^xyz]</code></td><td>negated character class</td></tr>
20 <tr><td><code>\d</code></td><td>Perl character class</td></tr>
21 <tr><td><code>\D</code></td><td>negated Perl character class</td></tr>
22 <tr><td><code>[:alpha:]</code></td><td>ASCII character class</td></tr>
23 <tr><td><code>[:^alpha:]</code></td><td>negated ASCII character class</td></tr>
24 <tr><td><code>\pN</code></td><td>Unicode character class (one-letter name)</td></tr>
25 <tr><td><code>\p{Greek}</code></td><td>Unicode character class</td></tr>
26 <tr><td><code>\PN</code></td><td>negated Unicode character class (one-letter name)</td></tr>
[all …]
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotationsWriter.java25 * <code>..Annotations_attribute</code>.
26 * See the source code of the <code>AnnotationsAttribute.Copier</code> class.
28 * <p>The following code snippet is an example of use of this class:
49 * <p>The code snippet above generates the annotation attribute
90 * Writes <code>num_parameters</code> in
91 * <code>Runtime(In)VisibleParameterAnnotations_attribute</code>.
92 * This method must be followed by <code>num</code> calls to
93 * <code>numAnnotations()</code>.
100 * Writes <code>num_annotations</code> in
101 * <code>Runtime(In)VisibleAnnotations_attribute</code>.
[all …]
/external/selinux/secilc/docs/
Dcil_constraint_statements.md22 <td align="left"><p><code>constrain</code></p></td>
23 <td align="left"><p>The <code>constrain</code> keyword.</p></td>
26 <td align="left"><p><code>classpermissionset_id</code></p></td>
27 … single named or anonymous <code>classpermissionset</code> or a single set of <code>classmap</code
30 <td align="left"><p><code>expression</code></p></td>
31 …td align="left"><p>There must be one constraint <code>expression</code> or one or more <code>expr<…
32 <p><code> (op u1 u2)</code></p>
33 <p><code> (role_op r1 r2)</code></p>
34 <p><code> (op t1 t2)</code></p>
35 <p><code> (op u1 user_id)</code></p>
[all …]
/external/python/cpython2/Mac/Demo/
Dtextedit.html6 In this document we use the <CODE>FrameWork</CODE> and <CODE>TextEdit</CODE>
20 <dt> <CODE>Application</CODE>
23 the main event handling code. Normal use is to override the <code>__init__</code> routine
24 to do your own initializations and override <code>makeusermenus</code> to create your menus
26 The event handling code can be overridden at various levels, from very low-level (the
27 <code>dispatch</code> method) to intermediate level (<code>do_keyDown</code>, for instance)
28 to high-level (<code>do_key</code>). The application class knows about the <code>Window</code>
30 would have a <code>do_key</code> method in your window object, not your application object).
32 <dt> <CODE>MenuBar</CODE>, <CODE>Menu</CODE> and <CODE>MenuItem</CODE>
34 These classes (and a few friends like <CODE>SubMenu</CODE>) handle your menus. You would not
[all …]
/external/syslinux/com32/lua/doc/
Dmanual.html59 The host program can invoke functions to execute a piece of Lua code,
61 and can register C&nbsp;functions to be called by Lua code.
65 The Lua distribution includes a sample host program called <code>lua</code>,
75 at Lua's official web site, <code>www.lua.org</code>.
129 see file <code>luaconf.h</code>.)
134 including embedded zeros ('<code>\0</code>').
173 undefined or unrepresentable results, such as <code>0/0</code>).
187 providing <code>a.name</code> as syntactic sugar for <code>a["name"]</code>.
211 The expressions <code>a[i]</code> and <code>a[j]</code>
213 if and only if <code>i</code> and <code>j</code> are raw equal
[all …]
/external/skia/third_party/lua/doc/
Dmanual.html59 The host program can invoke functions to execute a piece of Lua code,
61 and can register C&nbsp;functions to be called by Lua code.
65 The Lua distribution includes a sample host program called <code>lua</code>,
75 at Lua's official web site, <code>www.lua.org</code>.
129 see file <code>luaconf.h</code>.)
134 including embedded zeros ('<code>\0</code>').
173 undefined or unrepresentable results, such as <code>0/0</code>).
187 providing <code>a.name</code> as syntactic sugar for <code>a["name"]</code>.
211 The expressions <code>a[i]</code> and <code>a[j]</code>
213 if and only if <code>i</code> and <code>j</code> are raw equal
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/data/
Dtwo_finger_tracking.diagonal.slow.dat7 Event code 272 (BTN_LEFT)
8 Event code 325 (BTN_TOOL_FINGER)
9 Event code 328 (?)
10 Event code 330 (BTN_TOUCH)
11 Event code 333 (BTN_TOOL_DOUBLETAP)
12 Event code 334 (BTN_TOOL_TRIPLETAP)
13 Event code 335 (BTN_TOOL_QUADTAP)
15 Event code 0 (ABS_X)
20 Event code 1 (ABS_Y)
25 Event code 24 (ABS_PRESSURE)
[all …]
Dpinch_to_zoom.zoom_in.dat1 Event: time 271.039089, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 271.039092, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 22
3 Event: time 271.039094, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1111
4 Event: time 271.039095, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 587
5 Event: time 271.039096, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 30
6 Event: time 271.039098, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 1
7 Event: time 271.039099, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 23
8 Event: time 271.039100, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 932
9 Event: time 271.039101, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 900
10 Event: time 271.039102, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 34
[all …]
Dtwo_finger_tracking.bottom_left_to_top_right.slow.dat7 Event code 272 (BTN_LEFT)
8 Event code 325 (BTN_TOOL_FINGER)
9 Event code 328 (?)
10 Event code 330 (BTN_TOUCH)
11 Event code 333 (BTN_TOOL_DOUBLETAP)
12 Event code 334 (BTN_TOOL_TRIPLETAP)
13 Event code 335 (BTN_TOOL_QUADTAP)
15 Event code 0 (ABS_X)
20 Event code 1 (ABS_Y)
25 Event code 24 (ABS_PRESSURE)
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032659-fw_11.23-robot_sim/
Dtwo_finger_tracking.left_to_right.normal-lumpy-fw_11.23-robot_sim-20130506_032725.dat1 Event: time 6021.567948, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 6021.567951, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 63
3 Event: time 6021.567954, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 189
4 Event: time 6021.567956, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 488
5 Event: time 6021.567957, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 5
6 Event: time 6021.567983, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 6021.567984, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 6021.567987, type 3 (EV_ABS), code 0 (ABS_X), value 189
9 Event: time 6021.567989, type 3 (EV_ABS), code 1 (ABS_Y), value 488
10 Event: time 6021.567991, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 5
[all …]
Dtwo_finger_tracking.right_to_left.normal-lumpy-fw_11.23-robot_sim-20130506_032735.dat1 Event: time 6030.719600, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 6030.719603, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 67
3 Event: time 6030.719606, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1000
4 Event: time 6030.719608, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 479
5 Event: time 6030.719610, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 4
6 Event: time 6030.719635, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 6030.719636, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 6030.719640, type 3 (EV_ABS), code 0 (ABS_X), value 1000
9 Event: time 6030.719641, type 3 (EV_ABS), code 1 (ABS_Y), value 479
10 Event: time 6030.719643, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 4
[all …]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/doc/spec/
Dc14595.htm112 driver writers to port or update their code.</P
323 > error code. The
344 >The V4L <CODE
346 >VIDIOCGCAP</CODE
350 ><CODE
352 >VIDIOC_QUERYCAP</CODE
356 >The <CODE
358 >name</CODE
360 <CODE
362 >video_capability</CODE
[all …]
Dx15446.htm101 ><CODE
103 >select()</CODE
109 >1998-09-18: The <CODE
111 >VIDIOC_NONCAP</CODE
113 was replaced by the otherwise meaningless <CODE
115 >O_TRUNC</CODE
119 ><CODE
121 >open()</CODE
123 > flag, and the aliases <CODE
125 >O_NONCAP</CODE
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/lumpy/20130506_032458-fw_11.23-robot_sim/
Dpinch_to_zoom.zoom_in-lumpy-fw_11.23-complete-20130726_022812.dat1 Event: time 5110565.759787, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 5110565.759790, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 2
3 Event: time 5110565.759793, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 849
4 Event: time 5110565.759795, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 93
5 Event: time 5110565.759797, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 6
6 Event: time 5110565.759823, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 5110565.759824, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 5110565.759828, type 3 (EV_ABS), code 0 (ABS_X), value 849
9 Event: time 5110565.759829, type 3 (EV_ABS), code 1 (ABS_Y), value 93
10 Event: time 5110565.759831, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 6
[all …]
Dtwo_finger_tracking.left_to_right.normal-lumpy-fw_11.23-robot_sim-20130506_032526.dat1 Event: time 5903.967471, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 6
2 Event: time 5903.967475, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 154
3 Event: time 5903.967477, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 478
4 Event: time 5903.967479, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 7
5 Event: time 5903.967504, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
6 Event: time 5903.967506, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
7 Event: time 5903.967509, type 3 (EV_ABS), code 0 (ABS_X), value 154
8 Event: time 5903.967511, type 3 (EV_ABS), code 1 (ABS_Y), value 478
9 Event: time 5903.967513, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 7
11 Event: time 5903.977217, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 158
[all …]
Dtwo_finger_tracking.right_to_left.normal-lumpy-fw_11.23-robot_sim-20130506_032531.dat1 Event: time 5907.672713, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 8
2 Event: time 5907.672717, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 962
3 Event: time 5907.672719, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 479
4 Event: time 5907.672721, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 8
5 Event: time 5907.672746, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
6 Event: time 5907.672747, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
7 Event: time 5907.672751, type 3 (EV_ABS), code 0 (ABS_X), value 962
8 Event: time 5907.672753, type 3 (EV_ABS), code 1 (ABS_Y), value 479
9 Event: time 5907.672754, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 8
11 Event: time 5907.684245, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 955
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20130806_221321-fw_1.0.AA-robot/
Dtwo_finger_tracking.bottom_left_to_top_right.normal-link-fw_1.0.AA-robot-20130806_224355.dat1 Event: time 4768.604311, type 3 (EV_ABS), code 47 (ABS_MT_SLOT), value 0
2 Event: time 4768.604311, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 355
3 Event: time 4768.604311, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 138
4 Event: time 4768.604311, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 1018
5 Event: time 4768.604311, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 42
6 Event: time 4768.604311, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 220
7 Event: time 4768.604311, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
8 Event: time 4768.604311, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
9 Event: time 4768.604311, type 3 (EV_ABS), code 0 (ABS_X), value 138
10 Event: time 4768.604311, type 3 (EV_ABS), code 1 (ABS_Y), value 1018
[all …]
Dtwo_finger_tracking.right_to_left.slow-link-fw_1.0.AA-robot-20130806_223945.dat1 Event: time 4517.394721, type 3 (EV_ABS), code 57 (ABS_MT_TRACKING_ID), value 317
2 Event: time 4517.394721, type 3 (EV_ABS), code 53 (ABS_MT_POSITION_X), value 1840
3 Event: time 4517.394721, type 3 (EV_ABS), code 54 (ABS_MT_POSITION_Y), value 667
4 Event: time 4517.394721, type 3 (EV_ABS), code 58 (ABS_MT_PRESSURE), value 43
5 Event: time 4517.394721, type 3 (EV_ABS), code 48 (ABS_MT_TOUCH_MAJOR), value 254
6 Event: time 4517.394721, type 1 (EV_KEY), code 330 (BTN_TOUCH), value 1
7 Event: time 4517.394721, type 1 (EV_KEY), code 325 (BTN_TOOL_FINGER), value 1
8 Event: time 4517.394721, type 3 (EV_ABS), code 0 (ABS_X), value 1840
9 Event: time 4517.394721, type 3 (EV_ABS), code 1 (ABS_Y), value 667
10 Event: time 4517.394721, type 3 (EV_ABS), code 24 (ABS_PRESSURE), value 43
[all …]
/external/autotest/client/site_tests/firmware_TouchMTB/tests/data/linearity/
Dtwo_finger_tracking.bottom_left_to_top_right.normal-lumpy-fw_11.27-robot-20130227_204902.dat7 Event code 272 (BTN_LEFT)
8 Event code 325 (BTN_TOOL_FINGER)
9 Event code 328 (?)
10 Event code 330 (BTN_TOUCH)
11 Event code 333 (BTN_TOOL_DOUBLETAP)
12 Event code 334 (BTN_TOOL_TRIPLETAP)
13 Event code 335 (BTN_TOOL_QUADTAP)
15 Event code 0 (ABS_X)
20 Event code 1 (ABS_Y)
25 Event code 24 (ABS_PRESSURE)
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLString.java27 * be java Strings or <code>org.apache.xml.utils.FastStringBuffer</code>s, or
88 * from <code>0</code> to <code>length() - 1</code>. The first character
89 * of the sequence is at index <code>0</code>, the next at index
90 * <code>1</code>, and so on, as for array indexing.
94 * The first character is at index <code>0</code>.
95 * @exception IndexOutOfBoundsException if the <code>index</code>
113 * <ul><li><code>srcBegin</code> is negative.
114 * <li><code>srcBegin</code> is greater than <code>srcEnd</code>
115 * <li><code>srcEnd</code> is greater than the length of this
117 * <li><code>dstBegin</code> is negative
[all …]
/external/icu/icu4c/source/common/unicode/
Dubidi.h43 * In functions with an error code parameter,
44 * the <code>pErrorCode</code> pointer must be valid
61 * <h4> Sample code for the ICU Bidi API </h4>
65 * This is (hypothetical) sample code that illustrates
67 * Rendering code depends highly on the graphics system,
68 * therefore this sample code must make a lot of assumptions,
76 * characters (code units) in logical order.</li>
79 * and therefore its implementation omitted from this sample code.</li>
83 * \code
299 * <code>paraLevel</code> and <code>embeddingLevels</code>
[all …]

12345678910>>...725