Searched refs:index (Results 226 - 250 of 6826) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java62 * Get the String value of the parameter at the specified index
63 * @param index - the index
65 * @throws AssertFailedException if the parameter index is invalid or the value is not a valid String
67 public String getRequiredString(int index) { argument
68 assertValidIndex(index);
69 return parameters[index];
73 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
74 * @param index
77 getOptionalString(int index) argument
134 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java62 * Get the String value of the parameter at the specified index
63 * @param index - the index
65 * @throws AssertFailedException if the parameter index is invalid or the value is not a valid String
67 public String getRequiredString(int index) { argument
68 assertValidIndex(index);
69 return parameters[index];
73 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
74 * @param index
77 getOptionalString(int index) argument
134 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/core/command/
H A DCommand.java62 * Get the String value of the parameter at the specified index
63 * @param index - the index
65 * @throws AssertFailedException if the parameter index is invalid or the value is not a valid String
67 public String getRequiredString(int index) { argument
68 assertValidIndex(index);
69 return parameters[index];
73 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
74 * @param index
77 getOptionalString(int index) argument
134 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/core/command/
H A DCommand.java62 * Get the String value of the parameter at the specified index
63 * @param index - the index
65 * @throws AssertFailedException if the parameter index is invalid or the value is not a valid String
67 public String getRequiredString(int index) { argument
68 assertValidIndex(index);
69 return parameters[index];
73 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
74 * @param index
77 getOptionalString(int index) argument
134 assertValidIndex(int index) argument
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dbyte_array.cc37 int32_t ByteArray::Get(int32_t index) { argument
38 if (index < 0 || index >= Length())
40 return InternalGet(index) & 0xff;
43 int32_t ByteArray::Get(int32_t index, ByteVector* b) { argument
45 return Get(index, &((*b)[0]), 0, b->size());
48 int32_t ByteArray::Get(int32_t index, argument
53 if (index < 0 || index >= filled_length_) {
56 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index);
60 Put(int32_t index, byte_t b) argument
73 Put(int index, ByteVector* b) argument
78 Put(int32_t index, byte_t* b, int32_t offset, int32_t length) argument
114 int32_t index = 0; local
135 int32_t index = 0; local
148 int32_t index = 0; local
168 int32_t index = 0; local
[all...]
/external/skia/tests/
H A DPathOpsLineParametetersTest.cpp41 for (size_t index = 0; index < tests_count; ++index) {
43 const CubicPts& c = tests[index];
56 double answersSq = answers[index][inner];
63 __FUNCTION__, static_cast<int>(index), (int)inner,
64 denormalizedDistance[inner], answers[index][inner],
72 if (AlmostEqualUlps(fabs(normalizedDistance[inner]), answers[index][inner])) {
76 __FUNCTION__, static_cast<int>(index), (int)inner,
77 normalizedDistance[inner], answers[index][inne
[all...]
H A DPathOpsCubicReduceOrderTest.cpp24 int index, minX, maxX, minY, maxY;
26 for (index = 1; index < 4; ++index) {
27 if (cubic[minX].fX > cubic[index].fX) {
28 minX = index;
30 if (cubic[minY].fY > cubic[index].fY) {
31 minY = index;
33 if (cubic[maxX].fX < cubic[index].fX) {
34 maxX = index;
62 size_t index; local
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DAbstractForwardSequentialList.java43 @Nonnull private Iterator<T> iterator(int index) { argument
44 if (index < 0) {
49 for (int i=0; i<index; i++) {
67 private int index = initialIndex - 1;
74 forwardIterator = iterator(index+1);
87 return index >= 0;
92 index++;
97 return index+1;
103 return iterator(index--).next();
110 return index;
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dapp.cc60 size_t* index,
63 while (*index + BlockLength() > max_length) {
64 if (!OnBufferFull(packet, index, callback))
67 const size_t index_end = *index + BlockLength();
68 CreateHeader(sub_type_, kPacketType, HeaderLength(), packet, index);
70 ByteWriter<uint32_t>::WriteBigEndian(&packet[*index + 0], ssrc_);
71 ByteWriter<uint32_t>::WriteBigEndian(&packet[*index + 4], name_);
72 memcpy(&packet[*index + 8], data_.data(), data_.size());
73 *index += (8 + data_.size());
74 RTC_DCHECK_EQ(index_end, *index);
59 Create(uint8_t* packet, size_t* index, size_t max_length, RtcpPacket::PacketReadyCallback* callback) const argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dapi_arrayelt.c29 * state for the element/index.
62 GLuint index; member in struct:__anon15977
190 VertexAttrib1NbvNV(GLuint index, const GLbyte *v) argument
192 CALL_VertexAttrib1fNV(GET_DISPATCH(), (index, BYTE_TO_FLOAT(v[0])));
196 VertexAttrib1bvNV(GLuint index, const GLbyte *v) argument
198 CALL_VertexAttrib1fNV(GET_DISPATCH(), (index, (GLfloat)v[0]));
202 VertexAttrib2NbvNV(GLuint index, const GLbyte *v) argument
204 CALL_VertexAttrib2fNV(GET_DISPATCH(), (index, BYTE_TO_FLOAT(v[0]), BYTE_TO_FLOAT(v[1])));
208 VertexAttrib2bvNV(GLuint index, const GLbyte *v) argument
210 CALL_VertexAttrib2fNV(GET_DISPATCH(), (index, (GLfloa
214 VertexAttrib3NbvNV(GLuint index, const GLbyte *v) argument
222 VertexAttrib3bvNV(GLuint index, const GLbyte *v) argument
228 VertexAttrib4NbvNV(GLuint index, const GLbyte *v) argument
237 VertexAttrib4bvNV(GLuint index, const GLbyte *v) argument
245 VertexAttrib1NubvNV(GLuint index, const GLubyte *v) argument
251 VertexAttrib1ubvNV(GLuint index, const GLubyte *v) argument
257 VertexAttrib2NubvNV(GLuint index, const GLubyte *v) argument
264 VertexAttrib2ubvNV(GLuint index, const GLubyte *v) argument
270 VertexAttrib3NubvNV(GLuint index, const GLubyte *v) argument
277 VertexAttrib3ubvNV(GLuint index, const GLubyte *v) argument
284 VertexAttrib4NubvNV(GLuint index, const GLubyte *v) argument
293 VertexAttrib4ubvNV(GLuint index, const GLubyte *v) argument
303 VertexAttrib1NsvNV(GLuint index, const GLshort *v) argument
309 VertexAttrib1svNV(GLuint index, const GLshort *v) argument
315 VertexAttrib2NsvNV(GLuint index, const GLshort *v) argument
322 VertexAttrib2svNV(GLuint index, const GLshort *v) argument
328 VertexAttrib3NsvNV(GLuint index, const GLshort *v) argument
336 VertexAttrib3svNV(GLuint index, const GLshort *v) argument
343 VertexAttrib4NsvNV(GLuint index, const GLshort *v) argument
352 VertexAttrib4svNV(GLuint index, const GLshort *v) argument
361 VertexAttrib1NusvNV(GLuint index, const GLushort *v) argument
367 VertexAttrib1usvNV(GLuint index, const GLushort *v) argument
373 VertexAttrib2NusvNV(GLuint index, const GLushort *v) argument
380 VertexAttrib2usvNV(GLuint index, const GLushort *v) argument
387 VertexAttrib3NusvNV(GLuint index, const GLushort *v) argument
395 VertexAttrib3usvNV(GLuint index, const GLushort *v) argument
402 VertexAttrib4NusvNV(GLuint index, const GLushort *v) argument
411 VertexAttrib4usvNV(GLuint index, const GLushort *v) argument
420 VertexAttrib1NivNV(GLuint index, const GLint *v) argument
426 VertexAttrib1ivNV(GLuint index, const GLint *v) argument
432 VertexAttrib2NivNV(GLuint index, const GLint *v) argument
439 VertexAttrib2ivNV(GLuint index, const GLint *v) argument
445 VertexAttrib3NivNV(GLuint index, const GLint *v) argument
453 VertexAttrib3ivNV(GLuint index, const GLint *v) argument
460 VertexAttrib4NivNV(GLuint index, const GLint *v) argument
469 VertexAttrib4ivNV(GLuint index, const GLint *v) argument
478 VertexAttrib1NuivNV(GLuint index, const GLuint *v) argument
484 VertexAttrib1uivNV(GLuint index, const GLuint *v) argument
490 VertexAttrib2NuivNV(GLuint index, const GLuint *v) argument
497 VertexAttrib2uivNV(GLuint index, const GLuint *v) argument
504 VertexAttrib3NuivNV(GLuint index, const GLuint *v) argument
512 VertexAttrib3uivNV(GLuint index, const GLuint *v) argument
519 VertexAttrib4NuivNV(GLuint index, const GLuint *v) argument
528 VertexAttrib4uivNV(GLuint index, const GLuint *v) argument
537 VertexAttrib1fvNV(GLuint index, const GLfloat *v) argument
543 VertexAttrib2fvNV(GLuint index, const GLfloat *v) argument
549 VertexAttrib3fvNV(GLuint index, const GLfloat *v) argument
555 VertexAttrib4fvNV(GLuint index, const GLfloat *v) argument
563 VertexAttrib1dvNV(GLuint index, const GLdouble *v) argument
569 VertexAttrib2dvNV(GLuint index, const GLdouble *v) argument
575 VertexAttrib3dvNV(GLuint index, const GLdouble *v) argument
581 VertexAttrib4dvNV(GLuint index, const GLdouble *v) argument
695 VertexAttrib1NbvARB(GLuint index, const GLbyte *v) argument
701 VertexAttrib1bvARB(GLuint index, const GLbyte *v) argument
707 VertexAttrib2NbvARB(GLuint index, const GLbyte *v) argument
713 VertexAttrib2bvARB(GLuint index, const GLbyte *v) argument
719 VertexAttrib3NbvARB(GLuint index, const GLbyte *v) argument
727 VertexAttrib3bvARB(GLuint index, const GLbyte *v) argument
733 VertexAttrib4NbvARB(GLuint index, const GLbyte *v) argument
742 VertexAttrib4bvARB(GLuint index, const GLbyte *v) argument
750 VertexAttrib1NubvARB(GLuint index, const GLubyte *v) argument
756 VertexAttrib1ubvARB(GLuint index, const GLubyte *v) argument
762 VertexAttrib2NubvARB(GLuint index, const GLubyte *v) argument
770 VertexAttrib2ubvARB(GLuint index, const GLubyte *v) argument
777 VertexAttrib3NubvARB(GLuint index, const GLubyte *v) argument
785 VertexAttrib3ubvARB(GLuint index, const GLubyte *v) argument
794 VertexAttrib4NubvARB(GLuint index, const GLubyte *v) argument
805 VertexAttrib4ubvARB(GLuint index, const GLubyte *v) argument
816 VertexAttrib1NsvARB(GLuint index, const GLshort *v) argument
822 VertexAttrib1svARB(GLuint index, const GLshort *v) argument
828 VertexAttrib2NsvARB(GLuint index, const GLshort *v) argument
836 VertexAttrib2svARB(GLuint index, const GLshort *v) argument
843 VertexAttrib3NsvARB(GLuint index, const GLshort *v) argument
853 VertexAttrib3svARB(GLuint index, const GLshort *v) argument
861 VertexAttrib4NsvARB(GLuint index, const GLshort *v) argument
872 VertexAttrib4svARB(GLuint index, const GLshort *v) argument
881 VertexAttrib1NusvARB(GLuint index, const GLushort *v) argument
887 VertexAttrib1usvARB(GLuint index, const GLushort *v) argument
893 VertexAttrib2NusvARB(GLuint index, const GLushort *v) argument
900 VertexAttrib2usvARB(GLuint index, const GLushort *v) argument
907 VertexAttrib3NusvARB(GLuint index, const GLushort *v) argument
915 VertexAttrib3usvARB(GLuint index, const GLushort *v) argument
922 VertexAttrib4NusvARB(GLuint index, const GLushort *v) argument
931 VertexAttrib4usvARB(GLuint index, const GLushort *v) argument
939 VertexAttrib1NivARB(GLuint index, const GLint *v) argument
945 VertexAttrib1ivARB(GLuint index, const GLint *v) argument
951 VertexAttrib2NivARB(GLuint index, const GLint *v) argument
958 VertexAttrib2ivARB(GLuint index, const GLint *v) argument
965 VertexAttrib3NivARB(GLuint index, const GLint *v) argument
973 VertexAttrib3ivARB(GLuint index, const GLint *v) argument
980 VertexAttrib4NivARB(GLuint index, const GLint *v) argument
989 VertexAttrib4ivARB(GLuint index, const GLint *v) argument
998 VertexAttrib1NuivARB(GLuint index, const GLuint *v) argument
1004 VertexAttrib1uivARB(GLuint index, const GLuint *v) argument
1010 VertexAttrib2NuivARB(GLuint index, const GLuint *v) argument
1017 VertexAttrib2uivARB(GLuint index, const GLuint *v) argument
1024 VertexAttrib3NuivARB(GLuint index, const GLuint *v) argument
1032 VertexAttrib3uivARB(GLuint index, const GLuint *v) argument
1039 VertexAttrib4NuivARB(GLuint index, const GLuint *v) argument
1048 VertexAttrib4uivARB(GLuint index, const GLuint *v) argument
1057 VertexAttrib1fvARB(GLuint index, const GLfloat *v) argument
1063 VertexAttrib2fvARB(GLuint index, const GLfloat *v) argument
1069 VertexAttrib3fvARB(GLuint index, const GLfloat *v) argument
1075 VertexAttrib4fvARB(GLuint index, const GLfloat *v) argument
1083 VertexAttrib1dvARB(GLuint index, const GLdouble *v) argument
1089 VertexAttrib2dvARB(GLuint index, const GLdouble *v) argument
1095 VertexAttrib3dvARB(GLuint index, const GLdouble *v) argument
1101 VertexAttrib4dvARB(GLuint index, const GLdouble *v) argument
1111 VertexAttribI1bv(GLuint index, const GLbyte *v) argument
1117 VertexAttribI2bv(GLuint index, const GLbyte *v) argument
1123 VertexAttribI3bv(GLuint index, const GLbyte *v) argument
1129 VertexAttribI4bv(GLuint index, const GLbyte *v) argument
1136 VertexAttribI1ubv(GLuint index, const GLubyte *v) argument
1142 VertexAttribI2ubv(GLuint index, const GLubyte *v) argument
1148 VertexAttribI3ubv(GLuint index, const GLubyte *v) argument
1154 VertexAttribI4ubv(GLuint index, const GLubyte *v) argument
1162 VertexAttribI1sv(GLuint index, const GLshort *v) argument
1168 VertexAttribI2sv(GLuint index, const GLshort *v) argument
1174 VertexAttribI3sv(GLuint index, const GLshort *v) argument
1180 VertexAttribI4sv(GLuint index, const GLshort *v) argument
1187 VertexAttribI1usv(GLuint index, const GLushort *v) argument
1193 VertexAttribI2usv(GLuint index, const GLushort *v) argument
1199 VertexAttribI3usv(GLuint index, const GLushort *v) argument
1205 VertexAttribI4usv(GLuint index, const GLushort *v) argument
1213 VertexAttribI1iv(GLuint index, const GLint *v) argument
1219 VertexAttribI2iv(GLuint index, const GLint *v) argument
1225 VertexAttribI3iv(GLuint index, const GLint *v) argument
1231 VertexAttribI4iv(GLuint index, const GLint *v) argument
1238 VertexAttribI1uiv(GLuint index, const GLuint *v) argument
1244 VertexAttribI2uiv(GLuint index, const GLuint *v) argument
1250 VertexAttribI3uiv(GLuint index, const GLuint *v) argument
1256 VertexAttribI4uiv(GLuint index, const GLuint *v) argument
1264 VertexAttribL1dv(GLuint index, const GLdouble *v) argument
1270 VertexAttribL2dv(GLuint index, const GLdouble *v) argument
1276 VertexAttribL3dv(GLuint index, const GLdouble *v) argument
1282 VertexAttribL4dv(GLuint index, const GLdouble *v) argument
[all...]
/external/skia/debugger/
H A DSkDebugger.h25 void setIndex(int index) { argument
26 fIndex = index;
39 bool isCommandVisible(int index) { argument
40 return fDebugCanvas->getDrawCommandVisibilityAt(index);
43 void setCommandVisible(int index, bool isVisible) { argument
44 fDebugCanvas->toggleCommand(index, isVisible);
47 SkDrawCommand* getDrawCommandAt(int index) { argument
48 return fDebugCanvas->getDrawCommandAt(index);
72 int getCommandAtPoint(int x, int y, int index) { argument
73 return fDebugCanvas->getCommandAtPoint(x, y, index);
92 int index() { function in class:SkDebugger
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolEditor.java51 * @return the constant pool index of the Utf8Constant.
59 for (int index = 1; index < constantPoolCount; index++)
61 Constant constant = constantPool[index];
69 return index;
80 * @return the constant pool index of the LongConstant.
88 for (int index = 1; index < constantPoolCount; index
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DClassHeaderReader.java76 int index = 10;
79 buffer(index + 3); // TODO: reduce calls to buffer
80 int tag = b[index];
81 items[i] = index + 1;
97 size = 2 + readUnsignedShort(index + 1);
106 index += size + 1;
108 buffer(index + 8);
109 access = readUnsignedShort(index);
110 thisClass = readClass(index + 2);
111 superClass = readClass(index
126 readClass(int index) argument
135 readUnsignedShort(int index) argument
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DDetailedArrayReferenceValue.java66 for (int index = 0; index < values.length; index++)
68 values[index] = initialValueFactory.createValue(elementType);
135 int index = indexValue.value();
136 if (index >=0 &&
137 index < values.length)
139 return values[index];
153 int index = indexValue.value();
154 if (index >
[all...]
/external/icu/icu4c/source/samples/uciter8/
H A Duit_len8.c97 * start current UTF-8 index
98 * index current UTF-16 index; may be -1="unknown" after setState()
105 * point to after the corresponding byte sequence. The UTF-16 index will be
106 * one less than what it would otherwise be corresponding to the UTF-8 index.
122 if(iter->index<0) {
123 /* the current UTF-16 index is unknown after setState(), count from the beginning */
126 int32_t i, limit, index; local
129 i=index=0;
130 limit=iter->start; /* count up to the UTF-8 index */
414 int32_t index; local
451 int32_t index; local
503 int32_t index=(int32_t)(state>>1); /* UTF-8 index */ local
[all...]
/external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Types/
H A DtINT16_ARRAY.py52 - Testing array index out of bounds
99 for index in range (self.array_size):
100 indexed_array_value = index + self.array_min
105 indexed_array_value_path = "".join([self.param_name, "/", str(index)])
108 % (self.param_name, str(index), err))
110 % (self.param_name, str(index), out))
114 % (self.param_name, str(index), err))
116 % (self.param_name, str(index), str(indexed_array_value), out))
118 indexed_files_system_array_value = open(self.param_short_name).read().splitlines()[index]
120 % (self.param_name, str(index)))
[all...]
H A DtUINT32_ARRAY.py53 - Testing array index out of bounds
100 for index in range (self.array_size):
101 indexed_array_value = index + self.array_min
106 indexed_array_value_path = "".join([self.param_name, "/", str(index)])
109 % (self.param_name, str(index), err))
111 % (self.param_name, str(index), out))
115 % (self.param_name, str(index), err))
117 % (self.param_name, str(index), str(indexed_array_value), out))
119 indexed_files_system_array_value = open(self.param_short_name).read().splitlines()[index]
121 % (self.param_name, str(index)))
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
H A DBase64.java69 // index in the output array
71 // index in the input array
142 int index = 0, i, crlr = 0, end = in.length - in.length%3;
144 out[index++] = map[(in[i] & 0xff) >> 2];
145 out[index++] = map[((in[i] & 0x03) << 4)
147 out[index++] = map[((in[i+1] & 0x0f) << 2)
149 out[index++] = map[(in[i+2] & 0x3f)];
150 if (((index - crlr)%76 == 0) && (index != 0)) {
151 out[index
[all...]
/external/proguard/src/proguard/gui/
H A DListPanel.java190 for (int index = 1; index < getComponentCount(); index++)
192 list.add(getComponent(index));
211 for (int index = 0; index < elements.length; index++)
213 listModel.addElement(elements[index]);
218 for (int index = 0; index < selectedIndice
258 setElementAt(Object element, int index) argument
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/com/google/gdata/util/common/base/
H A DUnicodeEscaper.java91 * returning the index of the next character that requires escaping.
114 * the index of the first character to be scanned
116 * the index immediately after the last character to be scanned
122 int index = start;
123 while (index < end) {
124 int cp = codePointAt(csq, index, end);
128 index += Character.isSupplementaryCodePoint(cp) ? 2 : 1;
130 return index;
162 int index = nextEscapeIndex(string, 0, end);
163 return index
187 escapeSlow(String s, int index) argument
455 codePointAt(CharSequence seq, int index, int end) argument
487 growBuffer(char[] dest, int index, int size) argument
[all...]
/external/brotli/research/
H A Dbrotlidump.py111 __slots__ = 'code', 'index'
114 self.index = value
117 return 'Symbol({}, {})'.format(self.code.name, self.index)
122 return self.code.length(self.index)
125 return self.index
131 return self.code.bitPattern(self.index)
136 return self.code.extraBits(self.index)
141 return self.code.mnemonic(self.index)
151 return self.code.value(self.index, extra)
154 return self.code.value(self.index)
[all...]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Dtest_VIDIOC_TUNER.c92 static int do_get_tuner(int f, __u32 index) argument
99 tuner.index = index;
109 CU_ASSERT_EQUAL(tuner.index, index);
138 tuner2.index = tuner.index;
152 ".index = %u, "
163 tuner.index,
192 __u32 index; local
208 __u32 index; local
232 __u32 index; local
256 __u32 index; local
312 do_set_tuner_audmode(__u32 index, __u32 audmode) argument
331 do_set_tuner_audmode_invalid(__u32 index, __u32 audmode) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DX500NameTokenizer.java12 private int index; field in class:X500NameTokenizer
27 this.index = -1;
33 return (index != value.length());
38 if (index == value.length())
43 int end = index + 1;
86 index = end;
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSLabel.java39 DNSLabel(String name, int index) { argument
41 _index = index;
63 * @param index
66 public static DNSLabel labelForByte(int index) { argument
67 int maskedIndex = index & LABEL_MASK;
75 * @param index
78 public static int labelValue(int index) { argument
79 return index & LABEL_NOT_MASK;
84 return this.name() + " index " + this.indexValue();
/external/libcxx/test/std/utilities/variant/variant.variant/variant.status/
H A Dindex.pass.cpp25 // constexpr size_t index() const noexcept;
40 static_assert(v.index() == 0, "");
45 static_assert(v.index() == 1, "");
50 assert(v.index() == 1);
52 assert(v.index() == 0);
58 assert(v.index() == 0);
60 assert(v.index() == std::variant_npos);

Completed in 1149 milliseconds

1234567891011>>