Searched refs:index (Results 276 - 300 of 4641) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/tabs/
H A Ddefault_tab_handler.h29 virtual TabContentsWrapper* AddBlankTabAt(int index, bool foreground);
43 virtual bool CanDuplicateContentsAt(int index);
44 virtual void DuplicateContentsAt(int index);
48 virtual bool CanCloseContentsAt(int index);
60 int index,
64 int index);
65 virtual void TabDetachedAt(TabContentsWrapper* contents, int index);
69 int index,
77 int index);
78 virtual void TabPinnedStateChanged(TabContentsWrapper* contents, int index);
[all...]
/external/proguard/src/proguard/classfile/instruction/
H A DLookUpSwitchInstruction.java96 for (int index = 0; index < jumpOffsetCount; index++)
98 cases[index] = readInt(code, offset); offset += 4;
99 jumpOffsets[index] = readInt(code, offset); offset += 4;
117 for (int index = 0; index < cases.length; index++)
119 writeInt(code, offset, cases[index]); offset += 4;
120 writeInt(code, offset, jumpOffsets[index]); offse
[all...]
/external/v8/src/
H A Darguments.h53 Object*& operator[] (int index) { argument
54 ASSERT(0 <= index && index < length_);
55 return arguments_[-index];
58 template <class S> Handle<S> at(int index) { argument
59 Object** value = &((*this)[index]);
66 int smi_at(int index) { argument
67 return Smi::cast((*this)[index])->value();
70 double number_at(int index) { argument
71 return (*this)[index]
[all...]
H A Duri.js38 function URIAddEncodedOctetToBuffer(octet, result, index) {
39 result[index++] = 37; // Char code of '%'.
40 result[index++] = hexCharCodeArray[octet >> 4];
41 result[index++] = hexCharCodeArray[octet & 0x0F];
42 return index;
46 function URIEncodeOctets(octets, result, index) {
51 index = URIAddEncodedOctetToBuffer(octets[0], result, index);
52 if (octets[1]) index = URIAddEncodedOctetToBuffer(octets[1], result, index);
[all...]
/external/chromium/net/disk_cache/
H A Dbitmap.cc29 // Returns the index of the first bit set to |value| from |word|. This code
92 void Bitmap::Set(int index, bool value) { argument
93 DCHECK_LT(index, num_bits_);
94 DCHECK_GE(index, 0);
95 const int i = index & (kIntBits - 1);
96 const int j = index / kIntBits;
103 bool Bitmap::Get(int index) const {
104 DCHECK_LT(index, num_bits_);
105 DCHECK_GE(index, 0);
106 const int i = index
111 Toggle(int index) argument
212 FindNextBit(int* index, int limit, bool value) const argument
275 FindBits(int* index, int limit, bool value) const argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs67 public static void add( this IList list, int index, object value ) argument
69 list.Insert( index, value );
117 public static T elementAt<T>( this IList<T> list, int index )
119 return list[index];
123 public static object get( this IList list, int index )
125 return list[index];
129 public static T get<T>( this IList<T> list, int index )
131 return list[index];
136 public static T get<T>( this List<T> list, int index )
138 return list[index];
156 set( this IList list, int index, object value ) argument
162 set( this IList<T> list, int index, T value ) argument
168 set( this List<T> list, int index, T value ) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DDateComponents.cpp103 unsigned index = start; local
104 for (; index < length; ++index) {
105 if (!isASCIIDigit(src[index]))
108 return index - start;
292 unsigned index = start; local
293 if (src[index] == 'Z') {
294 end = index + 1;
299 if (src[index] == '+')
301 else if (src[index]
336 unsigned index; local
358 unsigned index; local
382 unsigned index; local
413 unsigned index = start + 2; local
465 unsigned index; local
484 unsigned index; local
[all...]
H A DHTMLTableRowElement.cpp121 PassRefPtr<HTMLElement> HTMLTableRowElement::insertCell(int index, ExceptionCode& ec) argument
125 if (index < -1 || index > numCells) {
131 if (index < 0 || index >= numCells)
135 if (index < 1)
138 n = children->item(index);
144 void HTMLTableRowElement::deleteCell(int index, ExceptionCode& ec) argument
148 if (index == -1)
149 index
[all...]
H A DHTMLTableSectionElement.cpp62 // the index... but they aren't used during usual HTML parsing anyway
63 PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionCode& ec) argument
68 if (index < -1 || index > numRows)
72 if (numRows == index || index == -1)
76 if (index < 1)
79 n = children->item(index);
86 void HTMLTableSectionElement::deleteRow(int index, ExceptionCode& ec) argument
90 if (index
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DAttributesEditor.java182 int index = findAttribute(attributesCount,
185 if (index < 0)
190 attributes[index] = attribute;
231 int index = findAttribute(attributesCount,
234 if (index < 0)
240 System.arraycopy(attributes, index + 1,
241 attributes, index,
242 attributesCount - index - 1);
252 * Finds the index of the attribute with the given name in the given
259 for (int index
[all...]
H A DElementValuesEditor.java151 int index = findElementValue(elementValuesCount,
154 if (index < 0)
159 elementValues[index] = elementValue;
200 int index = findElementValue(elementValuesCount,
203 if (index < 0)
209 System.arraycopy(elementValues, index + 1,
210 elementValues, index,
211 elementValuesCount - index - 1);
221 * Finds the index of the element value with the given name in the given
228 for (int index
[all...]
/external/chromium/chrome/browser/ui/search_engines/
H A Dtemplate_url_table_model.cc237 void TemplateURLTableModel::Remove(int index) { argument
241 const TemplateURL* template_url = &GetTemplateURL(index);
243 scoped_ptr<ModelEntry> entry(entries_[index]);
244 entries_.erase(entries_.begin() + index);
245 if (index < last_search_engine_index_)
248 observer_->OnItemsRemoved(index, 1);
256 void TemplateURLTableModel::Add(int index, TemplateURL* template_url) { argument
257 DCHECK(index >= 0 && index <= RowCount());
259 entries_.insert(entries_.begin() + index, entr
267 ModifyTemplateURL(int index, const string16& title, const string16& keyword, const std::string& url) argument
286 ReloadIcon(int index) argument
294 GetTemplateURL(int index) argument
309 MoveToMainGroup(int index) argument
325 MakeDefaultTemplateURL(int index) argument
357 NotifyChanged(int index) argument
[all...]
/external/aac/libSBRdec/src/
H A Dtranscendent.h215 int preShift, postShift, index, shift; local
225 - leave 8 bits as index for table
234 The first interval has half width so the lowest bit of the index is
239 index = (shift<0)? (LONG)b_m << (-shift) : (LONG)b_m >> shift;
242 /* The index has INV_TABLE_BITS +1 valid bits here. Clear the other bits. */
243 index &= (1 << (INV_TABLE_BITS+1)) - 1;
246 index--;
249 index = index >> 1;
252 bInv_m = (index<
271 int preShift, postShift, index, shift; local
[all...]
/external/chromium/base/
H A Dtime_win_unittest.cc50 for (int index = 0; index < counter; index++) {
86 for (int index = 0; index < kThreads; index++) {
89 threads[index] = reinterpret_cast<HANDLE>(
92 EXPECT_NE((HANDLE)NULL, threads[index]);
99 for (int index = 0; index < kThread
[all...]
/external/eigen/Eigen/src/Core/
H A DSwap.h57 inline Scalar& coeffRef(Index index) argument
59 return m_expression.const_cast_derived().coeffRef(index);
67 inline Scalar& coeffRef(Index index) const
69 return m_expression.coeffRef(index);
84 void copyCoeff(Index index, const DenseBase<OtherDerived>& other) argument
87 eigen_internal_assert(index >= 0 && index < m_expression.size());
88 Scalar tmp = m_expression.coeff(index);
89 m_expression.coeffRef(index) = _other.coeff(index);
107 copyPacket(Index index, const DenseBase<OtherDerived>& other) argument
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dlookahead.c22 unsigned int read_idx; /* Read index */
23 unsigned int write_idx; /* Write index */
28 /* Return the buffer at the given absolute index and increment the index */
33 unsigned int index = *idx; local
34 struct lookahead_entry *buf = ctx->buf + index;
36 assert(index < ctx->max_sz);
37 if(++index >= ctx->max_sz)
38 index -= ctx->max_sz;
39 *idx = index;
194 vp8_lookahead_peek(struct lookahead_ctx *ctx, unsigned int index, int direction) argument
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/visitor/
H A DVerificationTypeVisitor.java46 public void visitStackIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, IntegerType integerType); argument
47 public void visitStackFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType); argument
48 public void visitStackLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, LongType longType); argument
49 public void visitStackDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType); argument
50 public void visitStackTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, TopType topType); argument
51 public void visitStackObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType); argument
52 public void visitStackNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType); argument
53 public void visitStackUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedType uninitializedType); argument
54 public void visitStackUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedThisType uninitializedThisType); argument
56 public void visitVariablesIntegerType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, IntegerTyp argument
57 visitVariablesFloatType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, FloatType floatType) argument
58 visitVariablesLongType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, LongType longType) argument
59 visitVariablesDoubleType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, DoubleType doubleType) argument
60 visitVariablesTopType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, TopType topType) argument
61 visitVariablesObjectType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, ObjectType objectType) argument
62 visitVariablesNullType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, NullType nullType) argument
63 visitVariablesUninitializedType( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedType uninitializedType) argument
64 visitVariablesUninitializedThisType(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int index, UninitializedThisType uninitializedThisType) argument
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Drecently_used_folders_combo_model.cc58 string16 RecentlyUsedFoldersComboModel::GetItemAt(int index) { argument
59 if (index == static_cast<int>(nodes_.size()))
61 return nodes_[index]->GetTitle();
64 const BookmarkNode* RecentlyUsedFoldersComboModel::GetNodeAt(int index) { argument
65 if (index < 0 || index >= static_cast<int>(nodes_.size()))
67 return nodes_[index];
/external/chromium/net/base/
H A Dx509_openssl_util.cc18 int index,
21 X509_NAME_ENTRY* entry = X509_NAME_get_entry(name, index);
45 int index,
47 return ParsePrincipalKeyAndValueByIndex(name, index, NULL, value);
51 int index = X509_NAME_get_index_by_NID(name, nid, -1); local
52 if (index < 0)
55 return ParsePrincipalValueByIndex(name, index, value);
17 ParsePrincipalKeyAndValueByIndex(X509_NAME* name, int index, std::string* key, std::string* value) argument
44 ParsePrincipalValueByIndex(X509_NAME* name, int index, std::string* value) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DAbstractApplication.java67 int index = commands.indexOf(param);
68 if (index == -1)
70 commands.remove(index);
71 if (index == commands.size()) // if this is the last command
74 while (index < commands.size()) { // while not the last command
75 String command = (String) commands.get(index);
79 commands.remove(index);
/external/icu4c/i18n/
H A Dremtrans.cpp57 void RemoveTransliterator::handleTransliterate(Replaceable& text, UTransPosition& index, argument
62 text.handleReplaceBetween(index.start, index.limit, empty);
63 int32_t len = index.limit - index.start;
64 index.contextLimit -= len;
65 index.limit -= len;
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSRecordClass.java72 DNSRecordClass(String name, int index) { argument
74 _index = index;
98 * @param index
101 public boolean isUnique(int index) { argument
102 return (this != CLASS_UNKNOWN) && ((index & CLASS_UNIQUE) != 0);
121 * @param index
124 public static DNSRecordClass classForIndex(int index) { argument
125 int maskedIndex = index & CLASS_MASK;
129 logger.log(Level.WARNING, "Could not find record class for index: " + index);
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DKeyFrame.java47 private int index; field in class:KeyFrame
67 oc.write(index, "index", 0);
73 index=ic.readInt("index", 0);
77 return index;
80 public void setIndex(int index) { argument
81 this.index = index;
/external/skia/src/utils/
H A DSkBitSet.h31 /** Set the value of the index-th bit.
33 void setBit(int index, bool value);
35 /** Test if bit index is set.
37 bool isBitSet(int index) const;
53 unsigned int index = i * 32; local
56 array->push(index + j);
69 uint32_t* internalGet(int index) const {
70 SkASSERT((size_t)index < fBitCount);
71 size_t internalIndex = index / 32;
/external/skia/tools/
H A Dpinspect.cpp60 int index = 1; local
61 if (!strcmp(argv[index], "--dump-ops")) {
62 index += 1;
66 for (; index < argc; ++index) {
67 SkAutoTUnref<SkPicture> pic(inspect(argv[index]));
71 if (index < argc - 1) {

Completed in 901 milliseconds

<<11121314151617181920>>