HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 3351 - 3375 of 4804) sorted by null

<<131132133134135136137138139140>>

  /external/skia/src/utils/debugger/
SkDebugCanvas.h 191 const SkPoint pos[], const SkPaint&) SK_OVERRIDE;
  /external/skia/src/views/mac/
SkOSWindow_Mac.cpp 88 static void set_axisposition(HIAxisPosition* pos, HIViewRef parent, HIPositionKind kind) {
89 pos->toView = parent;
90 pos->kind = kind;
91 pos->offset = 0;
  /external/sonivox/jet_tools/JetCreator/
midifile.py 629 pos = stream.tell()
633 stream.seek(pos,0)
661 pos = stream.tell()
665 stream.seek(pos,0)
694 pos = stream.tell()
699 stream.seek(pos,0)
932 def SeekEvent (self, pos):
934 if self[i].ticks >= pos:
1004 pos = stream.tell()
    [all...]
  /external/svox/pico/lib/
picokdt.h 182 attribute is outside the context, e.g. for POS */
197 /* decision tree POS prediction (PosP) functions */
200 /* construct a POS prediction input vector
205 graph: the grapheme string of the word for wich POS will be predicted
223 dtres: POS or POSgroup ID classification result
231 /* decision tree POS disambiguation (PosD) functions */
234 /* construct a POS disambiguation input vector (run in left-to-right mode)
235 tree input vector: 0-2 POS or POSgroup for each of the three previous words
237 4-6 POS or POSgroup (can be history) for each of
239 pre3 - pre1: POSgroup or POS for the previous three word
    [all...]
  /external/tremolo/Tremolo/
ogg.h 99 long pos; member in struct:oggbyte_buffer
  /external/v8/benchmarks/
navier-stokes.js 211 var pos = j * rowSize;
213 var x = i - Wdt0 * u[++pos];
214 var y = j - Hdt0 * v[pos];
233 d[pos] = s0 * (t0 * d0[i0 + row1] + t1 * d0[i0 + row2]) + s1 * (t0 * d0[i1 + row1] + t1 * d0[i1 + row2]);
  /external/v8/src/
bignum.cc 108 int pos = 0; local
111 uint64_t digits = ReadUInt64(value, pos, kMaxUint64DecimalDigits);
112 pos += kMaxUint64DecimalDigits;
117 uint64_t digits = ReadUInt64(value, pos, length);
preparser-api.cc 146 virtual unsigned SlowSeekForward(unsigned pos) {
  /external/v8/tools/
tickprocessor.js 86 'snapshot-pos': { parsers: [parseInt, parseInt],
131 SnapshotLogProcessor.prototype.processSnapshotPosition = function(addr, pos) {
132 this.serializedEntries_[pos] = this.profile_.findEntry(addr);
142 SnapshotLogProcessor.prototype.getSerializedEntryName = function(pos) {
143 var entry = this.serializedEntries_[pos];
167 'snapshot-pos': { parsers: [parseInt, parseInt],
338 TickProcessor.prototype.processSnapshotPosition = function(addr, pos) {
341 this.snapshotLogProcessor_.getSerializedEntryName(pos);
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 939 int wpa_config_process_global(struct wpa_config *config, char *pos, int line);
wps_supplicant.h 47 int wpas_wps_scan_result_text(const u8 *ies, size_t ies_len, char *pos,
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
bitstream.h 152 PV_STATUS movePointerTo(BitstreamDecVideo *stream, int32 pos);
  /frameworks/base/libs/hwui/font/
Font.cpp 143 uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* pos) {
165 uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* pos) {
184 uint8_t* bitmap, uint32_t bitmapW, uint32_t bitmapH, Rect* bounds, const float* pos) {
211 uint32_t bitmapWidth, uint32_t bitmapHeight, Rect* bounds, const float* pos) {
  /frameworks/wilhelm/src/android/
MediaPlayer_to_android.cpp 558 int pos = ANDROID_UNKNOWN_TIME; local
560 avp->mAVPlayer->getPositionMsec(&pos);
562 if (pos == ANDROID_UNKNOWN_TIME) {
565 *pPosMsec = (XAmillisecond)pos;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/utility/
TextUtilities.java 459 static /*package*/ char stripHtmlEntity(String text, int pos, int[] skipCount) {
465 int end = pos + 10;
468 for (int i = pos; (i < length) && (i < end); i++) {
470 entity = text.substring(pos, i);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MoveGesture.java 129 public void begin(ControlPoint pos, int startMask) {
130 super.begin(pos, startMask);
137 public void end(ControlPoint pos, boolean canceled) {
138 super.end(pos, canceled);
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldPreparedStatementTest.java     [all...]
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayoutActivity.java 345 public void onItemSelected(AdapterView<?> parent, View view, int pos, long id) {
346 mNumberOfFolds = Integer.parseInt(parent.getItemAtPosition(pos).toString());
  /development/tools/recovery_l10n/src/com/android/recovery_l10n/
Main.java 136 int pos, long id) {
137 switch (pos) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugEventHub.cs 121 public virtual void Location(int line, int pos) {
124 listener.Location(line, pos);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventHub.cs 140 public virtual void Location( int line, int pos )
145 listener.Location( line, pos );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventHub.java 119 public void location(int line, int pos) {
122 listener.location(line, pos);
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSetDTM.java 548 * @param pos Offset at which the node is to be inserted,
553 public void insertNode(int n, int pos)
559 insertElementAt(n, pos);
    [all...]
  /external/chromium_org/skia/ext/
analysis_canvas.cc 247 const SkScalar pos[],
271 const SkPoint pos[],
benchmarking_canvas.cc 150 const SkPoint pos[],
153 SkProxyCanvas::drawPosText(text, byteLength, pos, paint);

Completed in 1153 milliseconds

<<131132133134135136137138139140>>