Searched refs:index (Results 26 - 50 of 8369) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/commons/codec/language/
H A DDoubleMetaphone.java97 int index = isSilentStart(value) ? 1 : 0;
101 while (!result.isComplete() && index <= value.length() - 1) {
102 switch (value.charAt(index)) {
109 index = handleAEIOUY(value, result, index);
113 index = charAt(value, index + 1) == 'B' ? index + 2 : index + 1;
118 index
274 handleAEIOUY(String value, DoubleMetaphoneResult result, int index) argument
285 handleC(String value, DoubleMetaphoneResult result, int index) argument
339 handleCC(String value, DoubleMetaphoneResult result, int index) argument
365 handleCH(String value, DoubleMetaphoneResult result, int index) argument
396 handleD(String value, DoubleMetaphoneResult result, int index) argument
422 handleG(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
478 handleGH(String value, DoubleMetaphoneResult result, int index) argument
512 handleH(String value, DoubleMetaphoneResult result, int index) argument
530 handleJ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
565 handleL(String value, DoubleMetaphoneResult result, int index) argument
583 handleP(String value, DoubleMetaphoneResult result, int index) argument
599 handleR(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
616 handleS(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
669 handleSC(String value, DoubleMetaphoneResult result, int index) argument
701 handleT(String value, DoubleMetaphoneResult result, int index) argument
731 handleW(String value, DoubleMetaphoneResult result, int index) argument
770 handleX(String value, DoubleMetaphoneResult result, int index) argument
791 handleZ(String value, DoubleMetaphoneResult result, int index, boolean slavoGermanic) argument
813 conditionC0(String value, int index) argument
832 conditionCH0(String value, int index) argument
848 conditionCH1(String value, int index) argument
860 conditionL0(String value, int index) argument
876 conditionM0(String value, int index) argument
938 charAt(String value, int index) argument
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DBase.java15 public static final int StateUpdateChar(int index) argument
17 if (index < 4)
19 if (index < 10)
20 return index - 3;
21 return index - 6;
24 public static final int StateUpdateMatch(int index) argument
26 return (index < 7 ? 7 : 10);
29 public static final int StateUpdateRep(int index) argument
31 return (index < 7 ? 8 : 11);
34 public static final int StateUpdateShortRep(int index) argument
39 StateIsCharState(int index) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DFullFrame.java85 for (int index = 0; index < variablesCount; index++)
87 variables[index].variablesAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisitor);
97 for (int index = 0; index < stackCount; index++)
99 stack[index].stackAccept(clazz, method, codeAttribute, offset, index, verificationTypeVisito
[all...]
/external/clang/test/CodeGenCXX/
H A Dstatic-data-member-single-emission.cpp5 static const int index; member in struct:HasStaticInit
10 const int HasStaticInit<T>::index = the_count++; member in class:HasStaticInit
12 template <typename T> int func_tmpl1() { return HasStaticInit<T>::index; }
13 template <typename T> int func_tmpl2() { return HasStaticInit<T>::index; }
14 template <typename T> int func_tmpl3() { return HasStaticInit<T>::index; }
/external/skia/tests/
H A DPathOpsTypesTest.cpp17 for (size_t index = 0; index < roughlyTestsCount; ++index) {
18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
/external/skqp/tests/
H A DPathOpsTypesTest.cpp17 for (size_t index = 0; index < roughlyTestsCount; ++index) {
18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DFixedSizeList.java43 public T get(int index) { argument
44 if (index < 0 || index >= size()) {
47 return readItem(index);
51 * Reads the item at {@code index}
52 * @param index The index of the item. This is guaranteed to be in [0, size)
53 * @return The item at the given index
56 public abstract T readItem(int index); argument
/external/tensorflow/tensorflow/core/lib/gtl/
H A Diterator_range_test.cc30 int index = 0; local
32 ASSERT_LT(index, v.size());
33 EXPECT_EQ(v[index], prime);
34 ++index;
36 EXPECT_EQ(v.size(), index);
42 int index = 0; local
44 ASSERT_LT(index, v.size());
45 EXPECT_EQ(v[index], prime);
46 ++index;
48 EXPECT_EQ(v.size(), index);
54 int index = 1; local
66 int index = 1; local
[all...]
/external/proguard/src/proguard/evaluation/
H A DVariables.java122 for (int index = 0; index < size; index++)
124 Value thisValue = this.values[index];
125 Value otherValue = other.values[index];
129 // two local variables that share the same index), at some point
140 this.values[index] = newValue;
146 this.values[index] = null;
150 other.values[index] = null;
169 * Gets the Value of the variable with the given index, withou
171 getValue(int index) argument
186 store(int index, Value value) argument
208 load(int index) argument
225 iload(int index) argument
234 lload(int index) argument
243 fload(int index) argument
252 dload(int index) argument
261 aload(int index) argument
270 oload(int index) argument
[all...]
/external/proguard/src/proguard/obfuscate/
H A DMultiMappingProcessor.java52 for (int index = 0; index < mappingProcessors.length; index++)
54 result |= mappingProcessors[index].processClassMapping(className,
67 for (int index = 0; index < mappingProcessors.length; index++)
69 mappingProcessors[index].processFieldMapping(className,
85 for (int index = 0; index < mappingProcessor
[all...]
/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
H A DBlockInfo.java10 package org.tukaani.xz.index;
21 IndexDecoder index; field in class:BlockInfo
24 index = indexOfFirstStream;
28 return index.getStreamFlags().checkType;
32 return index.hasRecord(blockNumber + 1);
36 index.setBlockInfo(this, blockNumber + 1);
/external/ImageMagick/MagickCore/
H A Dcolormap-private.h29 static inline ssize_t ConstrainColormapIndex(Image *image,const ssize_t index, argument
32 if ((index < 0) || (index >= (ssize_t) image->colors))
38 return((ssize_t) index);
42 const ssize_t index,Quantum *target,ExceptionInfo *exception)
44 if ((index < 0) || (index >= (ssize_t) image->colors))
51 *target=(Quantum) index;
41 ValidateColormapValue(Image *image, const ssize_t index,Quantum *target,ExceptionInfo *exception) argument
/external/clang/test/CodeGen/
H A Dwindows-on-arm-stack-probe-size.c12 __declspec(dllexport) signed char function(unsigned index) {
15 return buffer[index];
/external/pdfium/fxbarcode/datamatrix/
H A DBC_DataMatrixSymbolInfo144.cpp37 int32_t index) {
38 return index <= 8 ? 156 : 155;
36 CBC_DataMatrixSymbolInfo144getDataLengthForInterleavedBlock( int32_t index) argument
/external/skia/src/pipe/
H A DSkRefSet.h18 T* get(int index) const {
19 SkASSERT((unsigned)index < (unsigned)fArray.count());
20 return fArray[index];
23 bool set(int index, T* value) { argument
24 if ((unsigned)index < (unsigned)fArray.count()) {
25 SkRefCnt_SafeAssign(fArray[index], value);
28 if (fArray.count() == index && value) {
32 SkDebugf("SkRefSet: index [%d] out of range %d\n", index, fArray.count());
/external/skqp/src/pipe/
H A DSkRefSet.h18 T* get(int index) const {
19 SkASSERT((unsigned)index < (unsigned)fArray.count());
20 return fArray[index];
23 bool set(int index, T* value) { argument
24 if ((unsigned)index < (unsigned)fArray.count()) {
25 SkRefCnt_SafeAssign(fArray[index], value);
28 if (fArray.count() == index && value) {
32 SkDebugf("SkRefSet: index [%d] out of range %d\n", index, fArray.count());
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
H A Dcreate_augmented_vec.c28 size_t index, /* (i) Index for the augmented vector to be created */
37 ilow = index-4;
40 ppo = buffer-index;
41 WEBRTC_SPL_MEMCPY_W16(cbVec, ppo, index);
45 ppi = buffer - index - 4;
55 ppo = buffer - index;
56 WEBRTC_SPL_MEMCPY_W16(cbVec+index,ppo,(SUBL-index));
27 WebRtcIlbcfix_CreateAugmentedVec( size_t index, int16_t *buffer, int16_t *cbVec ) argument
/external/v8/src/
H A Didentity-map.cc54 for (int index = start; index < capacity_; index++) {
55 if (keys_[index] == address) return index; // Found.
56 if (keys_[index] == not_mapped) return -1; // Not found.
58 for (int index = 0; index < start; index++) {
59 if (keys_[index]
85 DeleteIndex(int index) argument
124 int index = ScanKeysFor(key); local
135 int index = ScanKeysFor(key); local
173 int index = LookupOrInsert(key); local
186 int index = Lookup(key); local
197 int index = Lookup(key); local
249 int index = InsertKey(pair.first); local
275 int index = InsertKey(old_keys[i]); local
[all...]
/external/webrtc/webrtc/modules/audio_processing/vad/
H A Dvad_circular_buffer.cc79 int VadCircularBuffer::Get(int index, double* value) const { argument
80 int err = ConvertToLinearIndex(&index);
83 *value = buffer_[index];
87 int VadCircularBuffer::Set(int index, double value) { argument
88 int err = ConvertToLinearIndex(&index);
92 sum_ -= buffer_[index];
93 buffer_[index] = value;
98 int VadCircularBuffer::ConvertToLinearIndex(int* index) const {
99 if (*index < 0 || *index >
123 int index; local
[all...]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DAttributesImpl.java110 * @param index The attribute's index (zero-based).
112 * available, or null if the index is out of range.
115 public String getURI (int index)
117 if (index >= 0 && index < length) {
118 return data[index*5];
128 * @param index The attribute's index (zero-based).
130 * none is available, or null if the index i
113 getURI(int index) argument
131 getLocalName(int index) argument
149 getQName(int index) argument
167 getType(int index) argument
184 getValue(int index) argument
421 setAttribute(int index, String uri, String localName, String qName, String type, String value) argument
444 removeAttribute(int index) argument
474 setURI(int index, String uri) argument
494 setLocalName(int index, String localName) argument
514 setQName(int index, String qName) argument
533 setType(int index, String type) argument
552 setValue(int index, String value) argument
606 badIndex(int index) argument
[all...]
/external/clang/test/Analysis/
H A Dregion-store.c8 int index = 0; local
9 for (index = 0; index < 2; index++) {
10 int thing = (int []){0, 1}[index];
17 int index = 0; local
18 for (index = 0; index < 3; index++) {
19 int thing = (int [][3]){{0,0,0}, {1,1,1}, {2,2,2}}[index][inde
[all...]
/external/proguard/src/proguard/util/
H A DFileNameParser.java42 int index;
46 for (index = 0; index < regularExpression.length(); index++)
49 if (regularExpression.regionMatches(index, "**", 0, 2))
58 parse(regularExpression.substring(index + 2)));
63 else if (regularExpression.charAt(index) == '*')
72 parse(regularExpression.substring(index + 1)));
77 else if (regularExpression.charAt(index) == '?')
86 parse(regularExpression.substring(index
[all...]
H A DVariableStringMatcher.java61 for (int index = 0; index < minimumLength; index++)
63 if (!isAllowedCharacter(string.charAt(index)))
72 for (int index = minimumLength; index < maximumLength; index++)
74 if (nextMatcher.matches(string.substring(index)))
79 if (!isAllowedCharacter(string.charAt(index)))
100 for (int index
[all...]
/external/swiftshader/src/Shader/
H A DPixelShader.cpp233 int sampler = inst->dst.index;
245 int index = inst->dst.index + 2; local
261 interpolant[index][0] = true;
262 interpolant[index][1] = true;
263 interpolant[index][2] = true;
268 interpolant[index][0] = true;
269 interpolant[index][1] = true;
270 interpolant[index][2] = true;
274 interpolant[index][
303 int index = inst->src[argument].index; local
693 unsigned char index = inst->usageIndex; local
704 unsigned char index = inst->dst.index; local
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_index.py7 index = Index.create()
12 index = Index.create()
13 assert isinstance(index, Index)
14 tu = index.parse(os.path.join(kInputsDir, 'hello.cpp'))

Completed in 1623 milliseconds

1234567891011>>