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

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3cyclicdfa.c 53 noViableAlt(pANTLR3_BASE_RECOGNIZER rec, pANTLR3_CYCLIC_DFA cdfa, ANTLR3_UINT32 s)
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_STREAM is, pANTLR3_CYCLIC_DFA cdfa
    [all...]
antlr3lexer.c 60 static void displayRecognitionError (pANTLR3_BASE_RECOGNIZER rec, pANTLR3_UINT8 * tokenNames);
61 static void reportError (pANTLR3_BASE_RECOGNIZER rec);
66 static void reset (pANTLR3_BASE_RECOGNIZER rec);
88 lexer->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_LEXER, sizeHint, state);
90 if (lexer->rec == NULL)
95 lexer->rec->super = lexer;
97 lexer->rec->displayRecognitionError = displayRecognitionError;
98 lexer->rec->reportError = reportError;
99 lexer->rec->reset = reset;
100 lexer->rec->getCurrentInputSymbol = getCurrentInputSymbol
    [all...]
antlr3treeparser.c 67 parser->rec = antlr3BaseRecognizerNew(ANTLR3_TYPE_PARSER, sizeHint, state);
69 if (parser->rec == NULL)
78 parser->rec->super = parser;
79 parser->rec->type = ANTLR3_TYPE_TREE_PARSER;
83 parser->rec->mismatch = mismatch;
84 parser->rec->exConstruct = antlr3MTNExceptionNew;
85 parser->rec->getCurrentInputSymbol = getCurrentInputSymbol;
86 parser->rec->getMissingSymbol = getMissingSymbol;
129 if (parser->rec != NULL)
135 if (parser->rec->state != NULL
    [all...]
  /external/skia/bench/
StrokeBench.cpp 22 static const char* draw_rect(const RRectRec* rec, int count) {
23 if (rec) {
24 const SkRect& r = rec->fRRect.getBounds();
26 rec->fCanvas->drawRect(r, rec->fPaint);
32 static const char* draw_rrect(const RRectRec* rec, int count) {
33 if (rec) {
35 rec->fCanvas->drawRRect(rec->fRRect, rec->fPaint)
    [all...]
  /external/skia/src/gpu/
GrPathRendering.cpp 63 SkScalerContextRec rec; local
64 memset(&rec, 0, sizeof(rec));
65 rec.fFontID = typeface->uniqueID();
66 rec.fTextSize = SkPaint::kCanonicalTextSizeForPaths;
67 rec.fPreScaleX = rec.fPost2x2[0][0] = rec.fPost2x2[1][1] = SK_Scalar1;
70 SkAutoDescriptor ad(sizeof(rec) + SkDescriptor::ComputeOverhead(1));
74 genericDesc->addEntry(kRec_SkDescriptorTag, sizeof(rec), &rec)
    [all...]
  /external/skia/src/effects/
SkLayerDrawLooper.cpp 31 Rec* rec = fRecs; local
32 while (rec) {
33 Rec* next = rec->fNext;
34 SkDELETE(rec);
35 rec = next;
160 const Rec* rec = fRecs; local
163 if ((rec->fInfo.fPaintBits & ~kMaskFilter_Bit))
205 Rec* rec = fRecs; local
241 Rec* rec = fRecs; local
302 Rec* rec = fRecs; local
313 Rec* rec = SkNEW(Rec); local
334 Rec* rec = SkNEW(Rec); local
    [all...]
  /external/skia/src/opts/
SkXfermode_opts_none.cpp 5 extern SkProcCoeffXfermode* SkPlatformXfermodeFactory(const ProcCoeff& rec,
10 SkProcCoeffXfermode* SkPlatformXfermodeFactory(const ProcCoeff& rec,
SkXfermode_opts_SSE2.h 16 SkSSE2ProcCoeffXfermode(const ProcCoeff& rec, SkXfermode::Mode mode,
18 : INHERITED(rec, mode), fProcSIMD(procSIMD) {}
32 SkProcCoeffXfermode* SkPlatformXfermodeFactory_impl_SSE2(const ProcCoeff& rec,
  /external/v8/test/cctest/
test-unbound-queue.cc 44 Record rec = 0; local
45 cq.Dequeue(&rec);
46 CHECK_EQ(1, rec);
61 Record rec = 0; local
64 cq.Dequeue(&rec);
65 CHECK_EQ(i, rec);
73 cq.Dequeue(&rec);
74 CHECK_EQ(i, rec);
  /external/bison/lib/
spawn_faction_adddup2.c 56 struct __spawn_action *rec;
59 rec = &file_actions->_actions[file_actions->_used];
60 rec->tag = spawn_do_dup2;
61 rec->action.dup2_action.fd = fd;
62 rec->action.dup2_action.newfd = newfd;
  /external/skia/include/core/
SkTDStack.h 25 Rec* rec = fRec; local
26 while (rec != &fInitialRec) {
27 Rec* next = rec->fNext;
28 sk_free(rec);
29 rec = next;
40 Rec* rec = (Rec*)sk_malloc_throw(sizeof(Rec)) local
83 Rec* rec = fRec->fNext; local
    [all...]
  /external/skia/resources/
slides_transitions.lua 10 local rec = {
23 rec.prevDrawable = prev
24 rec.nextDrawable = next
25 rec.curr_x = 0
26 rec.step_x = -15
27 rec.isDone = function (self) return self.curr_x <= -640 end
29 rec.prevDrawable = next
30 rec.nextDrawable = prev
31 rec.curr_x = -640
32 rec.step_x = 1
    [all...]
  /external/icu/icu4c/source/layout/
LEInsertionList.cpp 87 for (InsertionRecord *rec = head; rec != NULL; rec = rec->next) {
88 if (callback->applyInsertion(rec->position, rec->count, rec->glyphs)) {
  /external/selinux/libselinux/src/
label_internal.h 20 int selabel_file_init(struct selabel_handle *rec, struct selinux_opt *opts,
22 int selabel_media_init(struct selabel_handle *rec, struct selinux_opt *opts,
24 int selabel_x_init(struct selabel_handle *rec, struct selinux_opt *opts,
26 int selabel_db_init(struct selabel_handle *rec,
28 int selabel_property_init(struct selabel_handle *rec,
79 selabel_validate(struct selabel_handle *rec,
95 compat_validate(struct selabel_handle *rec,
  /system/bt/btif/src/
btif_sdp_server.c 66 static int add_maps_sdp(const bluetooth_sdp_mas_record* rec);
67 static int add_mapc_sdp(const bluetooth_sdp_mns_record* rec);
68 static int add_pbaps_sdp(const bluetooth_sdp_pse_record* rec);
69 static int add_opps_sdp(const bluetooth_sdp_ops_record* rec);
70 static int add_saps_sdp(const bluetooth_sdp_sap_record* rec);
373 static int add_maps_sdp(const bluetooth_sdp_mas_record* rec)
385 rec->mas_instance_id, rec->hdr.rfcomm_channel_number,
386 rec->hdr.l2cap_psm, rec->hdr.service_name)
    [all...]
  /external/skia/src/views/
SkTouchGesture.cpp 137 Rec* rec = fTouches.append(); local
138 rec->fOwner = owner;
139 rec->fStartX = rec->fPrevX = rec->fLastX = x;
140 rec->fStartY = rec->fPrevY = rec->fLastY = y;
141 rec->fLastT = rec->fPrevT = SkTime::GetMSecs()
218 Rec& rec = fTouches[index]; local
268 const Rec& rec = fTouches[index]; local
    [all...]
  /external/skia/src/core/
SkSmallAllocator.h 44 Rec* rec = &fRecs[fNumObjects]; local
45 rec->fKillProc(rec->fObj);
48 sk_free(rec->fHeapStorage);
124 Rec* rec = &fRecs[fNumObjects]; local
130 rec->fStorageSize = 0;
131 rec->fHeapStorage = sk_malloc_throw(storageRequired);
132 rec->fObj = static_cast<void*>(rec->fHeapStorage)
153 Rec* rec = &fRecs[fNumObjects - 1]; local
    [all...]
  /external/skia/samplecode/
SampleVertices.cpp 134 struct Rec {
140 Rec() : fCount(0), fVerts(NULL), fTexs(NULL) {}
141 ~Rec() { delete[] fVerts; delete[] fTexs; }
144 void make_tris(Rec* rec) {
148 rec->fMode = SkCanvas::kTriangles_VertexMode;
149 rec->fCount = n * 3;
150 rec->fVerts = new SkPoint[rec->fCount];
153 SkPoint* v = &rec->fVerts[i*3]
    [all...]
  /external/compiler-rt/test/tsan/
java_lock_rec.cc 11 int rec = __tsan_java_mutex_unlock_rec(lockaddr); local
12 if (rec != 2) {
13 printf("FAILED 0 rec=%d\n", rec);
18 __tsan_java_mutex_lock_rec(lockaddr, rec);
java_lock_rec_race.cc 11 int rec = __tsan_java_mutex_unlock_rec(lockaddr); local
12 if (rec != 3) {
13 printf("FAILED 0 rec=%d\n", rec);
19 __tsan_java_mutex_lock_rec(lockaddr, rec);
  /build/tools/atree/
files.cpp 118 FileRecord rec; local
119 rec.listFile = listFile;
120 rec.listLine = listLine;
121 rec.fileOp = fileOp;
122 rec.sourceName = sourceName;
123 rec.outName = outName;
124 files->push_back(rec);
331 locate(FileRecord* rec, const vector<string>& search)
333 if (rec->fileOp == FILE_OP_REMOVE) {
335 rec->sourceMod = 0
    [all...]
  /external/v8/src/
unbound-queue.h 27 INLINE(bool Dequeue(Record* rec));
28 INLINE(void Enqueue(const Record& rec));
cpu-profiler.cc 186 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
187 rec->start = entry_point;
188 rec->entry = profiles_->NewCodeEntry(
191 rec->size = 1;
192 rec->shared = NULL;
202 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
203 rec->start = code->address();
204 rec->entry = profiles_->NewCodeEntry(tag, profiles_->GetFunctionName(name));
205 rec->size = code->ExecutableSize();
206 rec->shared = NULL
216 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
230 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
257 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
282 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
296 CodeMoveEventRecord* rec = &evt_rec.CodeMoveEventRecord_; local
305 CodeDisableOptEventRecord* rec = &evt_rec.CodeDisableOptEventRecord_; local
318 SharedFunctionInfoMoveEventRecord* rec = local
329 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
344 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
358 CodeCreateEventRecord* rec = &evt_rec.CodeCreateEventRecord_; local
499 ReportBuiltinEventRecord* rec = &evt_rec.ReportBuiltinEventRecord_; local
    [all...]
  /external/libselinux/src/
label_internal.h 20 int selabel_file_init(struct selabel_handle *rec, const struct selinux_opt *opts,
22 int selabel_media_init(struct selabel_handle *rec, const struct selinux_opt *opts,
24 int selabel_x_init(struct selabel_handle *rec, const struct selinux_opt *opts,
26 int selabel_db_init(struct selabel_handle *rec,
28 int selabel_property_init(struct selabel_handle *rec,
74 selabel_validate(struct selabel_handle *rec,
  /external/skia/gm/
distantclip.cpp 37 SkCanvas* rec = recorder.beginRecording(kExtents, kOffset + kExtents, NULL, 0); local
38 rec->drawColor(SK_ColorRED);
39 rec->save();
43 rec->clipPath(p, SkRegion::kIntersect_Op, true);
44 rec->drawColor(SK_ColorGREEN);
45 rec->restore();

Completed in 733 milliseconds

12 3 4 5 6 7 8 91011>>