Searched refs:index (Results 201 - 225 of 8369) sorted by relevance

1234567891011>>

/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyStringList.java53 * @param index index of the element to return
55 * @throws IndexOutOfBoundsException if the index is out of range
56 * ({@code index < 0 || index >= size()})
58 ByteString getByteString(int index); argument
64 * @param index index of the element to return
66 * @throws IndexOutOfBoundsException if the index is out of range
67 * ({@code index <
69 getRaw(int index) argument
79 getByteArray(int index) argument
112 set(int index, ByteString element) argument
125 set(int index, byte[] element) argument
[all...]
/external/skia/tests/
H A DSkBase64Test.cpp14 for (int index = 0; index < 256; ++index) {
15 all[index] = (signed char) (index + 1);
/external/skia/tools/gpu/gl/debug/
H A DGrTextureObj.h34 int index = fTextureUnitReferees.find(referee); local
35 GrAlwaysAssert(0 <= index);
36 fTextureUnitReferees.removeShuffle(index);
39 int index = fTextureUnitReferees.find(referee); local
40 return 0 <= index;
/external/skqp/tests/
H A DSkBase64Test.cpp14 for (int index = 0; index < 256; ++index) {
15 all[index] = (signed char) (index + 1);
/external/skqp/tools/gpu/gl/debug/
H A DGrTextureObj.h34 int index = fTextureUnitReferees.find(referee); local
35 GrAlwaysAssert(0 <= index);
36 fTextureUnitReferees.removeShuffle(index);
39 int index = fTextureUnitReferees.find(referee); local
40 return 0 <= index;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderStringReference.java41 int index = DexWriter.NO_INDEX; field in class:BuilderStringReference
52 return index;
55 @Override public void setIndex(int index) { argument
56 this.index = index;
H A DBuilderTypeReference.java41 int index = DexWriter.NO_INDEX; field in class:BuilderTypeReference
52 return index;
55 @Override public void setIndex(int index) { argument
56 this.index = index;
/external/v8/src/objects/
H A Dliteral-objects.cc14 Object* BoilerplateDescription::name(int index) const {
17 DCHECK_NE(size(), index); local
18 return get(2 * index);
21 Object* BoilerplateDescription::value(int index) const {
22 return get(2 * index + 1);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DSuballocatedIntVector.java149 // Is the new index an index into the cache row of m_map?
161 int index=m_firstFree>>>m_SHIFT;
164 if(index>=m_map.length)
166 int newsize=index+m_numblocks;
171 int[] block=m_map[index];
173 block=m_map[index]=new int[m_blocksize];
199 int index=m_firstFree>>>m_SHIFT;
204 if(index>=m_map.length)
206 int newsize=index
468 indexOf(int elem, int index) argument
[all...]
/external/libmojo/ipc/
H A Dipc_message_attachment_set.cc64 size_t* index) {
79 *index = attachments_.size() - 1;
87 size_t index; local
88 return AddAttachment(attachment, &index);
92 unsigned index) {
93 if (index >= size()) {
94 DLOG(WARNING) << "Accessing out of bound index:" << index << "/" << size();
103 // num_fds:2 msg:FD(index = 1) control:SCM_RIGHTS {n, m}
107 // setting the index o
62 AddAttachment( scoped_refptr<MessageAttachment> attachment, size_t* index) argument
91 GetAttachmentAt( unsigned index) argument
[all...]
/external/tensorflow/tensorflow/tools/docs/
H A Ddoc_generator_visitor_test.py39 }, visitor.index)
45 [('index', doc_generator_visitor.DocGeneratorVisitor.index)])
47 self.assertEqual({'DocGeneratorVisitor': ['index']},
51 'DocGeneratorVisitor.index':
52 doc_generator_visitor.DocGeneratorVisitor.index
53 }, visitor.index)
65 [('index', doc_generator_visitor.DocGeneratorVisitor.index),
66 ('index2', doc_generator_visitor.DocGeneratorVisitor.index)])
[all...]
/external/trappy/tests/trappy/stats/
H A DIndexer.py31 :param index: Pandas index object. This can be
33 :type index: :mod:`pandas.Index`
39 def __init__(self, index):
40 self.index = index
43 """Returns an empty series with the initialized index
45 return pd.Series(np.zeros(len(self.index)), index=self.index)
[all...]
/external/trappy/trappy/stats/
H A DIndexer.py31 :param index: Pandas index object. This can be
33 :type index: :mod:`pandas.Index`
39 def __init__(self, index):
40 self.index = index
43 """Returns an empty series with the initialized index
45 return pd.Series(np.zeros(len(self.index)), index=self.index)
[all...]
/external/dng_sdk/source/
H A Ddng_temperature.cpp89 for (uint32 index = 1; index <= 30; index++)
95 real64 dv = kTempTable [index] . t;
104 real64 uu = u - kTempTable [index] . u;
105 real64 vv = v - kTempTable [index] . v;
113 if (dt <= 0.0 || index == 30)
125 if (index == 1)
136 fTemperature = 1.0E6 / (kTempTable [index - 1] . r * f +
137 kTempTable [index ]
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DUVector32.java31 public void setElementAt(int elem, int index) { buffer[index] = elem; } argument
32 public void insertElementAt(int elem, int index) { argument
34 System.arraycopy(buffer, index, buffer, index + 1, length - index);
35 buffer[index] = elem;
H A DUVector64.java31 public void setElementAt(long elem, int index) { buffer[index] = elem; } argument
32 public void insertElementAt(long elem, int index) { argument
34 System.arraycopy(buffer, index, buffer, index + 1, length - index);
35 buffer[index] = elem;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRemoveTransliterator.java49 Position index, boolean incremental) {
52 text.replace(index.start, index.limit, "");
53 int len = index.limit - index.start;
54 index.contextLimit -= len;
55 index.limit -= len;
48 handleTransliterate(Replaceable text, Position index, boolean incremental) argument
/external/icu/icu4c/source/samples/translit/answers/
H A Dunaccent.cpp45 UTransPosition& index,
48 while (index.start < index.limit) {
49 UChar c = text.charAt(index.start);
53 text.handleReplaceBetween(index.start, index.start+1, str);
55 index.start++;
44 handleTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument
/external/icu/icu4c/source/samples/translit/
H A Dunaccent.cpp48 UTransPosition& index,
51 while (index.start < index.limit) {
52 UChar c = text.charAt(index.start);
56 text.handleReplaceBetween(index.start, index.start+1, str);
58 index.start++;
47 handleTransliterate(Replaceable& text, UTransPosition& index, UBool incremental) const argument
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DUVector32.java27 public void setElementAt(int elem, int index) { buffer[index] = elem; } argument
28 public void insertElementAt(int elem, int index) { argument
30 System.arraycopy(buffer, index, buffer, index + 1, length - index);
31 buffer[index] = elem;
H A DUVector64.java27 public void setElementAt(long elem, int index) { buffer[index] = elem; } argument
28 public void insertElementAt(long elem, int index) { argument
30 System.arraycopy(buffer, index, buffer, index + 1, length - index);
31 buffer[index] = elem;
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DRemoveTransliterator.java48 Position index, boolean incremental) {
51 text.replace(index.start, index.limit, "");
52 int len = index.limit - index.start;
53 index.contextLimit -= len;
54 index.limit -= len;
47 handleTransliterate(Replaceable text, Position index, boolean incremental) argument
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c61 unsigned index = c->Count; local
77 c->Constants[index] = *constant;
80 return index;
89 unsigned index; local
92 for(index = 0; index < c->Count; ++index) {
93 if (c->Constants[index].Type == RC_CONSTANT_STATE) {
94 if (c->Constants[index].u.State[0] == state0 &&
95 c->Constants[index]
116 unsigned index; local
141 unsigned index; local
[all...]
/external/python/cpython2/Modules/
H A Dunicodedata_db.h331 struct reindex{int start;short count,index;}; member in struct:reindex
665 /* index tables for the database records */
3524 /* index tables for the decomposition data */
6182 int index; local
6183 if (n >= 0x110000) index = 0;
6185 index = changes_3_2_0_index[n>>7];
6186 index = changes_3_2_0_data[(index<<7)+(n & 127)];
6188 return change_records_3_2_0+index;
/external/python/cpython3/Modules/
H A Dunicodedata_db.h347 struct reindex{int start;short count,index;}; member in struct:reindex
696 /* index tables for the database records */
4164 /* index tables for the decomposition data */
7358 int index; local
7359 if (n >= 0x110000) index = 0;
7361 index = changes_3_2_0_index[n>>7];
7362 index = changes_3_2_0_data[(index<<7)+(n & 127)];
7364 return change_records_3_2_0+index;

Completed in 1697 milliseconds

1234567891011>>