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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/skia/src/gpu/gl/debug/
GrFBBindableObj.h 34 int index = fColorReferees.find(referee); local
35 GrAlwaysAssert(0 <= index);
36 fColorReferees.removeShuffle(index);
39 int index = fColorReferees.find(referee); local
40 return 0 <= index;
50 int index = fDepthReferees.find(referee); local
51 GrAlwaysAssert(0 <= index);
52 fDepthReferees.removeShuffle(index);
55 int index = fDepthReferees.find(referee); local
56 return 0 <= index;
66 int index = fStencilReferees.find(referee); local
71 int index = fStencilReferees.find(referee); local
    [all...]
  /external/proguard/src/proguard/util/
NameParser.java 41 int index; local
45 for (index = 0; index < regularExpression.length(); index++)
48 if (regularExpression.charAt(index) == '*')
57 parse(regularExpression.substring(index + 1)));
62 else if (regularExpression.charAt(index) == '?')
71 parse(regularExpression.substring(index + 1)));
78 return index != 0 ?
79 (StringMatcher)new FixedStringMatcher(regularExpression.substring(0, index), nextMatcher)
    [all...]
  /external/skia/src/gpu/gl/debug/
GrFBBindableObj.h 34 int index = fColorReferees.find(referee); local
35 GrAlwaysAssert(0 <= index);
36 fColorReferees.removeShuffle(index);
39 int index = fColorReferees.find(referee); local
40 return 0 <= index;
50 int index = fDepthReferees.find(referee); local
51 GrAlwaysAssert(0 <= index);
52 fDepthReferees.removeShuffle(index);
55 int index = fDepthReferees.find(referee); local
56 return 0 <= index;
66 int index = fStencilReferees.find(referee); local
71 int index = fStencilReferees.find(referee); local
    [all...]
  /external/skia/tests/
PathOpsDVectorTest.cpp 24 for (size_t index = 0; index < tests_count - 1; ++index) {
25 SkDVector v1 = tests[index + 1] - tests[index];
27 SkDVector v2 = tests[index] - tests[index + 1];
31 SkDPoint p = tests[index + 1] + v2;
32 REPORTER_ASSERT(reporter, p == tests[index]);
35 v1 = tests[index + 1] - tests[index]
    [all...]
PathOpsQuadReduceOrderTest.cpp 21 for (size_t index = 0; index < testSetCount; ++index) {
22 const SkDQuad& quad = testSet[index];
30 size_t index; local
49 for (index = firstQuadraticLineTest; index < quadraticLines_count; ++index) {
50 const SkDQuad& quad = quadraticLines[index];
53 SkDebugf("[%d] line quad order=%d\n", (int) index, order)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicLUT.java 62 private void validate(int index, int value) {
63 if (index < 0 || index > 255) {
64 throw new RSIllegalArgumentException("Index out of range (0-255).");
74 * @param index Must be 0-255
77 public void setRed(int index, int value) {
78 validate(index, value);
79 mCache[index] = (byte)value;
86 * @param index Must be 0-255
89 public void setGreen(int index, int value)
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
apps_helper.cc 19 std::string CreateFakeAppName(int index) {
20 return "fakeapp" + base::IntToString(index);
27 bool HasSameAppsAsVerifier(int index) {
29 test()->GetProfile(index), test()->verifier());
43 std::string InstallApp(Profile* profile, int index) {
46 CreateFakeAppName(index),
50 std::string InstallPlatformApp(Profile* profile, int index) {
53 CreateFakeAppName(index),
57 std::string InstallAppForAllProfiles(int index) {
59 InstallApp(test()->GetProfile(i), index); local
    [all...]
preferences_helper.h 18 PrefService* GetPrefs(int index);
24 // profile with index |index|. Also inverts its value in |verifier| if
26 void ChangeBooleanPref(int index, const char* pref_name);
29 // profile with index |index| to |new_value|. Also changes its value in
31 void ChangeIntegerPref(int index, const char* pref_name, int new_value);
34 // profile with index |index| to |new_value|. Also changes its value in
36 void ChangeInt64Pref(int index, const char* pref_name, int64 new_value)
    [all...]
  /external/oprofile/libdb/
db_debug.c 26 odb_index_t index = data->hash_base[pos]; local
27 if (index && !do_abort) {
28 while (index) {
29 if (bitmap[index])
32 bitmap[index] = 1;
33 index = data->node_base[index].next;
43 index = data->hash_base[pos];
44 while (index) {
45 printf("%d ", index);
99 odb_index_t index = data->hash_base[pos]; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
InputTouchScreen.java 22 public final void press(int index, float currentTime, float x, float y) {
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) {
30 if (index < MAX_TOUCH_POINTS) {
31 mTouchPoints[index].release();
41 public boolean getTriggered(int index, float time) {
43 if (index < MAX_TOUCH_POINTS)
    [all...]
  /external/chromium_org/ui/views/
view_model.cc 19 void ViewModel::Add(View* view, int index) {
20 DCHECK_LE(index, static_cast<int>(entries_.size()));
21 DCHECK_GE(index, 0);
24 entries_.insert(entries_.begin() + index, entry);
27 void ViewModel::Remove(int index) {
28 if (index == -1)
31 check_index(index);
32 entries_.erase(entries_.begin() + index);
35 void ViewModel::Move(int index, int target_index) {
36 if (index == target_index
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
TokenIndex.java 10 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 = 8
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_model_observer.cc 8 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) {
tab_strip_model_observer.h 42 // index. |foreground| is whether or not it was opened in the foreground
45 int index,
48 // The specified TabContents at |index| is being closed (and eventually
52 int index);
54 // The specified TabContents at |index| is being detached, perhaps to be
57 virtual void TabDetachedAt(TabContentsWrapper* contents, int index);
65 // by |old_contents| and the newly selected tab by |new_contents|. |index| is
66 // the index of |new_contents|. When using multiple selection this may be sent
81 int index,
89 // The specified TabContents at |index| changed in some way. |contents| ma
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model_observer.cc 10 int index,
16 int index) {
20 int index) {
28 int index,
43 int index,
50 int index) {
54 int index) {
58 int index) {
62 int index) {
  /external/chromium_org/ui/base/models/
menu_model.cc 9 bool MenuModel::IsVisibleAt(int index) const {
16 int* index) {
22 if (GetModelAndIndexForCommandId(command_id, &submenu_model, index)) {
28 *index = candidate_index;
35 base::string16 MenuModel::GetSublabelAt(int index) const {
39 base::string16 MenuModel::GetMinorTextAt(int index) const {
43 const gfx::Font* MenuModel::GetLabelFontAt(int index) const {
48 void MenuModel::ActivatedAt(int index, int event_flags) {
49 ActivatedAt(index);
  /external/proguard/src/proguard/classfile/
ProgramMethod.java 77 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/
ShadowTypedArray.java 18 public boolean getBoolean(int index, boolean defValue) {
23 public float getFloat(int index, float defValue) {
28 public int getInt(int index, int defValue) {
33 public int getInteger(int index, int defValue) {
38 public float getDimension(int index, float defValue) {
43 public int getDimensionPixelOffset(int index, int defValue) {
48 public int getDimensionPixelSize(int index, int defValue) {
53 public int getLayoutDimension(int index, int defValue) {
58 public int getResourceId(int index, int defValue) {
  /libcore/luni/src/main/java/java/util/regex/
PatternSyntaxException.java 25 * expression, and the index at which the error occurred.
47 * Holds the index around which the error occured, or -1, in case it is
50 private int index = -1; field in class:PatternSyntaxException
54 * error index.
62 * @param index
63 * the character index around which the error occurred, or -1 if
64 * the index is not known.
66 public PatternSyntaxException(String description, String pattern, int index) {
69 this.index = index;
    [all...]
  /external/chromium/chrome/browser/chromeos/status/
clock_menu_button.h 42 virtual ui::MenuModel::ItemType GetTypeAt(int index) const;
43 virtual int GetCommandIdAt(int index) const { return index; }
44 virtual string16 GetLabelAt(int index) const;
45 virtual bool IsItemDynamicAt(int index) const { return true; }
46 virtual bool GetAcceleratorAt(int index,
48 virtual bool IsItemCheckedAt(int index) const { return false; }
49 virtual int GetGroupIdAt(int index) const { return 0; }
50 virtual bool GetIconAt(int index, SkBitmap* icon) { return false; }
51 virtual ui::ButtonMenuItemModel* GetButtonMenuItemAt(int index) const
    [all...]
power_menu_button.h 36 virtual ui::MenuModel::ItemType GetTypeAt(int index) const;
37 virtual int GetCommandIdAt(int index) const { return index; }
38 virtual string16 GetLabelAt(int index) const;
39 virtual bool IsItemDynamicAt(int index) const { return true; }
40 virtual bool GetAcceleratorAt(int index,
42 virtual bool IsItemCheckedAt(int index) const { return false; }
43 virtual int GetGroupIdAt(int index) const { return 0; }
44 virtual bool GetIconAt(int index, SkBitmap* icon) { return false; }
45 virtual ui::ButtonMenuItemModel* GetButtonMenuItemAt(int index) const
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
fake_base_tab_strip_controller.h 19 void AddTab(int index, bool is_active);
20 void RemoveTab(int index);
27 virtual bool IsValidIndex(int index) const OVERRIDE;
28 virtual bool IsActiveTab(int index) const OVERRIDE;
30 virtual bool IsTabSelected(int index) const OVERRIDE;
31 virtual bool IsTabPinned(int index) const OVERRIDE;
32 virtual bool IsNewTabPage(int index) const OVERRIDE;
33 virtual void SelectTab(int index) OVERRIDE;
34 virtual void ExtendSelectionTo(int index) OVERRIDE;
35 virtual void ToggleSelected(int index) OVERRIDE
    [all...]
  /external/proguard/src/proguard/obfuscate/
SimpleNameFactory.java 40 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)
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
    [all...]
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3Mem.h 47 int cleanCache(int index) {return cacheOps(index, ION_IOC_CLEAN_CACHES);}
48 int invalidateCache(int index) {return cacheOps(index, ION_IOC_INV_CACHES);}
49 int cleanInvalidateCache(int index) {return cacheOps(index, ION_IOC_CLEAN_INV_CACHES);}
50 int getFd(int index) const;
51 int getSize(int index) const;
54 virtual int cacheOps(int index, unsigned int cmd) = 0;
57 virtual void *getPtr(int index) const= 0
    [all...]
  /external/chromium_org/ppapi/proxy/
network_list_resource.cc 34 PP_Var NetworkListResource::GetName(uint32_t index) {
35 if (index >= list_.size())
37 return StringVar::StringToPPVar(list_.at(index).name);
40 PP_NetworkList_Type NetworkListResource::GetType(uint32_t index) {
41 if (index >= list_.size())
43 return list_.at(index).type;
46 PP_NetworkList_State NetworkListResource::GetState(uint32_t index) {
47 if (index >= list_.size())
49 return list_.at(index).state;
52 int32_t NetworkListResource::GetIpAddresses(uint32_t index,
    [all...]

Completed in 366 milliseconds

1 2 3 45 6 7 8 91011>>