Searched refs:index (Results 51 - 75 of 4641) sorted by relevance

1234567891011>>

/external/replicaisland/src/com/replica/replicaisland/
H A DInputTouchScreen.java22 public final void press(int index, float currentTime, float x, float y) { argument
23 assert (index >= 0 && index < MAX_TOUCH_POINTS);
24 if (index < MAX_TOUCH_POINTS) {
25 mTouchPoints[index].press(currentTime, x, y);
29 public final void release(int index) { argument
30 if (index < MAX_TOUCH_POINTS) {
31 mTouchPoints[index].release();
41 public boolean getTriggered(int index, float time) { argument
43 if (index < MAX_TOUCH_POINT
49 getPressed(int index) argument
57 setVector(int index, Vector2 vector) argument
63 getX(int index) argument
71 getY(int index) argument
79 getLastPressedTime(int index) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DTokenIndex.java10 int index; field in class:TokenIndex
15 this.index = 0;
21 this.index = 1;
27 this.index = 2;
33 this.index = 3;
39 this.index = 4;
45 this.index = 5;
51 this.index = 6;
57 this.index = 7;
63 this.index
[all...]
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_model_observer.cc8 int index,
14 int index) {
18 int index) {
26 int index,
36 int index,
43 int index) {
47 int index) {
51 int index) {
55 int index) {
7 TabInsertedAt(TabContentsWrapper* contents, int index, bool foreground) argument
12 TabClosingAt(TabStripModel* tab_strip_model, TabContentsWrapper* contents, int index) argument
17 TabDetachedAt(TabContentsWrapper* contents, int index) argument
24 TabSelectedAt(TabContentsWrapper* old_contents, TabContentsWrapper* new_contents, int index, bool user_gesture) argument
35 TabChangedAt(TabContentsWrapper* contents, int index, TabChangeType change_type) argument
40 TabReplacedAt(TabStripModel* tab_strip_model, TabContentsWrapper* old_contents, TabContentsWrapper* new_contents, int index) argument
46 TabPinnedStateChanged(TabContentsWrapper* contents, int index) argument
50 TabMiniStateChanged(TabContentsWrapper* contents, int index) argument
54 TabBlockedStateChanged(TabContentsWrapper* contents, int index) argument
H A Dtab_strip_model_order_controller.cc42 // Get the index of the next item opened by this tab, and insert after
44 int index; local
46 index = tabstrip_->GetIndexOfLastTabContentsOpenedBy(
49 index = tabstrip_->GetIndexOfFirstTabContentsOpenedBy(
52 if (index != TabStripModel::kNoTab)
53 return index + delta;
72 // First see if the index being removed has any "child" tabs. If it does, we
79 int index = tabstrip_->GetIndexOfNextTabContentsOpenedBy(removed_controller, local
82 if (index != TabStripModel::kNoTab)
83 return GetValidIndex(index, removing_inde
87 int index = tabstrip_->GetIndexOfNextTabContentsOpenedBy(parent_opener, local
109 TabSelectedAt( TabContentsWrapper* old_contents, TabContentsWrapper* new_contents, int index, bool user_gesture) argument
119 int index = tabstrip_->GetIndexOfTabContents(old_contents); local
141 GetValidIndex( int index, int removing_index) const argument
[all...]
H A Dtab_strip_selection_model.cc15 static void IncrementFromImpl(int index, int* value) { argument
16 if (*value >= index)
20 static bool DecrementFromImpl(int index, int* value) { argument
21 if (*value == index) {
25 if (*value > index)
38 void TabStripSelectionModel::IncrementFrom(int index) { argument
42 IncrementFromImpl(index, &(*i));
44 IncrementFromImpl(index, &anchor_);
45 IncrementFromImpl(index, &active_);
48 void TabStripSelectionModel::DecrementFrom(int index) { argument
60 SetSelectedIndex(int index) argument
70 AddIndexToSelection(int index) argument
77 RemoveIndexFromSelection(int index) argument
84 SetSelectionFromAnchorTo(int index) argument
97 AddSelectionFromAnchorTo(int index) argument
[all...]
H A Dtab_strip_selection_model.h15 // active: the index of the currently visible tab in the tab strip.
16 // anchor: the index of the last tab the user clicked on. Extending the
17 // selection extends it from this index.
20 // anchor and active index correspond to the same thing.
45 // Increments all indices >= |index|. For example, if the selection consists
49 void IncrementFrom(int index);
51 // Shifts all indices < |index| down by 1. If |index| is selected, it is
55 void DecrementFrom(int index);
57 // Sets the anchor, active and selection to |index|
[all...]
/external/proguard/src/proguard/classfile/
H A DProgramMethod.java77 for (int index = 0; index < u2attributesCount; index++)
79 attributes[index].accept(programClass, this, attributeVisitor);
90 for (int index = 0; index < referencedClasses.length; index++)
92 if (referencedClasses[index] != null)
94 referencedClasses[index].accept(classVisitor);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTypedArray.java18 public boolean getBoolean(int index, boolean defValue) { argument
23 public float getFloat(int index, float defValue) { argument
28 public int getInt(int index, int defValue) { argument
33 public int getInteger(int index, int defValue) { argument
38 public float getDimension(int index, float defValue) { argument
43 public int getDimensionPixelOffset(int index, int defValue) { argument
48 public int getDimensionPixelSize(int index, int defValue) { argument
53 public int getLayoutDimension(int index, int defValue) { argument
58 public int getResourceId(int index, int defValue) { argument
/external/proguard/src/proguard/obfuscate/
H A DSimpleNameFactory.java40 private int index = 0; field in class:SimpleNameFactory
67 index = 0;
73 return name(index++);
78 * Returns the name at the given index.
80 private String name(int index) argument
88 if (index < cachedNames.size())
90 return (String)cachedNames.get(index);
94 String name = newName(index);
95 cachedNames.add(index, name);
102 * Creates and returns the name at the given index
104 newName(int index) argument
129 charAt(int index) argument
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSRuleList.cpp59 CSSRule* CSSRuleList::item(unsigned index) argument
62 StyleBase* rule = m_list->item(index);
67 if (index < m_lstCSSRules.size())
68 return m_lstCSSRules[index].get();
72 void CSSRuleList::deleteRule(unsigned index) argument
76 if (index >= m_lstCSSRules.size()) {
81 if (m_lstCSSRules[index]->isKeyframeRule()) {
82 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(m_lstCSSRules[index].get())->style())
86 m_lstCSSRules[index]->setParent(0);
87 m_lstCSSRules.remove(index);
101 insertRule(CSSRule* rule, unsigned index) argument
[all...]
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DMultiInstructionVisitor.java86 for (int index = 0; index < instructionVisitorCount; index++)
88 instructionVisitors[index].visitSimpleInstruction(clazz, method, codeAttribute, offset, simpleInstruction);
94 for (int index = 0; index < instructionVisitorCount; index++)
96 instructionVisitors[index].visitVariableInstruction(clazz, method, codeAttribute, offset, variableInstruction);
102 for (int index = 0; index < instructionVisitorCoun
[all...]
/external/v8/src/
H A Dplatform-tls-win32.h42 inline intptr_t InternalGetExistingThreadLocal(intptr_t index) { argument
47 ASSERT(0 <= index && index < kMaxSlots);
48 if (index < kMaxInlineSlots) {
50 kPointerSize * index));
55 kPointerSize * (index - kMaxInlineSlots));
/external/llvm/utils/TableGen/
H A DX86DisassemblerTables.cpp213 for (unsigned index = 0; index < 256; ++index) {
214 if (decision.instructionIDs[index] != decision.instructionIDs[0])
217 if (((index & 0xc0) == 0xc0) &&
218 (decision.instructionIDs[index] != decision.instructionIDs[0xc0]))
221 if (((index & 0xc0) != 0xc0) &&
222 (decision.instructionIDs[index] != decision.instructionIDs[0x00]))
225 if (((index & 0xc0) == 0xc0) &&
226 (decision.instructionIDs[index] !
[all...]
/external/proguard/src/proguard/classfile/attribute/preverification/
H A DMoreZeroFrame.java80 for (int index = 0; index < additionalVariablesCount; index++)
82 additionalVariables[index].accept(clazz, method, codeAttribute, offset, verificationTypeVisitor);
118 for (int index = 0; index < additionalVariablesCount; index++)
120 VerificationType thisType = this.additionalVariables[index];
121 VerificationType otherType = other.additionalVariables[index];
137 for (int index
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_column_model.js39 * Returns id of column at the given index.
40 * @param {number} index The index of the column.
43 getId: function(index) {
44 return this.columns_[index].id;
48 * Returns name of column at the given index. Name is used as column header
50 * @param {number} index The index of the column.
53 getName: function(index) {
54 return this.columns_[index]
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DAttributesImplSerializer.java32 * faster lookup of an index by qName, which is commonly done in the stream
42 * Hash table of qName/index values to quickly lookup the index
46 * The keys to the hashtable to find the index are either
66 * This method gets the index of an attribute given its qName.
68 * @return the integer index of the attribute.
73 int index;
79 index = super.getIndex(qname);
80 return index;
86 index
[all...]
/external/proguard/src/proguard/util/
H A DClassNameParser.java62 int index;
66 for (index = 0; index < regularExpression.length(); index++)
69 if (regularExpression.regionMatches(index, "L///;", 0, 5))
76 new OrMatcher(parse(regularExpression.substring(index + 5)),
85 if (regularExpression.regionMatches(index, "L***;", 0, 5))
90 createAnyTypeMatcher(parse(regularExpression.substring(index + 5)));
95 if (regularExpression.regionMatches(index, "**", 0, 2))
104 parse(regularExpression.substring(index
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-111557.js5153 var index = 0;
5229 levelParents[currentLevel + 1] = index;
5231 // levelIndex is the child index under a branch
5273 // NOTE, index to add to is the parent index + 1 for node tree offset of root=0
5330 var navElement = navigationLink("NDS Libraries for C ","http://developer.novell.com/ndk/doc/ndslib/treetitl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
5331 navigationTree[index] = navElement;
5332 index++;
5337 var navElement = navigationLink("NDS Backup Services ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hevgtl7k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
5338 navigationTree[index]
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java44 * current input position, index(), or some other marker so that
47 * track line/col info as well as input index so its markers are
52 /** Return the current input symbol index 0..n where n indicates the
53 * last symbol has been read. The index is the symbol about to be
56 int index(); method in interface:IntStream
58 /** Reset the stream so that next call to index would return marker.
59 * The marker will usually be index() but it doesn't have to be. It's
89 /** Set the input cursor to the position indicated by index. This is
95 * requirement and in that its argument is strictly an input cursor (index).
105 * The index i
109 seek(int index) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DCharArrayWrapper.java35 public char getChar(int index){ argument
36 return m_char[index];
H A DIntArrayWrapper.java35 public int getInt(int index){ argument
36 return m_int[index];
H A DLongArrayWrapper.java35 public long getLong(int index){ argument
36 return m_long[index];
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dlist_selection_model.js56 * Convenience getter which returns the first selected index.
79 * @param {number} start The first index to select.
80 * @param {number} end The last index to select.
92 for (var index = start; index != end; index++) {
93 this.setIndexSelected(index, true);
130 * Sets the selected state for an index.
131 * @param {number} index The index t
[all...]
/external/clang/test/Index/
H A Dfix-its.c1 // RUN: c-index-test -test-load-source all -fspell-checking %s 2> %t
23 unsigned long index; local
26 MACRO(printf("%d", index));
/external/elfutils/tests/
H A Drun-ranlib-test3.sh29 indexed=testfile20.index

Completed in 640 milliseconds

1234567891011>>