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

12 3 4 5 6 7 8 9

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTokenStream.java 35 protected DebugEventListener dbg; field in class:DebugTokenStream
42 public DebugTokenStream(TokenStream input, DebugEventListener dbg) {
44 setDebugListener(dbg);
50 public void setDebugListener(DebugEventListener dbg) {
51 this.dbg = dbg;
62 dbg.consumeToken(t);
66 dbg.consumeHiddenToken(input.get(i));
75 dbg.consumeHiddenToken(input.get(i));
84 dbg.LT(i, input.LT(i))
    [all...]
DebugTreeNodeStream.java 39 protected DebugEventListener dbg; field in class:DebugTreeNodeStream
48 DebugEventListener dbg)
53 setDebugListener(dbg);
56 public void setDebugListener(DebugEventListener dbg) {
57 this.dbg = dbg;
67 dbg.consumeNode(node);
79 dbg.LT(i, node);
88 dbg.LT(i, node);
94 dbg.mark(lastMarker)
    [all...]
DebugTreeAdaptor.java 48 protected DebugEventListener dbg; field in class:DebugTreeAdaptor
51 public DebugTreeAdaptor(DebugEventListener dbg, TreeAdaptor adaptor) {
52 this.dbg = dbg;
62 dbg.createNode(node, payload);
71 dbg.errorNode(node);
87 dbg.createNode(t);
92 dbg.addChild(t, child);
98 dbg.createNode(d);
104 dbg.nilNode(node)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 78 public DebugTreeGrammar( ITreeNodeStream input, IDebugEventListener dbg )
79 : base( input, dbg, new RecognizerSharedState() )
85 dbg.SemanticPredicate( result, predicate );
102 dbg.EnterRule( GrammarFileName, "prog" );
105 dbg.Commence();
108 dbg.Location( 53, -1 );
113 dbg.EnterAlt( 1 );
117 dbg.Location( 53, 8 );
121 dbg.EnterSubRule( 1 );
128 dbg.EnterDecision( 1 )
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/src/
OMX_WbAmrDec_ComponentThread.c 102 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n");
124 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n");
135 OMX_ERROR4(pComponentPrivate->dbg, "Comp Thrd Exiting here...\n");
140 OMX_PRSTATE2(pComponentPrivate->dbg, "bIsStopping = %ld\n",
143 OMX_PRBUFFER2(pComponentPrivate->dbg, "lcml_nOpBuf = %ld\n",
146 OMX_PRBUFFER2(pComponentPrivate->dbg, "lcml_nIpBuf = %ld\n",
148 OMX_PRBUFFER2(pComponentPrivate->dbg, "app_nBuf = %ld\n",
159 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n");
161 OMX_PRINT1(pComponentPrivate->dbg, "AmrComponentThread \n");
165 OMX_PRINT2(pComponentPrivate->dbg,"Component Time Out !!!!!!!!!!!! \n")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wma_dec/src/
OMX_WmaDec_ComponentThread.c 93 OMX_PRINT1(pComponentPrivate->dbg, "OMX_WmaDec_ComponentThread:%d\n",__LINE__);
95 OMX_PRDSP2(pComponentPrivate->dbg, "PERF%d :: OMX_WmaDec_ComponentThread.c\n",__LINE__);
124 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
129 OMX_PRDSP1(pComponentPrivate->dbg, "%d : bIsStopping = %ld\n",__LINE__, pComponentPrivate->bIsStopping);
131 OMX_PRINT2(pComponentPrivate->dbg, "%d:WmaComponentThread \n",__LINE__);
143 OMX_ERROR4(pComponentPrivate->dbg, "%d:WmaComponentThread \n",__LINE__);
147 OMX_PRDSP2(pComponentPrivate->dbg, "%d :: Component Time Out !!!!!!!!!!!! \n",__LINE__);
150 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__);
160 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: DATA pipe is set in Component Thread\n",__LINE__);
163 OMX_ERROR2(pComponentPrivate->dbg, "%d :: Error while reading from the pipe\n",__LINE__)
    [all...]
OMX_WmaDec_Utils.c 127 OMX_PRINT2(pComponentPrivate->dbg, "[WMADECFill_LCMLInitParams] pComponent = %p",pComponent);
128 OMX_PRINT2(pComponentPrivate->dbg, "[WMADECFill_LCMLInitParams] pComponentPrivate = %p",
130 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entered WMADECFill_LCMLInitParams",__LINE__);
131 OMX_PRINT2(pComponentPrivate->dbg, "%d :: WMADECFill_LCMLInitParams - pComponentPrivate = %p",
133 OMX_PRINT2(pComponentPrivate->dbg, "%d :: WMADECFill_LCMLInitParams - pHandle = %p",__LINE__,
171 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Comp: OMX_WmaDecUtils.c",__LINE__);
183 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d:[ALLOC] %p",__LINE__,strmAttr);
187 OMX_ERROR4(pComponentPrivate->dbg, "strmAttr - failed to malloc");
192 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d:[ALLOC] %p",__LINE__,strmAttr);
193 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Comp: OMX_WmaDecUtils.c",__LINE__)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 36 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTokenStream
43 public DebugTokenStream(ITokenStream input, IDebugEventListener dbg) {
45 DebugListener = dbg;
67 return dbg;
70 dbg = value;
84 dbg.ConsumeToken(t);
88 dbg.ConsumeHiddenToken(input.Get(i));
97 dbg.ConsumeHiddenToken(input.Get(i));
106 dbg.LT(i, input.LT(i));
114 dbg.LT(i, input.LT(i))
    [all...]
DebugTreeNodeStream.cs 45 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTreeNodeStream
54 IDebugEventListener dbg) {
58 DebugListener = dbg;
64 return dbg;
67 dbg = value;
111 dbg.ConsumeNode(node);
125 dbg.LT(i, node);
134 dbg.LT(i, node);
140 dbg.Mark(lastMarker);
145 dbg.Rewind(marker)
    [all...]
DebugTreeAdaptor.cs 53 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTreeAdaptor
56 public DebugTreeAdaptor(IDebugEventListener dbg, ITreeAdaptor adaptor) {
57 this.dbg = dbg;
67 dbg.CreateNode(node, payload);
75 dbg.ErrorNode(node);
91 dbg.CreateNode(t);
96 dbg.AddChild(t, child);
102 dbg.CreateNode(d);
108 dbg.NilNode(node)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 38 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTokenStream
45 public DebugTokenStream( ITokenStream input, IDebugEventListener dbg )
48 DebugListener = dbg;
76 return dbg;
80 dbg = value;
96 dbg.ConsumeToken( t );
102 dbg.ConsumeHiddenToken( input.Get( i ) );
113 dbg.ConsumeHiddenToken( input.Get( i ) );
124 dbg.LT( i, input.LT( i ) );
134 dbg.LT( i, input.LT( i ) )
    [all...]
DebugTreeNodeStream.cs 47 protected IDebugEventListener dbg; field in class:Antlr.Runtime.Debug.DebugTreeNodeStream
56 IDebugEventListener dbg )
61 DebugListener = dbg;
69 return dbg;
73 dbg = value;
129 dbg.ConsumeNode( node );
146 dbg.LT( i, node );
156 dbg.LT( i, node );
163 dbg.Mark( lastMarker );
169 dbg.Rewind( marker )
    [all...]
  /external/elfutils/tests/
get-pubnames.c 40 callback (Dwarf *dbg, Dwarf_Global *gl, void *arg __attribute__ ((unused)))
50 if (dwarf_offdie (dbg, gl->cu_offset, &cu_die) == NULL
61 if (dwarf_offdie (dbg, gl->die_offset, &die) == NULL
83 Dwarf *dbg = dwarf_begin (fd, DWARF_C_READ); local
84 if (dbg == NULL)
94 if (dwarf_getpubnames (dbg, callback, NULL, 0) != 0)
101 dwarf_end (dbg);
allfcts.c 56 Dwarf *dbg = dwarf_begin (fd, DWARF_C_READ); local
57 if (dbg != NULL)
63 while (dwarf_nextcu (dbg, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
66 Dwarf_Die *die = dwarf_offdie (dbg, off + cuhl, &die_mem);
73 dwarf_end (dbg);
  /hardware/ti/omap3/omx/audio/src/openmax_il/mp3_dec/src/
OMX_Mp3Dec_CompThread.c 117 OMX_PRINT1(pComponentPrivate->dbg, ":: Entering ComponentThread \n");
148 OMX_PRINT1(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
155 OMX_PRSTATE2(pComponentPrivate->dbg, "\n\n\n!!!!! Component Time Out !!!!!!!!!!!! \n");
156 OMX_PRSTATE2(pComponentPrivate->dbg, "Current State: %d \n", pComponentPrivate->curState);
158 OMX_PRDSP2(pComponentPrivate->dbg, "%d:: lcml_nCntOp = %lu\n",__LINE__,pComponentPrivate->lcml_nCntOp);
159 OMX_PRDSP2(pComponentPrivate->dbg, "%d : lcml_nCntIp = %lu\n",__LINE__,pComponentPrivate->lcml_nCntIp);
160 OMX_PRDSP2(pComponentPrivate->dbg, "%d : lcml_nCntIpRes = %lu\n",__LINE__,pComponentPrivate->lcml_nCntIpRes);
161 OMX_PRDSP2(pComponentPrivate->dbg, "%d :: lcml_nCntOpReceived = %lu\n",__LINE__,pComponentPrivate->lcml_nCntOpReceived);
164 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
170 OMX_ERROR4(pComponentPrivate->dbg, ":: Error in Select\n")
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/nbamr_enc/src/
OMX_AmrEnc_ComponentThread.c 107 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering NBAMRENC_CompThread\n", __LINE__);
138 OMX_ERROR2(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
143 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: bIsThreadstop = %ld\n",__LINE__,pComponentPrivate->bIsThreadstop);
144 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: lcml_nOpBuf = %ld\n",__LINE__,pComponentPrivate->lcml_nOpBuf);
145 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: lcml_nIpBuf = %ld\n",__LINE__,pComponentPrivate->lcml_nIpBuf);
146 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: app_nBuf = %ld\n",__LINE__,pComponentPrivate->app_nBuf);
155 OMX_ERROR4(pComponentPrivate->dbg, "%d :: pComponentPrivate->curState is not OMX_StateIdle\n",__LINE__);
159 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Component Time Out !!!!! \n",__LINE__);
161 OMX_ERROR4(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__);
172 OMX_PRCOMM2(pComponentPrivate->dbg, "%d :: DATA pipe is set in Component Thread\n",__LINE__)
    [all...]
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/src/
OMX_JpegEnc_Thread.c 126 OMX_TRACE2(pComponentPrivate->dbg, "fd max is %d\n",fdmax);
145 OMX_TRACE2(pComponentPrivate->dbg, "Component Thread Time Out!!!\n");
147 OMX_TRACE4(pComponentPrivate->dbg, "Error in Select\n");
157 OMX_PRBUFFER2(pComponentPrivate->dbg, "filled_inpBuf_Q pipe is set\n");
162 OMX_PRBUFFER4(pComponentPrivate->dbg, "Error while processing free queue buffers\n");
170 OMX_PRBUFFER2(pComponentPrivate->dbg, "free_outBuf_Q has some buffers in Component Thread\n");
173 OMX_PRBUFFER4(pComponentPrivate->dbg, "Error while processing free Q Buffers\n");
181 OMX_PRCOMM2(pComponentPrivate->dbg, "CMD pipe is set in Component Thread\n");
192 OMX_PRINT2(pComponentPrivate->dbg, "eCmd %d, nParam1 %d\n", (int)eCmd, (int)nParam1);
194 OMX_PRINT2(pComponentPrivate->dbg, "processing OMX_CommandStateSet\n")
    [all...]
  /external/elfutils/libdw/
dwarf_formaddr.c 74 *return_addr = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
76 *return_addr = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
dwarf_getabbrev.c 62 __libdw_getabbrev (dbg, cu, offset, lengthp, result)
63 Dwarf *dbg;
70 if (dbg->sectiondata[IDX_debug_abbrev] == NULL)
73 if (offset >= dbg->sectiondata[IDX_debug_abbrev]->d_size)
80 = (unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf + offset;
113 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev);
167 return __libdw_getabbrev (die->cu->dbg, die->cu,
dwarf_getattrs.c 86 Dwarf *dbg = die->cu->dbg; local
91 >= ((unsigned char *) dbg->sectiondata[IDX_debug_abbrev]->d_buf
92 + dbg->sectiondata[IDX_debug_abbrev]->d_size)))
125 size_t len = __libdw_form_val_len (dbg, die->cu, attr.form,
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Dbg.stg 67 ((Profiler)dbg).examineRuleMemoization(input, ruleIndex, stopIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
74 ((Profiler)dbg).memoize(input, ruleIndex, ruleStartIndex, <grammar.composite.rootGrammar.recognizerName>.ruleNames[ruleIndex]);
79 dbg.semanticPredicate(result, predicate);
94 <grammar.directDelegates:{g|<g:delegateName()> = new <g.recognizerName>(input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}>);}; separator="\n">
104 public <name>(<inputStreamType> input, DebugEventListener dbg, RecognizerSharedState state) {
105 super(input, dbg, state);
106 Profiler p = (Profiler)dbg;
110 {g|<g:delegateName()> = new <g.recognizerName>(input, dbg, this.state, this<grammar.delegators:{g|, <g:delegateName()>}>);}; separator="\n">
116 /** Basically we don't want to set any dbg listeners are root will have it. */
118 public <name>(<inputStreamType> input, DebugEventListener dbg, RecognizerSharedState state<grammar.delegators:{g|, <g.recognizerName> <g:delegateName()>}>)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/aac_enc/src/
OMX_AacEnc_CompThread.c 97 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Entering ComponentThread\n", __LINE__);
121 OMX_ERROR4(pComponentPrivate->dbg, ":: Comp Thrd Exiting here...\n");
128 OMX_PRINT1(pComponentPrivate->dbg, "%d : bIsStopping = %ld\n",__LINE__, pComponentPrivate->bIsStopping);
129 OMX_PRINT1(pComponentPrivate->dbg, "%d : lcml_nOpBuf = %ld\n",__LINE__, pComponentPrivate->lcml_nOpBuf);
130 OMX_PRINT1(pComponentPrivate->dbg, "%d : lcml_nIpBuf = %ld\n",__LINE__, pComponentPrivate->lcml_nIpBuf);
134 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AACENC_ComponentThread \n",__LINE__);
144 OMX_PRINT1(pComponentPrivate->dbg, "%d :: OMX_AACENC_ComponentThread \n",__LINE__);
147 OMX_PRINT1(pComponentPrivate->dbg, "%d ::OMX_AACENC_ComponentThread \n",__LINE__);
151 OMX_PRINT2(pComponentPrivate->dbg, "%d :: Component Time Out !!!!! \n",__LINE__);
155 OMX_ERROR2(pComponentPrivate->dbg, "%d :: Error in Select\n", __LINE__)
    [all...]
OMX_AacEnc_Utils.c 126 OMX_PRINT1(pComponentPrivate->dbg, "%d :: UTIL: AACENCFill_LCMLInitParams\n ",__LINE__);
137 OMX_PRBUFFER1(pComponentPrivate->dbg, "%d :: UTIL: Frames per output buffer = %d \n\n",__LINE__, FramesPerOutBuf);
140 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: ------ Buffer Details -----------\n",__LINE__);
141 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Input Buffer Count = %ld \n",__LINE__,nIpBuf);
142 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Input Buffer Size = %ld\n",__LINE__,nIpBufSize);
143 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Output Buffer Count = %ld\n",__LINE__,nOpBuf);
144 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: Output Buffer Size = %ld\n",__LINE__,nOpBufSize);
145 OMX_PRBUFFER2(pComponentPrivate->dbg, "%d :: ------ Buffer Details ------------\n",__LINE__);
175 OMX_PRINT1(pComponentPrivate->dbg, "%d :: Comp: OMX_AacEncUtils.c\n",__LINE__);
177 OMX_PRDSP2(pComponentPrivate->dbg, "%d :: Codec is configuring to DASF mode\n",__LINE__)
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
OMX_WbAmrEnc_CompThread.c 104 OMX_PRINT1(pComponentPrivate->dbg, "Entering\n");
136 OMX_ERROR4(pComponentPrivate->dbg, "Comp Thrd Exiting!\n");
148 OMX_ERROR4(pComponentPrivate->dbg, "curState is not OMX_StateIdle\n");
153 OMX_PRINT2(pComponentPrivate->dbg, "Component Time Out !!!!! \n");
155 OMX_ERROR4(pComponentPrivate->dbg, "Error in Select\n");
164 OMX_PRCOMM2(pComponentPrivate->dbg, "DATA pipe is set in Component Thread\n");
169 OMX_ERROR4(pComponentPrivate->dbg, "Error while reading from the pipe\n");
176 OMX_ERROR2(pComponentPrivate->dbg, "WBAMRENC_HandleDataBufFromApp returned error\n");
181 OMX_PRINT1(pComponentPrivate->dbg, "CMD pipe is set in Component Thread\n");
185 OMX_ERROR4(pComponentPrivate->dbg, "Error in Reading from the Data pipe\n")
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_encode/src/
OMX_VideoEnc_Thread.c 168 OMX_TRACE2(pComponentPrivate->dbg, "pselect() = 0\n");
179 OMX_TRACE3(pComponentPrivate->dbg, "select() error.\n");
184 OMX_ERROR5(pComponentPrivate->dbg, "*Fatal Error : %x\n", eError);
196 OMX_PRCOMM4(pComponentPrivate->dbg, "Error while reading from cmdPipe\n");
208 OMX_PRCOMM2(pComponentPrivate->dbg, "Received thread close command.\n");
219 OMX_PRCOMM4(pComponentPrivate->dbg, "Error while reading from cmdDataPipe\n");
232 OMX_PRCOMM4(pComponentPrivate->dbg, "Error while reading from cmdDataPipe\n");
249 OMX_PRSTATE2(pComponentPrivate->dbg, "Enters OMX_VIDENC_HandleCommandStateSet\n");
253 OMX_PRSTATE2(pComponentPrivate->dbg, "Exits OMX_VIDENC_HandleCommandStateSet\n");
256 OMX_PRSTATE2(pComponentPrivate->dbg, "Enters OMX_VIDENC_HandleCommandFlush\n")
    [all...]

Completed in 1599 milliseconds

12 3 4 5 6 7 8 9