Searched refs:index (Results 76 - 100 of 4641) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DEdgeInfoVec.java45 public EdgeInfo at(int index) { argument
46 return get(index);
H A DStripInfoVec.java47 public StripInfo at(int index) { argument
48 return get(index);
/external/proguard/src/proguard/classfile/attribute/
H A DLineNumberTableAttribute.java65 for (int index = u2lineNumberTableLength-1 ; index >= 0 ; index--)
67 LineNumberInfo info = lineNumberTable[index];
93 for (int index = 0; index < u2lineNumberTableLength; index++)
97 lineNumberInfoVisitor.visitLineNumberInfo(clazz, method, codeAttribute, lineNumberTable[index]);
/external/proguard/src/proguard/classfile/util/
H A DClassSubHierarchyInitializer.java43 for (int index = 0; index < programClass.u2interfacesCount; index++)
45 addSubclass(programClass, programClass.getInterface(index));
59 for (int index = 0; index < interfaceClasses.length; index++)
62 addSubclass(libraryClass, interfaceClasses[index]);
/external/proguard/src/proguard/classfile/visitor/
H A DConcreteClassDownTraveler.java63 for (int index = 0; index < subClasses.length; index++)
65 subClasses[index].accept(this);
88 for (int index = 0; index < subClasses.length; index++)
90 subClasses[index].accept(this);
H A DMultiClassVisitor.java83 for (int index = 0; index < classVisitorCount; index++)
85 classVisitors[index].visitProgramClass(programClass);
92 for (int index = 0; index < classVisitorCount; index++)
94 classVisitors[index].visitLibraryClass(libraryClass);
/external/skia/legacy/src/animator/
H A DSkDisplayList.cpp41 for (int index = 0; index < fDrawList.count(); index++) {
42 SkDrawable* draw = fDrawList[index];
74 for (int index = 0; index < (*list)->count(); index++) {
75 SkDrawable* draw = (**list)[index];
77 return index;
81 return index;
100 SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) argument
127 int index = fActiveList.find(active); local
[all...]
H A DSkOpArray.cpp16 bool SkOpArray::getIndex(int index, SkOperand2* operand) { argument
17 if (index >= count()) {
21 *operand = begin()[index];
/external/skia/src/animator/
H A DSkDisplayList.cpp41 for (int index = 0; index < fDrawList.count(); index++) {
42 SkDrawable* draw = fDrawList[index];
74 for (int index = 0; index < (*list)->count(); index++) {
75 SkDrawable* draw = (**list)[index];
77 return index;
81 return index;
100 SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, SkGroup** parent, SkGroup** found, SkTDDrawableArray** grandList, int &index) argument
127 int index = fActiveList.find(active); local
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1439135.js35 var index = substring.indexOf('Y');
36 assertEquals(34, index);
/external/webkit/Source/WebCore/html/canvas/
H A DCanvasPixelArray.h49 void set(unsigned index, double value) argument
51 m_data->set(index, value);
54 void set(unsigned index, unsigned char value) argument
56 m_data->set(index, value);
59 bool get(unsigned index, unsigned char& result) const argument
61 return m_data->get(index, result);
64 unsigned char get(unsigned index) const
66 return m_data->get(index);
/external/webkit/Source/WebCore/platform/android/
H A DSSLKeyGeneratorAndroid.cpp38 String signedPublicKeyAndChallengeString(unsigned index, const String& challenge, const KURL& url) argument
40 return PlatformBridge::getSignedPublicKeyAndChallengeString(index, challenge, url);
/external/webkit/Source/WebKit/chromium/public/
H A DWebExternalPopupMenuClient.h40 virtual void didChangeSelection(int index) = 0;
42 // Should be called when an index has been accepted.
45 virtual void didAcceptIndex(int index) = 0;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPath.java30 /** Marks an array index step */
62 * @param index the index of the segment to return
65 public XMPPathSegment getSegment(int index) argument
67 return (XMPPathSegment) segments.get(index);
87 int index = 1;
88 while (index < size())
90 result.append(getSegment(index));
91 if (index < size() - 1)
93 int kind = getSegment(index
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DInstructionPrinter.java150 int index = iter.u16bitAt(pos + 2);
164 return opcodes[opcode] + " " + index;
195 private static String classInfo(ConstPool pool, int index) { argument
196 return "#" + index + " = Class " + pool.getClassInfo(index);
200 private static String interfaceMethodInfo(ConstPool pool, int index) { argument
201 return "#" + index + " = Method "
202 + pool.getInterfaceMethodrefClassName(index) + "."
203 + pool.getInterfaceMethodrefName(index) + "("
204 + pool.getInterfaceMethodrefType(index)
207 methodInfo(ConstPool pool, int index) argument
215 fieldInfo(ConstPool pool, int index) argument
262 ldc(ConstPool pool, int index) argument
[all...]
/external/skia/emoji/
H A DEmojiFont.h44 /** Returns index for the corresponding index to the emoji table, or 0
52 static bool IsEmojiGlyph(uint16_t index) { argument
53 return index >= kGlyphBase;
58 static SkScalar GetAdvanceWidth(uint16_t index, const SkPaint& paint);
64 static void Draw(SkCanvas*, uint16_t index, SkScalar x, SkScalar y,
76 index. We also assume the the number of emoji will not overflow
/external/skia/legacy/emoji/
H A DEmojiFont.h44 /** Returns index for the corresponding index to the emoji table, or 0
52 static bool IsEmojiGlyph(uint16_t index) { argument
53 return index >= kGlyphBase;
58 static SkScalar GetAdvanceWidth(uint16_t index, const SkPaint& paint);
64 static void Draw(SkCanvas*, uint16_t index, SkScalar x, SkScalar y,
76 index. We also assume the the number of emoji will not overflow
/external/v8/test/mjsunit/
H A Dfor-in-delete.js32 var index = 0;
35 assertEquals(expected[index], p);
36 index++;
38 assertEquals(expected.length, index);
/external/webkit/Source/WebCore/css/
H A DCSSValueList.cpp49 CSSValue* CSSValueList::item(unsigned index) argument
51 if (index >= m_values.size())
53 return m_values[index].get();
76 for (size_t index = 0; index < m_values.size(); index++) {
77 if (m_values.at(index)->cssText() == val->cssText()) {
78 m_values.remove(index);
90 for (size_t index = 0; index < m_value
[all...]
/external/icu4c/test/intltest/
H A Dalphaindextst.cpp30 UnicodeString joinLabelsAndAppend(AlphabeticIndex::ImmutableIndex &index, UnicodeString &dest) { argument
33 for (int32_t i = 0; (bucket = index.getBucket(i)) != NULL; ++i) {
50 void AlphabeticIndexTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) argument
85 AlphabeticIndex *index = new AlphabeticIndex(Locale::getEnglish(), status); local
87 lc = index->getBucketCount(status);
91 delete index;
99 index = new AlphabeticIndex(coll, status);
101 TEST_ASSERT(coll == &index->getCollator());
102 assertEquals("only the underflow label in an index built from a collator",
103 1, index
[all...]
/external/chromium/base/
H A Dfix_wp64.h34 inline LONG_PTR SetWindowLongPtrA(HWND window, int index, LONG_PTR new_long) { argument
35 return ::SetWindowLongA(window, index, static_cast<LONG>(new_long));
41 inline LONG_PTR SetWindowLongPtrW(HWND window, int index, LONG_PTR new_long) { argument
42 return ::SetWindowLongW(window, index, static_cast<LONG>(new_long));
48 inline LONG_PTR GetWindowLongPtrA(HWND window, int index) { argument
49 return ::GetWindowLongA(window, index);
55 inline LONG_PTR GetWindowLongPtrW(HWND window, int index) { argument
56 return ::GetWindowLongW(window, index);
62 inline LONG_PTR SetClassLongPtrA(HWND window, int index, LONG_PTR new_long) { argument
63 return ::SetClassLongA(window, index, static_cas
69 SetClassLongPtrW(HWND window, int index, LONG_PTR new_long) argument
[all...]
/external/chromium/chrome/browser/ui/views/autocomplete/
H A Dautocomplete_result_view_model.h15 // Returns true if the index is selected.
16 virtual bool IsSelectedIndex(size_t index) const = 0;
18 // Returns true if the index is hovered.
19 virtual bool IsHoveredIndex(size_t index) const = 0;
21 // If |index| is a match from an extension, returns the extension icon;
23 virtual const SkBitmap* GetIconIfExtensionMatch(size_t index) const = 0;
/external/icu4c/common/unicode/
H A Dparsepos.h37 * you can use the same <code>ParsePosition</code>, since the index parameter
50 * Default constructor, the index starts with 0 as default.
55 index(0),
60 * Create a new ParsePosition with the given initial index.
66 index(newIndex),
77 index(copy.index),
122 * is the index of the character at which parsing will begin; on output, it
123 * is the index of the character following the last character parsed.
124 * @return the current index
173 int32_t index; member in class:ParsePosition
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DSixDofSpringJoint.java66 public void enableSpring(int index, boolean onOff) { argument
67 enableSpring(objectId, index, onOff);
69 native void enableSpring(long objctId, int index, boolean onOff); argument
71 public void setStiffness(int index, float stiffness) { argument
72 setStiffness(objectId, index, stiffness);
74 native void setStiffness(long objctId, int index, float stiffness); argument
76 public void setDamping(int index, float damping) { argument
77 setDamping(objectId, index, damping);
80 native void setDamping(long objctId, int index, float damping); argument
85 public void setEquilibriumPoint(int index){ // se argument
88 setEquilibriumPoint(long objctId, int index) argument
[all...]
/external/proguard/src/proguard/
H A DUpToDateChecker.java59 for (int index = 0; index < programJars.size(); index++)
68 ClassPathEntry classPathEntry = programJars.get(index);
91 for (int index = 0; index < libraryJars.size(); index++)
100 ClassPathEntry classPathEntry = libraryJars.get(index);
136 for (int index = 0; index < file
[all...]

Completed in 681 milliseconds

1234567891011>>