/hardware/qcom/display/msm8960/libhwcomposer/ |
hwc_utils.cpp | 887 const hwc_rect_t& pos, const MetaData_t *metadata, 897 int posW = pos.right - pos.left; 898 int posH = pos.bottom - pos.top; 899 Dim position(pos.left, pos.top, posW, posH); [all...] |
/hardware/qcom/display/msm8974/libhwcomposer/ |
hwc_utils.cpp | 829 const hwc_rect_t& pos, const MetaData_t *metadata, 839 int posW = pos.right - pos.left; 840 int posH = pos.bottom - pos.top; 841 Dim position(pos.left, pos.top, posW, posH); [all...] |
/hardware/qcom/display/msm8x26/libhwcomposer/ |
hwc_utils.cpp | 847 const hwc_rect_t& pos, const MetaData_t *metadata, 857 int posW = pos.right - pos.left; 858 int posH = pos.bottom - pos.top; 859 Dim position(pos.left, pos.top, posW, posH); [all...] |
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaWindowAdapter.java | 536 int pos = -1; local 538 pos = info.offset + info.dayAdapter.findEventPositionNearestTime(time, id); 540 if (DEBUGLOG) Log.e(TAG, "findEventPositionNearestTime " + time + " id:" + id + " =" + pos); 541 return pos; 1381 int pos = info.dayAdapter.getHeaderPosition(position - info.offset); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar | |
/external/sonivox/jet_tools/JetCreator/ |
JetDialogs.py | 69 self.ctrls[Text] = TimeCtrl(panel, pos=(Col, Row + LBL_OFFSET), ctlName=Text)
71 self.ctrls[Text] = JetFileCombo(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
73 self.ctrls[Text] = JetFileText(panel, pos=(Col, Row + LBL_OFFSET), size=wx.Size(Len,-1), title=Lbl, spec=Lst, id=Id)
75 self.ctrls[Text] = wx.StaticBox(parent=panel, id=wx.ID_ANY, label=Lbl, pos=(Row, Col), size=Len)
78 self.ctrls[Text] = JetCheckBox(panel, Id, label=Lbl, pos=(Col, Row), size=wx.Size(Len,-1))
83 self.ctrls[Text] = wx.RadioBox(panel, Id, label=Lbl, pos=(Col, Row), size=Len, choices=Lst, majorDimension=1, style=wx.RA_SPECIFY_COLS)
88 self.ctrls[Text] = JetRadioButton(panel, Id, label=Lbl, pos=(Col, Row), size=wx.Size(Len,-1))
94 self.ctrls[Text] = wx.ListBox(panel, Id, pos=(Col, Row), size=Len)
97 self.ctrls[Text] = JetTrackCtrl(panel, Id, pos=(Col, Row + LBL_OFFSET), size=Len, style=wx.LC_REPORT | wx.SUNKEN_BORDER)
100 self.ctrls[Text] = JetListCtrl(panel, Id, pos=(Col, Row), size=Len) [all...] |
/frameworks/base/tools/aapt/ |
AaptAssets.cpp | 1947 ssize_t pos = mSymbols.indexOfKey(name); local 1962 ssize_t pos = mNestedSymbols.indexOfKey(name); local 1964 SourcePos pos; local 2603 ssize_t pos = mSymbols.indexOfKey(name); local 2605 SourcePos pos; local [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-shape-complex-indic.cc | 182 indic_position_t pos = (indic_position_t) (type >> 8); local 208 pos = POS_ABOVE_C; 220 else if (unlikely (u == 0xA9BD)) { cat = OT_M; pos = POS_POST_C; } /* Javanese vocalic r. */ 241 pos = POS_BASE_C; 247 pos = matra_position (u, pos); 251 pos = POS_SMVD; 254 if (unlikely (u == 0x0B01)) pos = POS_BEFORE_SUB; /* Oriya Bindu is BeforeSub in the spec. */ 259 info.indic_position() = pos; [all...] |
hb-uniscribe.cc | 1003 hb_glyph_position_t *pos = &buffer->pos[i]; local 1006 pos->x_advance = info->mask; 1007 pos->x_offset = backward ? -info->var1.u32 : info->var1.u32; 1008 pos->y_offset = info->var2.u32;
|
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_matrix.c | 484 GLfloat pos, neg, t; local 490 pos = neg = 0.0; 492 if (t >= 0.0) pos += t; else neg += t; 495 if (t >= 0.0) pos += t; else neg += t; 498 if (t >= 0.0) pos += t; else neg += t; 501 if (t >= 0.0) pos += t; else neg += t; 504 if (t >= 0.0) pos += t; else neg += t; 507 if (t >= 0.0) pos += t; else neg += t; 509 det = pos + neg; [all...] |
/external/chromium_org/v8/src/arm/ |
assembler-arm.h | [all...] |
/external/mdnsresponder/mDNSCore/ |
DNSDigest.c | 1162 const char *pos; local [all...] |
/external/mesa3d/src/mesa/math/ |
m_matrix.c | 484 GLfloat pos, neg, t; local 490 pos = neg = 0.0; 492 if (t >= 0.0) pos += t; else neg += t; 495 if (t >= 0.0) pos += t; else neg += t; 498 if (t >= 0.0) pos += t; else neg += t; 501 if (t >= 0.0) pos += t; else neg += t; 504 if (t >= 0.0) pos += t; else neg += t; 507 if (t >= 0.0) pos += t; else neg += t; 509 det = pos + neg; [all...] |
/frameworks/base/services/java/com/android/server/ |
AlarmManagerService.java | 887 int pos = len > 0 local [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
MediaPlayerTest.java | 108 int pos = mp.getCurrentPosition(); local 109 assertTrue(pos >= 0); 110 assertTrue(pos < mp3Duration - seekDuration); 112 mp.seekTo(pos + seekDuration); 113 assertEquals(pos + seekDuration, mp.getCurrentPosition(), tolerance); [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_Playlists_MembersTest.java | 172 int pos = c.getPosition(); local 174 assertEquals("mismatched member at position " + pos, 175 members[pos], c.getInt(c.getColumnIndex(Members.AUDIO_ID))); 178 assertEquals("mismatched ordering at position " + pos, 179 ordering[pos], c.getInt(c.getColumnIndex(Members.PLAY_ORDER)));
|
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SampleMediaRouterActivity.java | 149 long pos = item.getPosition() + (mSessionManager.isPaused() ? 151 mSessionManager.suspend(pos); 341 long pos = progress * item.getDuration() / 100; 342 mSessionManager.seek(item.getItemId(), pos); 343 item.setPosition(pos);
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
debug.py | 515 def location(self, line, pos): 522 the parser whenever it hits this line/pos. 769 def location(self, line, pos): 770 self.record("location %s:%s" % (line, pos)) 990 def location(self, line, pos): 991 self.transmit("location\t%d\t%d" % (line, pos)) 1050 # int pos = -1; 1053 # pos = token.getCharPositionInLine(); 1058 # buf.append(pos); [all...] |
/external/chromium_org/chrome/browser/profiles/ |
profile_shortcut_manager_win.cc | 593 size_t pos = sanitized.find_first_of(kReservedCharacters); local 594 while (pos != base::string16::npos) { 595 sanitized[pos] = L' '; 596 pos = sanitized.find_first_of(kReservedCharacters, pos + 1); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLHttpRequest.cpp | 115 unsigned int pos = 0, len = 0; local 117 findCharsetInMediaType(mediaType, pos, len); 126 mediaType.replace(pos, len, charsetValue); 127 unsigned int start = pos + charsetValue.length(); 128 findCharsetInMediaType(mediaType, pos, len, start); [all...] |
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
StringImpl.h | 336 PassRefPtr<StringImpl> substring(unsigned pos, unsigned len = UINT_MAX); 676 unsigned pos = 0; 677 while (pos < lmin && *c1 == *c2) { 680 ++pos; 683 if (pos < lmin)
|
/external/chromium_org/third_party/icu/source/common/ |
rbbiscan.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
program.c | 207 _mesa_set_program_error(struct gl_context *ctx, GLint pos, const char *string) 209 ctx->Program.ErrorPos = pos; 218 * Find the line number and column for 'pos' within 'string'. 219 * Return a copy of the line which contains 'pos'. Free the line with 222 * \param pos the position within the string 223 * \param line returns the line number corresponding to 'pos'. 224 * \param col returns the column number corresponding to 'pos'. 225 * \return copy of the line containing 'pos'. 228 _mesa_find_line_column(const GLubyte *string, const GLubyte *pos, 238 while (p != pos) { [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
strutil.cc | 113 string::size_type pos; local 115 pos = s.find(oldsub, start_pos); 116 if (pos == string::npos) { 119 res->append(s, start_pos, pos - start_pos); 121 start_pos = pos + oldsub.size(); // start searching again after the "old" [all...] |
/external/chromium_org/tools/site_compare/ |
command_line.py | 357 pos = argstr.find(delimiter) 358 if pos >= 0: 359 if delimiter_pos < 0 or pos < delimiter_pos: 360 delimiter_pos = pos 715 test.AddArgument("failpos", "can't have req'd pos arg after opt",
|