Searched refs:index (Results 251 - 275 of 6826) sorted by relevance

<<11121314151617181920>>

/external/pdfium/fxjs/
H A Dcfxjse_arguments.h24 std::unique_ptr<CFXJSE_Value> GetValue(int32_t index) const;
25 bool GetBoolean(int32_t index) const;
26 int32_t GetInt32(int32_t index) const;
27 FX_FLOAT GetFloat(int32_t index) const;
28 CFX_ByteString GetUTF8String(int32_t index) const;
29 CFXJSE_HostObject* GetObject(int32_t index,
/external/r8/src/test/examples/regress_37726195/
H A DRegress.java10 public static void set(Object array, int index, byte value) { argument
13 floats[index] = value;
16 ints[index] = value;
22 public static void get(Object array, int index) { argument
25 float f = floats[index];
28 int i = ints[index];
/external/replicaisland/src/com/replica/replicaisland/
H A DGameFlowEvent.java36 public void post(int event, int index, Context context) { argument
38 DebugLog.d("GameFlowEvent", "Post Game Flow Event: " + event + ", " + index);
40 mDataIndex = index;
46 public void postImmediate(int event, int index, Context context) { argument
48 DebugLog.d("GameFlowEvent", "Execute Immediate Game Flow Event: " + event + ", " + index);
50 mDataIndex = index;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/
H A DSimpleKey.java31 private int index; field in class:SimpleKey
36 public SimpleKey(int tokenNumber, boolean required, int index, int line, int column, Mark mark) { argument
39 this.index = index;
58 return index;
71 return "SimpleKey - tokenNumber=" + tokenNumber + " required=" + required + " index="
72 + index + " line=" + line + " column=" + column;
/external/syslinux/core/legacynet/
H A Dportnum.c27 static bool test_bit(const uint32_t *bitmap, int32_t index) argument
30 asm("btl %2,%1 ; setc %0" : "=qm" (st) : "m" (*bitmap), "r" (index));
34 static void set_bit(uint32_t *bitmap, int32_t index) argument
36 asm volatile("btsl %1,%0" : "+m" (*bitmap) : "r" (index) : "memory");
39 static void clr_bit(uint32_t *bitmap, int32_t index) argument
41 asm volatile("btcl %1,%0" : "+m" (*bitmap) : "r" (index) : "memory");
/external/v8/src/crankshaft/
H A Dlithium-allocator-inl.h35 bool LAllocator::IsGapAt(int index) { return chunk_->IsGapAt(index); } argument
38 LInstruction* LAllocator::InstructionAt(int index) { argument
39 return chunk_->instructions()->at(index);
43 LGap* LAllocator::GapAt(int index) { argument
44 return chunk_->GetGapAt(index);
/external/v8/src/
H A Dlookup-cache-inl.h24 int index = Hash(source, name); local
25 Key& key = keys_[index];
26 if ((key.source == source) && (key.name == name)) return results_[index];
32 int index = Hash(source, name); local
33 Key& key = keys_[index];
36 results_[index] = result;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dsignalbar.cpp28 const QModelIndex &index) const
33 if (index.column() != 3) {
34 QStyledItemDelegate::paint(painter, option, index);
38 if (index.data().toInt() > 0)
39 signal = 0 - (256 - index.data().toInt());
41 signal = index.data().toInt();
/external/icu/icu4c/source/common/
H A Dmessagepattern.cpp354 modified.insert(part.index, (UChar)part.value);
374 * @param pluralStart the index of the first PluralFormat argument style part. (0..countParts()-1)
397 index==other.index &&
434 MessagePattern::parseMessage(int32_t index, int32_t msgStartLength, argument
445 addPart(UMSGPAT_PART_TYPE_MSG_START, index, msgStartLength, nestingLevel, errorCode);
446 index+=msgStartLength;
447 for(;;) { // while(index<msg.length()) with U_FAILURE(errorCode) check
451 if(index>=msg.length()) {
454 UChar c=msg.charAt(index
539 parseArg(int32_t index, int32_t argStartLength, int32_t nestingLevel, UParseError *parseError, UErrorCode &errorCode) argument
659 parseSimpleStyle(int32_t index, UParseError *parseError, UErrorCode &errorCode) argument
702 parseChoiceStyle(int32_t index, int32_t nestingLevel, UParseError *parseError, UErrorCode &errorCode) argument
770 parsePluralOrSelectStyle(UMessagePatternArgType argType, int32_t index, int32_t nestingLevel, UParseError *parseError, UErrorCode &errorCode) argument
1149 setParseError(UParseError *parseError, int32_t index) argument
1214 int32_t index=part.getIndex(); local
[all...]
/external/blktrace/btt/
H A Dq2d.c35 int index; local
41 default: index = 9; break;
42 case 500 ... 999: index = 8; break;
43 case 250 ... 499: index = 7; break;
44 case 100 ... 249: index = 6; break;
45 case 75 ... 99: index = 5; break;
46 case 50 ... 74: index = 4; break;
47 case 25 ... 49: index = 3; break;
48 case 10 ... 24: index = 2; break;
49 case 5 ... 9: index
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/command/
H A DCommand.java74 * Get the String value of the parameter at the specified index
76 * @param index - the index
79 * if the parameter index is invalid or the value is not a valid String
81 public String getRequiredParameter(int index) { argument
82 assertValidIndex(index);
83 return parameters[index];
87 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
89 * @param index
92 getParameter(int index) argument
103 getOptionalString(int index) argument
165 assertValidIndex(int index) argument
[all...]
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/core/command/
H A DCommand.java72 * Get the String value of the parameter at the specified index
73 * @param index - the index
75 * @throws AssertFailedException if the parameter index is invalid or the value is not a valid String
77 public String getRequiredString(int index) { argument
78 assertValidIndex(index);
79 return parameters[index];
83 * Get the String value of the parameter at the specified index; return null if no parameter exists for the index
84 * @param index
87 getParameter(int index) argument
97 getOptionalString(int index) argument
154 assertValidIndex(int index) argument
[all...]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyStringArrayList.java114 public String get(int index) { argument
115 Object o = list.get(index);
122 list.set(index, s);
129 list.set(index, s);
141 public String set(int index, String s) { argument
143 Object o = list.set(index, s);
148 public void add(int index, String element) { argument
150 list.add(index, element);
154 private void add(int index, ByteString element) { argument
156 list.add(index, elemen
160 add(int index, byte[] element) argument
176 addAll(int index, Collection<? extends String> c) argument
204 remove(int index) argument
233 getRaw(int index) argument
238 getByteString(int index) argument
248 getByteArray(int index) argument
258 set(int index, ByteString s) argument
262 setAndReturn(int index, ByteString s) argument
268 set(int index, byte[] s) argument
272 setAndReturn(int index, byte[] s) argument
336 get(int index) argument
346 set(int index, byte[] s) argument
353 add(int index, byte[] s) argument
359 remove(int index) argument
380 get(int index) argument
390 set(int index, ByteString s) argument
397 add(int index, ByteString s) argument
403 remove(int index) argument
[all...]
/external/skia/src/pathops/
H A DSkPathOpsRect.cpp24 for (int index = 0; index < roots; ++index) {
25 double t = startT + (endT - startT) * tValues[index];
41 for (int index = 0; index < roots; ++index) {
42 double t = startT + (endT - startT) * tValues[index];
58 for (int index = 0; index < root
[all...]

Completed in 1186 milliseconds

<<11121314151617181920>>