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

1234567891011>>

/external/swiftshader/src/Shader/
H A DPixelShader.cpp233 int sampler = instruction[i]->dst.index;
245 int index = instruction[i]->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 = instruction[i]->src[argument].index; local
690 unsigned char index = instruction[i]->usageIndex; local
701 unsigned char index = instruction[i]->dst.index; local
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java71 private void visitBytecode(CodeIterator ci, int[] stack, int index) argument
75 ci.move(index);
76 int stackDepth = -stack[index];
80 index = ci.next();
81 stack[index] = stackDepth;
82 int op = ci.byteAt(index);
83 stackDepth = visitInst(op, ci, index, stackDepth);
85 throw new BadBytecode("stack underflow at " + index);
87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth))
98 private boolean processBranch(int opcode, CodeIterator ci, int index, argument
211 visitInst(int op, CodeIterator ci, int index, int stack) argument
258 getFieldSize(CodeIterator ci, int index) argument
[all...]
/external/lzma/CPP/Windows/Control/
H A DComboBox.h23 LRESULT SetCurSel(int index) { return SendMsg(CB_SETCURSEL, index, 0); } argument
27 LRESULT GetLBTextLen(int index) { return SendMsg(CB_GETLBTEXTLEN, index, 0); } argument
28 LRESULT GetLBText(int index, LPTSTR s) { return SendMsg(CB_GETLBTEXT, index, (LPARAM)s); } argument
29 LRESULT GetLBText(int index, CSysString &s);
31 LRESULT GetLBText(int index, UString &s);
34 LRESULT SetItemData(int index, LPARAM lParam) { return SendMsg(CB_SETITEMDATA, index, lPara argument
35 GetItemData(int index) argument
49 DeleteItem(int index) argument
[all...]
/external/mesa3d/src/gallium/drivers/ilo/shader/
H A Dtoy_tgsi.h69 int index:16; member in struct:toy_tgsi::__anon15012
79 int index:16; member in struct:toy_tgsi::__anon15013
88 int index:16; member in struct:toy_tgsi::__anon15014
104 toy_tgsi_find_input(const struct toy_tgsi *tgsi, int index) argument
109 if (tgsi->inputs[slot].index == index)
120 toy_tgsi_find_system_value(const struct toy_tgsi *tgsi, int index) argument
125 if (tgsi->system_values[slot].index == index)
136 toy_tgsi_get_imm(const struct toy_tgsi *tgsi, unsigned index, argument
[all...]
/external/proguard/src/proguard/classfile/util/
H A DInternalTypeEnumeration.java39 private int index; field in class:InternalTypeEnumeration
50 this.index = firstIndex + 1;
84 return index < lastIndex;
93 int startIndex = index;
97 char c = descriptor.charAt(index++);
113 return descriptor.substring(startIndex, index);
131 while (descriptor.charAt(index) == ClassConstants.TYPE_ARRAY)
133 index++;
142 char c = descriptor.charAt(index++);
162 char c = descriptor.charAt(index
[all...]
H A DDescriptorClassEnumeration.java37 private int index; field in class:DescriptorClassEnumeration
83 index = 0;
97 return index < descriptor.length();
106 int fluffStartIndex = index;
109 loop: while (index < descriptor.length())
111 switch (descriptor.charAt(index++))
163 while (descriptor.charAt(index++) != ClassConstants.TYPE_CLASS_END);
169 descriptor.charAt(index) != ClassConstants.TYPE_GENERIC_END)
173 while (descriptor.charAt(index++) != ClassConstants.TYPE_GENERIC_BOUND);
177 return descriptor.substring(fluffStartIndex, index);
[all...]
/external/proguard/src/proguard/evaluation/
H A DTracedVariables.java78 * @param index the variable index.
81 public Value getProducerValue(int index) argument
83 return producerVariables.getValue(index);
90 * @param index the variable index.
93 public void setProducerValue(int index, Value value) argument
95 producerVariables.store(index, value);
125 for (int index = 0; index < siz
143 store(int index, Value value) argument
[all...]
/external/v8/src/interpreter/
H A Dbytecode-register.cc40 Register Register::FromParameterIndex(int index, int parameter_count) { argument
41 DCHECK_GE(index, 0);
42 DCHECK_LT(index, parameter_count);
43 int register_index = kLastParamRegisterIndex - parameter_count + index + 1;
50 return index() - kLastParamRegisterIndex + parameter_count - 1;
58 return index() == kFunctionClosureRegisterIndex;
66 return index() == kCurrentContextRegisterIndex;
72 return index() == kNewTargetRegisterIndex;
80 return index() == kBytecodeArrayRegisterIndex;
88 return index()
[all...]
H A Dbytecode-register.h21 explicit Register(int index = kInvalidIndex) : index_(index) {}
23 int index() const { return index_; } function in class:v8::internal::interpreter::final
24 bool is_parameter() const { return index() < 0; }
27 static Register FromParameterIndex(int index, int parameter_count);
73 return index() == other.index();
76 return index() != other.index();
79 return index() < othe
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationrootelements.cpp28 int32_t index = findP(p); local
29 uint32_t q = elements[index];
32 // p == elements[index] is a root primary. Find the CE before it.
35 secTer = elements[index - 1];
42 index -= 2;
44 p = elements[index];
49 --index;
53 // p > elements[index] which is the previous primary.
58 q = elements[++index];
73 int32_t index local
90 int32_t index = findPrimary(p); local
120 int32_t index; local
145 int32_t index; local
173 getPrimaryAfter(uint32_t p, int32_t index, UBool isCompressible) const argument
195 getSecondaryAfter(int32_t index, uint32_t s) const argument
221 getTertiaryAfter(int32_t index, uint32_t s, uint32_t t) const argument
276 int32_t index = findP(p); local
[all...]
H A Dpluralaffix.cpp40 PluralMapBase::Category index = PluralMapBase::NONE; local
41 for (DigitAffix *current = affixes.nextMutable(index);
42 current != NULL; current = affixes.nextMutable(index)) {
50 PluralMapBase::Category index = PluralMapBase::NONE; local
51 for (DigitAffix *current = affixes.nextMutable(index);
52 current != NULL; current = affixes.nextMutable(index)) {
60 PluralMapBase::Category index = PluralMapBase::NONE; local
61 for (DigitAffix *current = affixes.nextMutable(index);
62 current != NULL; current = affixes.nextMutable(index)) {
73 PluralMapBase::Category index local
98 PluralMapBase::Category index = PluralMapBase::OTHER; local
[all...]
/external/v8/src/compiler/
H A Dcode-generator-impl.h30 Register InputRegister(size_t index) { argument
31 return ToRegister(instr_->InputAt(index));
34 FloatRegister InputFloatRegister(size_t index) { argument
35 return ToFloatRegister(instr_->InputAt(index));
38 DoubleRegister InputDoubleRegister(size_t index) { argument
39 return ToDoubleRegister(instr_->InputAt(index));
42 Simd128Register InputSimd128Register(size_t index) { argument
43 return ToSimd128Register(instr_->InputAt(index));
46 double InputDouble(size_t index) { return ToDouble(instr_->InputAt(index)); } argument
48 InputFloat32(size_t index) argument
50 InputInt32(size_t index) argument
54 InputUint32(size_t index) argument
58 InputInt64(size_t index) argument
62 InputInt8(size_t index) argument
66 InputInt16(size_t index) argument
70 InputInt3(size_t index) argument
74 InputInt4(size_t index) argument
78 InputInt5(size_t index) argument
82 InputInt6(size_t index) argument
86 InputExternalReference(size_t index) argument
90 InputHeapObject(size_t index) argument
94 InputLabel(size_t index) argument
96 InputRpo(size_t index) argument
104 TempRegister(size_t index) argument
[all...]
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONArray.java39 * methods for accessing the values by index, and <code>put</code> methods for
238 * Get the object value associated with an index.
239 * @param index
240 * The index must be between 0 and length() - 1.
242 * @throws JSONException If there is no value for the index.
244 public Object get(int index) throws JSONException { argument
245 Object o = opt(index);
247 throw new JSONException("JSONArray[" + index + "] not found.");
254 * Get the boolean value associated with an index.
257 * @param index Th
262 getBoolean(int index) argument
285 getDouble(int index) argument
307 getInt(int index) argument
321 getJSONArray(int index) argument
338 getJSONObject(int index) argument
356 getLong(int index) argument
369 getString(int index) argument
379 isNull(int index) argument
422 opt(int index) argument
436 optBoolean(int index) argument
450 optBoolean(int index, boolean defaultValue) argument
467 optDouble(int index) argument
481 optDouble(int index, double defaultValue) argument
498 optInt(int index) argument
511 optInt(int index, int defaultValue) argument
526 optJSONArray(int index) argument
540 optJSONObject(int index) argument
554 optLong(int index) argument
567 optLong(int index, long defaultValue) argument
584 optString(int index) argument
597 optString(int index, String defaultValue) argument
700 put(int index, boolean value) argument
715 put(int index, Collection value) argument
731 put(int index, double value) argument
746 put(int index, int value) argument
761 put(int index, long value) argument
776 put(int index, Map value) argument
794 put(int index, Object value) argument
817 remove(int index) argument
[all...]
/external/python/cpython2/Lib/idlelib/
H A DScrolledList.py50 def get(self, index):
51 return self.listbox.get(index)
55 index = self.listbox.index("active")
56 self.select(index)
57 self.on_select(index)
61 index = self.listbox.index("active")
62 self.select(index)
63 self.on_double(index)
[all...]
/external/guava/guava/src/com/google/common/escape/
H A DUnicodeEscaper.java94 * returning the index of the next character that requires escaping.
111 * @param start the index of the first character to be scanned
112 * @param end the index immediately after the last character to be scanned
117 int index = start;
118 while (index < end) {
119 int cp = codePointAt(csq, index, end);
123 index += Character.isSupplementaryCodePoint(cp) ? 2 : 1;
125 return index;
155 int index = nextEscapeIndex(string, 0, end);
156 return index
176 escapeSlow(String s, int index) argument
266 codePointAt(CharSequence seq, int index, int end) argument
303 growBuffer(char[] dest, int index, int size) argument
[all...]
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
H A DTransliteratingTextComponent.java108 // : start += index[0];
109 // : cursor = start + index[2] - index[0];
122 Transliterator.Position index = new Transliterator.Position();
123 index.contextLimit = buf.length();
124 index.contextStart = 0;
125 index.start = getKeyStart();
126 if (index.start == -1) index.start = getSelectionStart();
127 index
[all...]
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp392 for (unsigned index = 0; index < 256; ++index) {
393 if (decision.instructionIDs[index] != decision.instructionIDs[0])
396 if (((index & 0xc0) == 0xc0) &&
397 (decision.instructionIDs[index] != decision.instructionIDs[0xc0]))
400 if (((index & 0xc0) != 0xc0) &&
401 (decision.instructionIDs[index] != decision.instructionIDs[0x00]))
404 if (((index & 0xc0) == 0xc0) &&
405 (decision.instructionIDs[index] !
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_c_v_t.py26 writer.simpletag("cv", value=value, index=i)
33 index = safeEval(attrs["index"])
35 for i in range(1 + index - len(self.values)):
37 self.values[index] = value
42 def __getitem__(self, index):
43 return self.values[index]
45 def __setitem__(self, index, value):
46 self.values[index] = value
48 def __delitem__(self, index)
[all...]
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_c_v_t.py26 writer.simpletag("cv", value=value, index=i)
33 index = safeEval(attrs["index"])
35 for i in range(1 + index - len(self.values)):
37 self.values[index] = value
42 def __getitem__(self, index):
43 return self.values[index]
45 def __setitem__(self, index, value):
46 self.values[index] = value
48 def __delitem__(self, index)
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharacterUtility.java59 * @param index to start substring in byte count
63 int index)
69 b = array[index];
73 index ++;
75 return index;
85 * @param strindex index within str to start comparing
86 * @param aindex array index to start in byte count
120 * @param index to start substrings in byte count
124 static int skipNullTermByteSubString(byte[] array, int index, argument
133 b = array[index];
62 getNullTermByteSubString(StringBuffer str, byte[] array, int index) argument
151 skipByteSubString(byte[] array, int index, int length, byte skipend) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterUtility.java58 * @param index to start substring in byte count
62 int index)
68 b = array[index];
72 index ++;
74 return index;
84 * @param strindex index within str to start comparing
85 * @param aindex array index to start in byte count
119 * @param index to start substrings in byte count
123 static int skipNullTermByteSubString(byte[] array, int index, argument
132 b = array[index];
61 getNullTermByteSubString(StringBuffer str, byte[] array, int index) argument
150 skipByteSubString(byte[] array, int index, int length, byte skipend) argument
[all...]
/external/mockftpserver/branches/1.x_Branch/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.0/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.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/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...]

Completed in 6612 milliseconds

1234567891011>>