HomeSort by relevance Sort by last modified time
    Searched refs:index (Results 26 - 50 of 8262) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/core/
SkVertState.cpp 11 int index = state->fCurrIndex; local
12 if (index + 3 > state->fCount) {
15 state->f0 = index + 0;
16 state->f1 = index + 1;
17 state->f2 = index + 2;
18 state->fCurrIndex = index + 3;
24 int index = state->fCurrIndex; local
25 if (index + 3 > state->fCount) {
28 state->f0 = indices[index + 0];
29 state->f1 = indices[index + 1]
36 int index = state->fCurrIndex; local
54 int index = state->fCurrIndex; local
71 int index = state->fCurrIndex; local
84 int index = state->fCurrIndex; local
    [all...]
  /external/apache-http/src/org/apache/commons/codec/language/
DoubleMetaphone.java 97 int index = isSilentStart(value) ? 1 : 0; local
101 while (!result.isComplete() && index <= value.length() - 1) {
102 switch (value.charAt(index)) {
109 index = handleAEIOUY(value, result, index);
113 index = charAt(value, index + 1) == 'B' ? index + 2 : index + 1;
118 index++
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicParameterization_Test.cpp 25 for (size_t index = firstCubicCoincidenceTest; index < quadratics_count; ++index) {
26 const Quadratic& test = quadratics[index];
37 SkDebugf("%s-1 %d\n", __FUNCTION__, (int)index);
40 SkDebugf("%s-2 %d\n", __FUNCTION__, (int)index);
43 SkDebugf("%s-3 %d\n", __FUNCTION__, (int)index);
46 SkDebugf("%s-4 %d\n", __FUNCTION__, (int)index);
49 SkDebugf("%s-5 %d\n", __FUNCTION__, (int)index);
98 for (size_t index = firstCubicParameterizationTest; index < cubics_count; ++index)
    [all...]
CubicUtilities_Test.cpp 20 for (size_t index = firstLineParameterTest; index < tests_count; ++index) {
21 const Cubic& cubic = tests[index];
24 SkDebugf("%s [%d] expected clockwise\n", __FUNCTION__, index);
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip_controller.h 36 // Returns true if |index| is a valid model index.
37 virtual bool IsValidIndex(int index) const = 0;
39 // Returns true if the tab at |index| is the active tab. The active tab is the
41 virtual bool IsActiveTab(int index) const = 0;
43 // Returns the index of the active tab.
46 // Returns true if the selected index is selected.
47 virtual bool IsTabSelected(int index) const = 0;
49 // Returns true if the selected index is pinned.
50 virtual bool IsTabPinned(int index) const = 0
    [all...]
fake_base_tab_strip_controller.cc 19 void FakeBaseTabStripController::AddTab(int index, bool is_active) {
21 tab_strip_->AddTabAt(index, TabRendererData(), is_active);
23 active_index_ = index;
26 void FakeBaseTabStripController::RemoveTab(int index) {
28 tab_strip_->RemoveTabAt(index);
29 if (active_index_ == index)
41 bool FakeBaseTabStripController::IsValidIndex(int index) const {
42 return index >= 0 && index < num_tabs_;
45 bool FakeBaseTabStripController::IsActiveTab(int index) const
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Base.java 15 public static final int StateUpdateChar(int index)
17 if (index < 4)
19 if (index < 10)
20 return index - 3;
21 return index - 6;
24 public static final int StateUpdateMatch(int index)
26 return (index < 7 ? 7 : 10);
29 public static final int StateUpdateRep(int index)
31 return (index < 7 ? 8 : 11);
34 public static final int StateUpdateShortRep(int index)
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
dictionary_helper.h 22 size_t GetDictionarySize(int index);
35 // Waits until the profile at the given index contains exactly |num| dictionary
37 bool AwaitNumDictionaryEntries(int index, size_t num_words);
41 bool DictionaryMatchesVerifier(int index);
43 // Adds |word| to the dictionary for profile with index |index|. Also adds
46 bool AddWord(int index, const std::string& word);
48 // Removes |word| from the dictionary for profile with index |index|. Also
51 bool RemoveWord(int index, const std::string& word)
    [all...]
extensions_helper.h 19 // Returns true iff the profile with index |index| has the same extensions
21 bool HasSameExtensionsAsVerifier(int index) WARN_UNUSED_RESULT;
30 // Installs the extension for the given index to |profile|, and returns the
32 std::string InstallExtension(Profile* profile, int index);
34 // Installs the extension for the given index to all profiles (including the
36 std::string InstallExtensionForAllProfiles(int index);
38 // Uninstalls the extension for the given index from |profile|. Assumes that
40 void UninstallExtension(Profile* profile, int index);
49 // Enables the extension for the given index on |profile|
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TouchList.cpp 32 Touch* TouchList::item(unsigned index)
34 if (index >= m_values.size())
36 return m_values[index].get();
39 const Touch* TouchList::item(unsigned index) const
41 return const_cast<TouchList*>(this)->item(index);
  /external/chromium_org/third_party/skia/tests/
PathOpsDCubicTest.cpp 20 for (size_t index = 0; index < tests_count; ++index) {
21 const SkDCubic& cubic = tests[index];
25 SkDebugf("%s [%d] expected clockwise\n", __FUNCTION__, index);
PathOpsTypesTest.cpp 17 for (size_t index = 0; index < roughlyTestsCount; ++index) {
18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
  /external/chromium_org/ui/base/models/
menu_model.h 48 // Returns the type of item at the specified index.
49 virtual ItemType GetTypeAt(int index) const = 0;
51 // Returns the separator type at the specified index.
52 virtual ui::MenuSeparatorType GetSeparatorTypeAt(int index) const = 0;
54 // Returns the command id of the item at the specified index.
55 virtual int GetCommandIdAt(int index) const = 0;
57 // Returns the label of the item at the specified index.
58 virtual base::string16 GetLabelAt(int index) const = 0;
60 // Returns the sublabel of the item at the specified index. The sublabel
62 virtual base::string16 GetSublabelAt(int index) const
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
Local.java 23 private int index; field in class:Local
25 public Local(int index, Type type) {
27 this.index = index;
31 return index;
  /external/chromium_org/chrome/browser/profiles/
profile_info_interface.h 29 virtual base::Time GetProfileActiveTimeAtIndex(size_t index) const = 0;
31 virtual base::string16 GetNameOfProfileAtIndex(size_t index) const = 0;
34 size_t index) const = 0;
36 virtual base::FilePath GetPathOfProfileAtIndex(size_t index) const = 0;
38 virtual base::string16 GetUserNameOfProfileAtIndex(size_t index) const = 0;
41 size_t index) const = 0;
44 size_t index) const = 0;
46 // Returns true if the profile at the given index is currently running any
49 size_t index) const = 0;
51 virtual base::string16 GetGAIANameOfProfileAtIndex(size_t index) const = 0
    [all...]
  /external/chromium_org/gpu/gles2_conform_support/native/
main.cc 41 for (size_t index = 0; index < args.size(); ++index) {
42 argsNonWide[index] = base::UTF16ToASCII(args[index]);
43 argsArray[index+1] = argsNonWide[index].c_str();
46 for (size_t index = 0; index < args.size(); ++index) {
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/applescript/
bookmark_folder_applescript.h 30 - (void)insertInBookmarkFolders:(id)aBookmarkFolder atIndex:(int)index;
35 - (void)removeFromBookmarkFoldersAtIndex:(int)index;
49 atIndex:(int)index;
54 - (void)removeFromBookmarkItemsAtIndex:(int)index;
60 - (int)calculatePositionOfBookmarkFolderAt:(int)index;
66 - (int)calculatePositionOfBookmarkItemAt:(int)index;
  /external/chromium_org/ppapi/thunk/
ppb_network_list_api.h 22 virtual PP_Var GetName(uint32_t index) = 0;
23 virtual PP_NetworkList_Type GetType(uint32_t index) = 0;
24 virtual PP_NetworkList_State GetState(uint32_t index) = 0;
25 virtual int32_t GetIpAddresses(uint32_t index,
27 virtual PP_Var GetDisplayName(uint32_t index) = 0;
28 virtual uint32_t GetMTU(uint32_t index) = 0;
  /external/chromium_org/chrome/browser/ui/cocoa/media_picker/
desktop_media_picker_bridge.h 13 - (void)sourceAddedAtIndex:(int)index;
14 - (void)sourceRemovedAtIndex:(int)index;
16 - (void)sourceNameChangedAtIndex:(int)index;
17 - (void)sourceThumbnailChangedAtIndex:(int)index;
29 virtual void OnSourceAdded(int index) OVERRIDE;
30 virtual void OnSourceRemoved(int index) OVERRIDE;
32 virtual void OnSourceNameChanged(int index) OVERRIDE;
33 virtual void OnSourceThumbnailChanged(int index) OVERRIDE;
  /external/chromium_org/third_party/WebKit/public/platform/
WebGamepadListener.h 16 virtual void didConnectGamepad(unsigned index, const WebGamepad&) = 0;
17 virtual void didDisconnectGamepad(unsigned index, const WebGamepad&) = 0;
  /external/chromium_org/third_party/WebKit/public/web/
WebExternalPopupMenuClient.h 42 virtual void didChangeSelection(int index) = 0;
44 // Should be called when an index has been accepted.
47 virtual void didAcceptIndex(int index) = 0;
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/geocoding/
default_map_storage.cc 32 int32 DefaultMapStorage::GetPrefix(int index) const {
33 DCHECK_GE(index, 0);
34 DCHECK_LT(index, prefixes_size_);
35 return prefixes_[index];
38 const char* DefaultMapStorage::GetDescription(int index) const {
39 DCHECK_GE(index, 0);
40 DCHECK_LT(index, prefixes_size_);
41 return descriptions_[index];
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLUniformHandle.h 11 inline GrGLProgramDataManager::UniformHandle GrGLProgramDataManager::UniformHandle::CreateFromUniformIndex(int index) {
12 return GrGLProgramDataManager::UniformHandle(index);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
create_augmented_vec.c 28 int16_t index, /* (i) Index for the augmented vector to be created */
37 ilow = index-4;
40 ppo = buffer-index;
41 WEBRTC_SPL_MEMCPY_W16(cbVec, ppo, index);
45 ppi = buffer - index - 4;
55 ppo = buffer - index;
56 WEBRTC_SPL_MEMCPY_W16(cbVec+index,ppo,(SUBL-index));
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 11 for (int index = 0; index < i.fUsed; ++index) {
12 insert(i[0][index], i[1][index], i.pt(index));
37 for (int index = 0; index < fUsed; ++index) {
38 if (fIsCoincident[0] & (1 << index)) {
70 int index; local
130 int index = insertSwap(one, two, pt); local
182 int index; local
    [all...]

Completed in 521 milliseconds

12 3 4 5 6 7 8 91011>>