HomeSort by relevance Sort by last modified time
    Searched refs:rec (Results 176 - 200 of 487) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_thread.py 163 rec = c.first()
164 while rec:
166 key, data = rec
168 rec = c.next()
287 rec = dbutils.DeadlockWrap(c.first, max_retries=10)
288 while rec:
290 key, data = rec
292 rec = dbutils.DeadlockWrap(c.next, max_retries=10)
431 rec = c.first()
432 while rec
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
RVCVXCheckAnalyzer.java 353 void assign(AttitudeRec rec) {
354 time = rec.time;
355 roll = rec.time;
356 pitch = rec.pitch;
357 yaw = rec.yaw;
361 void assign(AttitudeRec rec, double atime) {
363 roll = rec.time;
364 pitch = rec.pitch;
365 yaw = rec.yaw;
737 * @param rec the ArrayList of AttitudeRec to be sample
    [all...]
  /external/v8/test/mjsunit/
json-stringify-recursive.js 37 function rec(a,b,c,d,e,f,g,h,i,j,k,l,m,n) { function
39 rec(a,b,c,d,e,f,g,h,i,j,k,l,m,n);
42 assertThrows(function() { rec(1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4) },
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 16 let rec parse_primary = parser
27 let rec parse_args accumulator = parser
35 let rec parse_ident id = parser
93 let rec parse_args accumulator = parser
toplevel.ml 6 let rec main_loop stream =
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 16 let rec parse_primary = parser
27 let rec parse_args accumulator = parser
35 let rec parse_ident id = parser
93 let rec parse_args accumulator = parser
toplevel.ml 8 let rec main_loop stream =
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 16 let rec parse_primary = parser
27 let rec parse_args accumulator = parser
35 let rec parse_ident id = parser
93 let rec parse_args accumulator = parser
  /external/skia/src/core/
SkPictureData.h 167 static void WriteFactories(SkWStream* stream, const SkFactorySet& rec);
168 static void WriteTypefaces(SkWStream* stream, const SkRefCntSet& rec);
SkResourceCache.h 70 struct Rec {
73 Rec() {}
74 virtual ~Rec() {}
83 static const Key& GetKey(const Rec& rec) { return rec.getKey(); }
86 Rec* fNext;
87 Rec* fPrev;
99 typedef const Rec* ID;
103 * specified Key, and will pass in the corresponding Rec, along with a caller-specifie
    [all...]
SkMallocPixelRef.cpp 188 bool SkMallocPixelRef::onNewLockPixels(LockRec* rec) {
189 rec->fPixels = fStorage;
190 rec->fRowBytes = fRB;
191 rec->fColorTable = fCTable;
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 72 SkStrokeRec* rec, const SkRect*) const {
73 bool doFill = rec->isFillStyle();
  /external/skia/tests/
DashPathEffectTest.cpp 61 SkStrokeRec rec(paint);
78 bool actualResult = dash->asPoints(&results, src, rec, mats[i], &cull);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
UsimPhoneBookManager.java 217 AdnRecord rec = mPhoneBookRecords.get(i); local
218 if (rec != null) {
219 rec.setEmails(emails);
222 rec = new AdnRecord("", "", emails);
224 mPhoneBookRecords.set(i, rec);
248 AdnRecord rec = mPhoneBookRecords.get(i); local
252 rec.setEmails(emails);
253 mPhoneBookRecords.set(i, rec);
  /ndk/sources/host-tools/nawk-20071023/
lib.c 48 int donefld; /* 1 = implies rec broken into fields */
55 static Cell dollar0 = { OCELL, CFLD, NULL, "", 0.0, REC|STR|DONTFREE };
150 fldtab[0]->tval = REC | STR | DONTFREE;
407 int refldbld(const char *rec, const char *fs) /* build fields from reg expr in FS */
415 n = strlen(rec);
424 if (*rec == '\0')
427 dprintf( ("into refldbld, rec = <%s>, pat = <%s>\n", rec, fs) );
437 if (nematch(pfa, rec)) {
440 strncpy(fr, rec, patbeg-rec)
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3lexer.h 105 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_LEXER_struct
antlr3rewritestreams.h 101 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 17 struct Rec {
22 } rec; variable in typeref:struct:Rec
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 264 OPENTYPE_FEATURE_RECORD rec; member in struct:active_feature_t
268 return a->rec.tagFeature < b->rec.tagFeature ? -1 : a->rec.tagFeature > b->rec.tagFeature ? 1 :
270 a->rec.lParameter < b->rec.lParameter ? -1 : a->rec.lParameter > b->rec.lParameter ? 1 :
618 feature.rec.tagFeature = hb_uint32_swap (features[i].tag)
    [all...]
  /external/skia/gm/
aaclip.cpp 169 } rec[] = { variable in typeref:struct:CGImageGM::__anon18037
181 for (size_t i = 0; i < SK_ARRAY_COUNT(rec); ++i) {
182 SkImageInfo info = SkImageInfo::Make(100, 100, rec[i].fCT, rec[i].fAT);
  /external/skia/include/core/
SkComposeShader.h 65 bool asACompose(ComposeRec* rec) const override;
  /external/skia/include/effects/
SkLayerDrawLooper.h 80 bool asABlurShadow(BlurShadowRec* rec) const override;
93 struct Rec {
94 Rec* fNext;
98 Rec* fRecs;
99 Rec* fTopRec;
111 Rec* fCurrRec;
156 Rec* fRecs;
157 Rec* fTopRec;
  /external/v8/tools/testrunner/server/
work_handler.py 45 rec = compression.Receiver(self.request)
46 while not rec.IsDone():
47 data = rec.Current()
50 rec.Advance()
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4dec_lib.h 283 void H263_Deblock(uint8 *rec, int width, int height, int16 *QP_store, uint8 *mode, int chr, int T);
295 void CombinedHorzVertFilter(uint8 *rec, int width, int height, int16 *QP_store,
297 void CombinedHorzVertFilter_NoSoftDeblocking(uint8 *rec, int width, int height, int16 *QP_store,
299 void CombinedHorzVertRingFilter(uint8 *rec, int width, int height,
  /packages/apps/Nfc/tests/src/com/android/nfc/snep/
SnepValidationClientTests.java 182 NdefRecord rec = new NdefRecord(NdefRecord.TNF_WELL_KNOWN, NdefRecord.RTD_URI, local
184 return new NdefMessage(new NdefRecord[] { rec });
193 NdefRecord rec = new NdefRecord(NdefRecord.TNF_MIME_MEDIA, "text/plain".getBytes(), local
195 return new NdefMessage(new NdefRecord[] { rec });

Completed in 1004 milliseconds

1 2 3 4 5 6 78 91011>>