Searched defs:rec (Results 1 - 25 of 173) sorted by relevance

1234567

/external/v8/test/cctest/
H A Dtest-unbound-queue.cc18 Record rec = 0; local
19 cq.Dequeue(&rec);
20 CHECK_EQ(1, rec);
35 Record rec = 0; local
38 cq.Dequeue(&rec);
39 CHECK_EQ(i, rec);
47 cq.Dequeue(&rec);
48 CHECK_EQ(i, rec);
H A Dtest-circular-queue.cc25 Record* rec = reinterpret_cast<Record*>(scq.Enqueue()); local
26 CHECK_NE(NULL, rec);
27 *rec = i;
34 Record* rec = reinterpret_cast<Record*>(scq.Enqueue()); local
35 CHECK_NE(NULL, rec);
36 *rec = i;
40 Record* rec = reinterpret_cast<Record*>(scq.Enqueue()); local
41 CHECK_NE(NULL, rec);
42 *rec = 20;
49 Record* rec local
66 Record* rec = reinterpret_cast<Record*>(scq.StartDequeue()); local
97 Record* rec = reinterpret_cast<Record*>(scq_->Enqueue()); local
141 Record* rec = reinterpret_cast<Record*>(scq.StartDequeue()); local
153 Record* rec = reinterpret_cast<Record*>(scq.StartDequeue()); local
165 Record* rec = reinterpret_cast<Record*>(scq.StartDequeue()); local
[all...]
/external/skia/legacy/src/views/
H A DSkTagList.cpp16 SkTagList* SkTagList::Find(SkTagList* rec, U8CPU tag) argument
20 while (rec != NULL)
22 if (rec->fTag == tag)
24 rec = rec->fNext;
26 return rec;
33 SkTagList* rec = *head;
36 while (rec != NULL)
38 SkTagList* next = rec->fNext;
40 if (rec
[all...]
H A DSkViewPriv.cpp31 Artist_SkTagList* rec = (Artist_SkTagList*)this->findTagList(kViewArtist_SkTagList); local
32 SkASSERT(rec == NULL || rec->fArtist != NULL);
34 return rec ? rec->fArtist : NULL;
45 Artist_SkTagList* rec = (Artist_SkTagList*)this->findTagList(kViewArtist_SkTagList); local
47 if (rec)
48 SkRefCnt_SafeAssign(rec->fArtist, obj);
77 Layout_SkTagList* rec = (Layout_SkTagList*)this->findTagList(kViewLayout_SkTagList); local
78 SkASSERT(rec
91 Layout_SkTagList* rec = (Layout_SkTagList*)this->findTagList(kViewLayout_SkTagList); local
[all...]
/external/skia/src/views/
H A DSkTagList.cpp16 SkTagList* SkTagList::Find(SkTagList* rec, U8CPU tag) argument
20 while (rec != NULL)
22 if (rec->fTag == tag)
24 rec = rec->fNext;
26 return rec;
33 SkTagList* rec = *head;
36 while (rec != NULL)
38 SkTagList* next = rec->fNext;
40 if (rec
[all...]
H A DSkViewPriv.cpp31 Artist_SkTagList* rec = (Artist_SkTagList*)this->findTagList(kViewArtist_SkTagList); local
32 SkASSERT(rec == NULL || rec->fArtist != NULL);
34 return rec ? rec->fArtist : NULL;
45 Artist_SkTagList* rec = (Artist_SkTagList*)this->findTagList(kViewArtist_SkTagList); local
47 if (rec)
48 SkRefCnt_SafeAssign(rec->fArtist, obj);
77 Layout_SkTagList* rec = (Layout_SkTagList*)this->findTagList(kViewLayout_SkTagList); local
78 SkASSERT(rec
91 Layout_SkTagList* rec = (Layout_SkTagList*)this->findTagList(kViewLayout_SkTagList); local
[all...]
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3parser.h59 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_PARSER_struct
H A Dantlr3treeparser.h57 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_TREE_PARSER_struct
H A Dantlr3lexer.h105 pANTLR3_BASE_RECOGNIZER rec; member in struct:ANTLR3_LEXER_struct
/external/srec/srec/crec/
H A Dastar_pphash.h43 srec* rec; member in struct:__anon13454
47 void hash_init(FixedSizeHash* hash, srec* rec);
50 int compare_parp(partial_path* parp1, partial_path* parp2, srec* rec);
H A Dastar_pphash.c40 hash->rec = rec_debug;
46 int compare_parp(partial_path* parp1, partial_path* parp2, srec* rec) argument
105 if (compare_parp(p_return, parp, hash->rec) == 0)
128 print_path(parp, hash->rec, "problem in astar_pphash hash_set ");
132 else if (compare_parp(*p_insert, parp, hash->rec) == 0)
135 print_path(*p_insert, hash->rec, "key taken in astar_pphash hash_set ");
143 print_path(parp, hash->rec, "");
160 if (compare_parp(*p_insert, parp, hash->rec) == 0)
165 print_path(parp, hash->rec, "deleted ");
/external/valgrind/main/memcheck/tests/linux/
H A Dlsframe2.c13 int rec ( int depth ) function
20 zzz = rec(depth-1);
31 sum = rec(N_MBYTES);
/system/extras/tests/bionic/libc/glibc/assert/
H A Dtest-assert.c14 jmp_buf rec; variable
20 longjmp (rec, 1); /* recover control */
59 if (!setjmp (rec))
64 if (!setjmp (rec))
69 if (!setjmp (rec))
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3cyclicdfa.c53 noViableAlt(pANTLR3_BASE_RECOGNIZER rec, pANTLR3_CYCLIC_DFA cdfa, ANTLR3_UINT32 s) argument
59 if (rec->state->backtracking > 0)
61 rec->state->failed = ANTLR3_TRUE;
65 rec->exConstruct(rec);
66 rec->state->exception->type = ANTLR3_NO_VIABLE_ALT_EXCEPTION;
67 rec->state->exception->message = cdfa->description;
68 rec->state->exception->decisionNum = cdfa->decisionNumber;
69 rec->state->exception->state = s;
79 antlr3dfapredict (void * ctx, pANTLR3_BASE_RECOGNIZER rec, pANTLR3_INT_STREA argument
[all...]
/external/clang/test/Parser/
H A Dcxx-ambig-paren-expr.cpp30 struct rec { rec(int); }; struct
34 struct rec { rec(int); }; struct in namespace:ns
39 struct rec { rec(int); }; struct in struct:cls
57 if (result((cls::rec) i).check())
60 if (result((ns::rec) i).check())
63 if (result((::rec) i).check())
/external/openssl/ssl/
H A Dd1_enc.c139 SSL3_RECORD *rec; local
154 rec= &(s->s3->wrec);
160 if ( rec->data != rec->input)
162 fprintf(stderr, "%s:%d: rec->data != rec->input\n",
166 if (RAND_bytes(rec->input, EVP_CIPHER_block_size(ds->cipher)) <= 0)
179 rec= &(s->s3->rrec);
193 memmove(rec->data,rec
[all...]
/external/skia/gm/
H A Ddistantclip.cpp36 SkCanvas* rec = pict.beginRecording(100, offset + extents); local
37 rec->drawColor(0xffff0000);
38 rec->save();
47 rec->clipPath(p, SkRegion::kIntersect_Op, true);
48 rec->drawColor(0xff00ff00);
49 rec->restore();
/external/skia/legacy/src/core/
H A DSkRefDict.cpp30 Impl* rec = fImpl; local
31 while (rec) {
32 if (rec->fName.equals(name)) {
33 return rec->fData;
35 rec = rec->fNext;
45 Impl* rec = fImpl; local
47 while (rec) {
48 if (rec->fName.equals(name)) {
52 rec
80 Impl* rec = fImpl; local
[all...]
/external/skia/src/core/
H A DSkRefDict.cpp30 Impl* rec = fImpl; local
31 while (rec) {
32 if (rec->fName.equals(name)) {
33 return rec->fData;
35 rec = rec->fNext;
45 Impl* rec = fImpl; local
47 while (rec) {
48 if (rec->fName.equals(name)) {
52 rec
80 Impl* rec = fImpl; local
[all...]
H A DSkPathEffect.cpp59 SkStrokeRec* rec, const SkRect* cullRect) const {
68 if (fPE1->filterPath(&tmp, src, rec, cullRect)) {
71 return fPE0->filterPath(dst, *ptr, rec, cullRect);
77 SkStrokeRec* rec, const SkRect* cullRect) const {
79 return fPE0->filterPath(dst, src, rec, cullRect) |
80 fPE1->filterPath(dst, src, rec, cullRect);
58 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
76 filterPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect) const argument
H A DSkTLS.cpp43 SkTLSRec* rec = (SkTLSRec*)ptr; local
45 SkTLSRec* next = rec->fNext;
46 SkDELETE(rec);
47 rec = next;
48 } while (NULL != rec);
59 const SkTLSRec* rec = (const SkTLSRec*)ptr; local
61 if (rec->fCreateProc == createProc) {
62 SkASSERT(rec->fDeleteProc == deleteProc);
63 return rec->fData;
65 } while ((rec
70 SkTLSRec* rec = new SkTLSRec; local
89 const SkTLSRec* rec = (const SkTLSRec*)ptr; local
[all...]
/external/skia/src/utils/mac/
H A DSkStream_mac.cpp49 CGDataProviderSequentialCallbacks rec; local
50 sk_bzero(&rec, sizeof(rec));
51 rec.version = 0;
52 rec.getBytes = get_bytes_proc;
53 rec.skipForward = skip_forward_proc;
54 rec.rewind = rewind_proc;
55 rec.releaseInfo = release_info_proc;
56 return CGDataProviderCreateSequential(stream, &rec);
/external/v8/src/
H A Dunbound-queue-inl.h69 void UnboundQueue<Record>::Dequeue(Record* rec) { argument
72 *rec = next->value;
78 void UnboundQueue<Record>::Enqueue(const Record& rec) { argument
80 next = new Node(rec);
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DDNSTask.java73 * @param rec
78 public DNSOutgoing addQuestion(DNSOutgoing out, DNSQuestion rec) throws IOException { argument
81 newOut.addQuestion(rec);
93 newOut.addQuestion(rec);
105 * @param rec
110 public DNSOutgoing addAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException { argument
113 newOut.addAnswer(in, rec);
125 newOut.addAnswer(in, rec);
135 * @param rec
141 public DNSOutgoing addAnswer(DNSOutgoing out, DNSRecord rec, lon argument
171 addAuthoritativeAnswer(DNSOutgoing out, DNSRecord rec) argument
203 addAdditionalAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) argument
[all...]
/external/oprofile/opjitconv/
H A Dparse_dump.c32 struct jr_code_load const * rec = ptr_arg; local
35 end = rec->code_addr ? ptr + size : NULL;
41 ptr += sizeof(*rec);
46 entry->code = rec->code_addr ? ptr : NULL;
47 entry->vma = rec->vma;
48 entry->code_size = rec->code_size;
50 entry->life_start = rec->timestamp;
63 rec_totalsize = sizeof(*rec) + strlen(entry->symbol_name) + 1 + entry->code_size;
88 struct jr_code_unload const * rec = ptr; local
92 rec
119 struct jr_code_debug_info const * rec = ptr; local
141 struct jr_prefix const * rec = ptr; local
[all...]

Completed in 742 milliseconds

1234567