Searched refs:index (Results 601 - 625 of 8871) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DLayerRectList.cpp49 LayerRect* LayerRectList::item(unsigned index) argument
51 if (index >= m_list.size())
54 return m_list[index].get();
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dbuild_applications.py24 input_path_flag_index = argv.index('--input_path')
26 output_path_flag_index = argv.index('--output_path')
29 debug_flag_index = argv.index('--debug')
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioFIFO.h52 // Update the FIFO index by the step, with appropriate wrapping around the endpoint.
53 int updateIndex(int index, int step) { return (index + step) % m_fifoLength; } argument
55 void findWrapLengths(size_t index, size_t providerSize, size_t& part1Length, size_t& part2Length);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageSource.cpp92 IntSize ImageSource::frameSizeAtIndex(size_t index, RespectImageOrientationEnum shouldRespectOrientation) const argument
97 IntSize size = m_decoder->frameSizeAtIndex(index);
119 PassRefPtr<NativeImageSkia> ImageSource::createFrameAtIndex(size_t index) argument
124 ImageFrame* buffer = m_decoder->frameBufferAtIndex(index);
138 float ImageSource::frameDurationAtIndex(size_t index) const
147 const float duration = m_decoder->frameDurationAtIndex(index) / 1000.0f;
158 bool ImageSource::frameHasAlphaAtIndex(size_t index) const
160 return !m_decoder || m_decoder->frameHasAlphaAtIndex(index);
163 bool ImageSource::frameIsCompleteAtIndex(size_t index) const
165 return m_decoder && m_decoder->frameIsCompleteAtIndex(index);
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DIntegralTypedArrayBase.h42 void set(unsigned index, double value) argument
44 if (index >= TypedArrayBase<T>::m_length)
50 TypedArrayBase<T>::data()[index] = static_cast<T>(static_cast<int64_t>(value));
/external/chromium_org/third_party/boringssl/src/crypto/
H A Ddirectory_win.c65 size_t index = 0, len_0 = strlen(directory) + 1; local
77 for (index = 0; index < len_0; index++) {
78 wdir[index] = (TCHAR)directory[index];
103 size_t index, len_0 = 0; local
113 for (index = 0; index < len_0; index
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DTestUtilities.cpp22 int index, minX, maxX, minY, maxY; local
24 for (index = 1; index < 4; ++index) {
25 if (cubic[minX].x > cubic[index].x) {
26 minX = index;
28 if (cubic[minY].y > cubic[index].y) {
29 minY = index;
31 if (cubic[maxX].x < cubic[index].x) {
32 maxX = index;
[all...]
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcodec.py32 self.index = 0
35 if self.index + length > len(self.bytes):
40 x |= self.bytes[self.index]
41 self.index += 1
45 bytes = self.bytes[self.index : self.index+lengthBytes]
46 self.index += lengthBytes
71 self.indexCheck = self.index
75 self.indexCheck = self.index
78 if (self.index
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Ddecode_bwe.c34 int16_t index; local
46 err = WebRtcIsacfix_DecodeSendBandwidth(streamdata, &index);
60 index);
/external/chromium_org/tools/json_schema_compiler/
H A Dutil.cc12 bool GetItemFromList(const base::ListValue& from, int index, int* out) { argument
13 return from.GetInteger(index, out);
16 bool GetItemFromList(const base::ListValue& from, int index, bool* out) { argument
17 return from.GetBoolean(index, out);
20 bool GetItemFromList(const base::ListValue& from, int index, double* out) { argument
21 return from.GetDouble(index, out);
24 bool GetItemFromList(const base::ListValue& from, int index, std::string* out) { argument
25 return from.GetString(index, out);
29 int index,
32 if (!from.Get(index,
28 GetItemFromList(const base::ListValue& from, int index, linked_ptr<base::Value>* out) argument
38 GetItemFromList(const base::ListValue& from, int index, linked_ptr<base::DictionaryValue>* out) argument
[all...]
/external/chromium_org/v8/src/arm/
H A Dlithium-gap-resolver-arm.h29 // Perform the move at the moves_ index in question (possibly requiring
31 void PerformMove(int index);
36 void BreakCycle(int index);
43 void EmitMove(int index);
/external/chromium_org/v8/src/mips/
H A Dlithium-gap-resolver-mips.h29 // Perform the move at the moves_ index in question (possibly requiring
31 void PerformMove(int index);
36 void BreakCycle(int index);
43 void EmitMove(int index);
/external/chromium_org/v8/src/mips64/
H A Dlithium-gap-resolver-mips64.h29 // Perform the move at the moves_ index in question (possibly requiring
31 void PerformMove(int index);
36 void BreakCycle(int index);
43 void EmitMove(int index);
/external/chromium_org/v8/src/
H A Dnatives.h17 int index);
32 // scripts have an index in the interval [0, GetDebuggerCount()). The
33 // non-debugger scripts have an index in the interval [GetDebuggerCount(),
37 static Vector<const char> GetRawScriptSource(int index);
38 static Vector<const char> GetScriptName(int index);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2596.js40 function boom(index) {
41 array[index] = doubles[0];
42 return array[index];
/external/kernel-headers/original/uapi/xen/
H A Dgntalloc.h29 uint64_t index; member in struct:ioctl_gntalloc_alloc_gref
46 uint64_t index; member in struct:ioctl_gntalloc_dealloc_gref
70 uint64_t index; member in struct:ioctl_gntalloc_unmap_notify
77 /* Clear (set to zero) the byte specified by index */
/external/lldb/test/python_api/formatters/
H A Djas_synth.py7 def get_child_at_index(self, index):
9 if index == 0:
11 if index == 1:
/external/openssl/crypto/
H A DLPdir_win.c103 size_t index = 0,len_0 = strlen(extdir) + 1; local
121 for (index = 0; index < len_0; index++)
122 wdir[index] = (TCHAR)extdir[index];
155 size_t index, len_0 = 0; local
164 for (index = 0; index < len_0; index
[all...]
/external/proguard/src/proguard/
H A DUpToDateChecker.java62 for (int index = 0; index < programJars.size(); index++)
65 ClassPathEntry classPathEntry = programJars.get(index);
75 for (int index = 0; index < libraryJars.size(); index++)
78 ClassPathEntry classPathEntry = libraryJars.get(index);
167 for (int index = 0; index < file
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSQLiteProgram.java37 * @param index The 1-based index to the parameter to bind null to
40 public void bindNull(int index) { argument
45 actualDBstatement.setNull(index,java.sql.Types.NULL);
55 * @param index The 1-based index to the parameter to bind
59 public void bindLong(int index, long value) { argument
63 actualDBstatement.setLong(index,value);
83 * @param index The 1-based index t
87 bindDouble(int index, double value) argument
104 bindString(int index, String value) argument
124 bindBlob(int index, byte[] value) argument
[all...]
/external/skia/experimental/Intersection/
H A DTestUtilities.cpp22 int index, minX, maxX, minY, maxY; local
24 for (index = 1; index < 4; ++index) {
25 if (cubic[minX].x > cubic[index].x) {
26 minX = index;
28 if (cubic[minY].y > cubic[index].y) {
29 minY = index;
31 if (cubic[maxX].x < cubic[index].x) {
32 maxX = index;
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Ddecode_bwe.c34 WebRtc_Word16 index; local
46 err = WebRtcIsacfix_DecodeSendBandwidth(streamdata, &index);
60 index);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DGlyphPage.h47 // Holds the glyph index and the corresponding SimpleFontData information for a given
109 unsigned index = indexForCharacter(c); local
110 if (const CustomFontData* customData = customFontToLoadAt(index))
112 return glyphDataForIndex(index);
115 ALWAYS_INLINE GlyphData glyphDataForIndex(unsigned index) const
117 ASSERT_WITH_SECURITY_IMPLICATION(index < size);
118 Glyph glyph = m_glyphs[index];
120 return GlyphData(glyph, m_perGlyphFontData[index]);
129 ALWAYS_INLINE Glyph glyphAt(unsigned index) const
131 ASSERT_WITH_SECURITY_IMPLICATION(index < siz
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSGroupingRule.cpp62 unsigned CSSGroupingRule::insertRule(const String& ruleString, unsigned index, ExceptionState& exceptionState) argument
66 if (index > m_groupRule->childRules().size()) {
67 exceptionState.throwDOMException(IndexSizeError, "the index " + String::number(index) + " must be less than or equal to the length of the rule list.");
88 m_groupRule->wrapperInsertRule(index, newRule);
90 m_childRuleCSSOMWrappers.insert(index, RefPtrWillBeMember<CSSRule>(nullptr));
91 return index;
94 void CSSGroupingRule::deleteRule(unsigned index, ExceptionState& exceptionState) argument
98 if (index >= m_groupRule->childRules().size()) {
99 exceptionState.throwDOMException(IndexSizeError, "the index "
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStringList.cpp45 String SVGStringList::getItem(size_t index, ExceptionState& exceptionState) argument
47 if (!checkIndexBound(index, exceptionState))
50 return m_values.at(index);
53 void SVGStringList::insertItemBefore(const String& newItem, size_t index) argument
55 // Spec: If the index is greater than or equal to numberOfItems, then the new item is appended to the end of the list.
56 if (index > m_values.size())
57 index = m_values.size();
59 // Spec: Inserts a new item into the list at the specified position. The index of the item before which the new item is to be
60 // inserted. The first item is number 0. If the index is equal to 0, then the new item is inserted at the front of the list.
61 m_values.insert(index, newIte
64 removeItem(size_t index, ExceptionState& exceptionState) argument
79 replaceItem(const String& newItem, size_t index, ExceptionState& exceptionState) argument
140 checkIndexBound(size_t index, ExceptionState& exceptionState) argument
[all...]

Completed in 695 milliseconds

<<21222324252627282930>>