HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 226 - 250 of 12535) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/src/x64/
lithium-gap-resolver-x64.h 52 // Perform the move at the moves_ index in question (possibly requiring
54 void PerformMove(int index);
57 void EmitMove(int index);
61 void EmitSwap(int index);
  /external/icu4c/common/unicode/
parsepos.h 37 * 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/
SixDofSpringJoint.java 66 public void enableSpring(int index, boolean onOff) {
67 enableSpring(objectId, index, onOff);
69 native void enableSpring(long objctId, int index, boolean onOff);
71 public void setStiffness(int index, float stiffness) {
72 setStiffness(objectId, index, stiffness);
74 native void setStiffness(long objctId, int index, float stiffness);
76 public void setDamping(int index, float damping) {
77 setDamping(objectId, index, damping);
80 native void setDamping(long objctId, int index, float damping);
85 public void setEquilibriumPoint(int index){ // set the current constraint position/orientation as an equilibrium point for given DO
    [all...]
  /external/proguard/src/proguard/
UpToDateChecker.java 59 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 < files.length; index++
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
growable_memory_byte_array.cc 42 void GrowableMemoryByteArray::InternalPut(int32_t index, byte_t b) {
43 if ((size_t)index >= b_.size()) {
44 b_.resize((size_t)(index + 1));
46 b_[index] = b;
49 int32_t GrowableMemoryByteArray::InternalPut(int32_t index,
53 if ((size_t)index + length >= b_.size()) {
56 b_.resize((size_t)(index + length + 1));
58 std::copy(b + offset, b + offset + length, b_.begin() + index);
62 byte_t GrowableMemoryByteArray::InternalGet(int32_t index) {
63 return b_[index];
    [all...]
writable_font_data.cc 54 int32_t WritableFontData::WriteByte(int32_t index, byte_t b) {
55 array_->Put(BoundOffset(index), b);
59 int32_t WritableFontData::WriteBytes(int32_t index,
63 return array_->Put(BoundOffset(index),
66 BoundLength(index, length));
69 int32_t WritableFontData::WriteBytes(int32_t index, ByteVector* b) {
71 return WriteBytes(index, &((*b)[0]), 0, b->size());
74 int32_t WritableFontData::WriteBytesPad(int32_t index,
80 array_->Put(BoundOffset(index),
83 BoundLength(index,
    [all...]
  /external/skia/src/animator/
SkOpArray.cpp 16 bool SkOpArray::getIndex(int index, SkOperand2* operand) {
17 if (index >= count()) {
21 *operand = begin()[index];
  /external/skia/src/core/
SkPtrRecorder.cpp 34 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); local
35 if (index < 0) {
38 return fList[index].fIndex;
50 int index = SkTSearch<Pair, Less>(fList.begin(), count, pair, sizeof(pair)); local
51 if (index < 0) {
52 index = ~index; // turn it back into an index for insertion
55 *fList.insert(index) = pair;
58 return fList[index].fIndex
69 int index = p[i].fIndex - 1; local
    [all...]
  /external/v8/src/x64/
lithium-gap-resolver-x64.h 52 // Perform the move at the moves_ index in question (possibly requiring
54 void PerformMove(int index);
57 void EmitMove(int index);
61 void EmitSwap(int index);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
Clustering.java 24 public abstract ArrayList<Path> getCluster(int index);
25 public abstract String getClusterName(int index);
26 public MediaItem getClusterCover(int index) {
  /external/chromium_org/chrome/browser/ui/views/tabs/
stacked_tab_strip_layout.cc 63 void StackedTabStripLayout::SetActiveIndex(int index) {
65 active_index_ = index;
150 void StackedTabStripLayout::AddTab(int index, int add_types, int start_x) {
152 active_index_ = index;
153 else if (active_index_ >= index)
162 int active_x = (index + 1 == tab_count()) ?
163 width_ - size_.width() : ideal_x(index + 1);
170 MakeVisible(index);
173 void StackedTabStripLayout::RemoveTab(int index, int start_x, int old_x) {
174 if (index == active_index_
232 const int index = active_index(); local
303 int index = active_index(); local
483 int index = mini_tab_count_ + 1; local
505 int index = tab_count() - 1; local
    [all...]
  /external/chromium/chrome/browser/
language_order_table_model.cc 64 void LanguageOrderTableModel::Remove(int index) {
65 DCHECK(index >= 0 && index < RowCount());
66 languages_.erase(languages_.begin() + index);
68 observer_->OnItemsRemoved(index, 1);
75 int index = 0; local
79 return index;
81 index++;
87 void LanguageOrderTableModel::MoveDown(int index) {
88 if (index < 0 || index >= RowCount() - 1
    [all...]
  /external/chromium_org/chrome/browser/ui/toolbar/
back_forward_menu_model.h 60 virtual ItemType GetTypeAt(int index) const OVERRIDE;
61 virtual ui::MenuSeparatorType GetSeparatorTypeAt(int index) const OVERRIDE;
62 virtual int GetCommandIdAt(int index) const OVERRIDE;
63 virtual base::string16 GetLabelAt(int index) const OVERRIDE;
64 virtual bool IsItemDynamicAt(int index) const OVERRIDE;
65 virtual bool GetAcceleratorAt(int index,
67 virtual bool IsItemCheckedAt(int index) const OVERRIDE;
68 virtual int GetGroupIdAt(int index) const OVERRIDE;
69 virtual bool GetIconAt(int index, gfx::Image* icon) OVERRIDE;
71 int index) const OVERRIDE
    [all...]
back_forward_menu_model.cc 80 ui::MenuModel::ItemType BackForwardMenuModel::GetTypeAt(int index) const {
81 return IsSeparator(index) ? TYPE_SEPARATOR : TYPE_COMMAND;
85 int index) const {
89 int BackForwardMenuModel::GetCommandIdAt(int index) const {
90 return index;
93 base::string16 BackForwardMenuModel::GetLabelAt(int index) const {
95 if (index == GetItemCount() - 1)
99 if (IsSeparator(index))
104 NavigationEntry* entry = GetNavigationEntry(index);
122 bool BackForwardMenuModel::IsItemDynamicAt(int index) const
    [all...]
  /external/proguard/src/proguard/evaluation/
TracedVariables.java 34 * In addition, an initialization index can be reset and retrieved, pointing
81 * Resets the initialization index.
90 * Returns the most recent initialization index since it has been reset.
100 * @param index the variable index.
103 public Value getProducerValue(int index)
105 return producerVariables.getValue(index);
112 * @param index the variable index.
115 public void setProducerValue(int index, Value value
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_model.cc 104 bool TabStripModel::ContainsIndex(int index) const {
105 return index >= 0 && index < count();
110 int index = order_controller_->DetermineInsertionIndexForAppending(); local
111 InsertTabContentsAt(index, contents,
116 void TabStripModel::InsertTabContentsAt(int index,
123 index = ConstrainInsertionIndex(index, pin);
154 contents_data_.insert(contents_data_.begin() + index, data);
156 selection_model_.IncrementFrom(index);
325 int index = 0; local
335 int index = 0; local
346 int index = 0; local
475 int index = GetIndexOfTabContents(contents); local
483 int index = GetIndexOfTabContents(contents); local
826 int index = GetIndexOfTabContents(tabs[i]); local
843 int index = GetIndexOfTabContents(tabs[i]); local
985 int index = GetWrapperIndex(Source<TabContents>(source).ptr()); local
1153 int index = GetIndexOfTabContents(detached_contents); local
1243 int index = active_index(); local
    [all...]
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 56 int32_t WritableFontData::WriteByte(int32_t index, byte_t b) {
57 array_->Put(BoundOffset(index), b);
61 int32_t WritableFontData::WriteBytes(int32_t index,
65 return array_->Put(BoundOffset(index),
68 BoundLength(index, length));
71 int32_t WritableFontData::WriteBytes(int32_t index, ByteVector* b) {
73 return WriteBytes(index, &((*b)[0]), 0, b->size());
76 int32_t WritableFontData::WriteBytesPad(int32_t index,
82 array_->Put(BoundOffset(index),
85 BoundLength(index,
    [all...]
  /external/chromium_org/chrome_frame/infobars/
infobar_manager.cc 43 for (int index = 0; index < END_OF_INFOBAR_TYPE; ++index) {
44 infobars_[index].reset(
45 new InfobarWindow(static_cast<InfobarType>(index)));
46 infobars_[index]->SetHost(this);
61 for (int index = 0; index < END_OF_INFOBAR_TYPE; ++index)
62 Hide(static_cast<InfobarType>(index));
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicLUT.java 68 private void validate(int index, int value) {
69 if (index < 0 || index > 255) {
70 throw new RSIllegalArgumentException("Index out of range (0-255).");
80 * @param index Must be 0-255
83 public void setRed(int index, int value) {
84 validate(index, value);
85 mCache[index] = (byte)value;
92 * @param index Must be 0-255
95 public void setGreen(int index, int value)
    [all...]
  /external/chromium_org/ui/base/models/
simple_menu_model.cc 170 void SimpleMenuModel::InsertItemAt(int index,
175 InsertItemAtIndex(item, index);
179 int index, int command_id, int string_id) {
180 InsertItemAt(index, command_id, l10n_util::GetStringUTF16(string_id));
183 void SimpleMenuModel::InsertSeparatorAt(int index,
193 InsertItemAtIndex(item, index);
196 void SimpleMenuModel::InsertCheckItemAt(int index,
201 InsertItemAtIndex(item, index);
205 int index, int command_id, int string_id) {
206 InsertCheckItemAt(index, command_id, l10n_util::GetStringUTF16(string_id))
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.h 64 inline int getPrimaryCodePointAt(const int index) const {
65 return getProximityCodePointsAt(index)[0];
83 AK_FORCE_INLINE bool existsCodePointInProximityAt(const int index, const int c) const {
84 const int *codePoints = getProximityCodePointsAt(index);
94 AK_FORCE_INLINE bool existsAdjacentProximityChars(const int index) const {
95 if (index < 0 || index >= mSampledInputSize) return false;
96 const int currentCodePoint = getPrimaryCodePointAt(index);
97 const int leftIndex = index - 1;
101 const int rightIndex = index + 1
    [all...]
  /external/chromium/chrome/browser/ui/toolbar/
back_forward_menu_model.cc 67 ui::MenuModel::ItemType BackForwardMenuModel::GetTypeAt(int index) const {
68 return IsSeparator(index) ? TYPE_SEPARATOR : TYPE_COMMAND;
71 int BackForwardMenuModel::GetCommandIdAt(int index) const {
72 return index;
75 string16 BackForwardMenuModel::GetLabelAt(int index) const {
77 if (index == GetItemCount() - 1)
81 if (IsSeparator(index))
86 NavigationEntry* entry = GetNavigationEntry(index);
102 bool BackForwardMenuModel::IsItemDynamicAt(int index) const {
108 int index,
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 74 * the given index.
76 * @param index {@code >= 0;} the block index
79 public void setStarts(int index, RegisterSpecSet specs) {
87 blockStarts[index] = specs;
90 throw new IllegalArgumentException("bogus index");
96 * given index. If there was not already an associated set, then this
101 * @param index {@code >= 0;} the block index
108 public boolean mergeStarts(int index, RegisterSpecSet specs)
    [all...]
  /external/chromium/chrome/browser/extensions/
browser_action_test_util.h 31 // Waits for a browser action at |index| to get updated.
32 void WaitForBrowserActionUpdated(int index);
35 // Returns whether the browser action at |index| has a non-null icon. Note
38 bool HasIcon(int index);
40 // Simulates a user click on the browser action button at |index|.
41 void Press(int index);
43 // Returns the extension id of the extension at |index|.
44 std::string GetExtensionId(int index);
47 std::string GetTooltip(int index);
  /external/chromium_org/chrome/browser/chromeos/login/
default_user_images.h 19 // Returns path to default user image with specified index.
22 // profiles which don't user separate image index and path.
23 std::string GetDefaultImagePath(int index);
26 // and its index through |image_id|. If not, returns false.
29 // Returns URL to default user image with specified index.
30 std::string GetDefaultImageUrl(int index);
33 // returns true and its index through |image_id|. If not, returns false.
36 // Returns bitmap of default user image with specified index.
37 const gfx::ImageSkia& GetDefaultImage(int index);
39 // Returns a description of a default user image with specified index
    [all...]

Completed in 3654 milliseconds

1 2 3 4 5 6 7 8 91011>>