Searched refs:handle (Results 1 - 25 of 2418) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Daacdecoder_lib.cpp128 /* check handle */
192 static INT aacDecoder_ConfigCallback(void *handle, const CSAudioSpecificConfig *pAscStruct) argument
194 HANDLE_AACDECODER self = (HANDLE_AACDECODER)handle;
268 /* check decoder handle */
402 /* check decoder handle */
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as3 /** A generic recognizer that can handle recognizers generated from
112 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
326 * handle mismatched symbol exceptions but there could be a mismatched
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as119 // handle ^(nil real-node)
H A DCommonErrorNode.as23 // Also handle case where start is the first token and no token
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas303 /// If your node type doesn't handle this, it's ok but the tree rewrites
313 /// If your node type doesn't handle this, it's ok but the tree rewrites
1066 /// of tokens is kept to efficiently and easily handle LT(i) calls, though
2154 // handle double-link stuff for each child of nil root
2622 // Also handle case where start is the first token and no token
2696 // handle ^(nil real-node)
H A DAntlr.Runtime.pas431 /// good enough to handle runtime requirements such as FOLLOW sets
685 /// A generic recognizer that can handle recognizers generated from
808 /// handle mismatched symbol exceptions but there could be a mismatched
4571 // BitSet cannot handle negative numbers like -1 (EOF) so I leave EOR
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBaseRecognizer.pm614 A generic recognizer that can handle recognizers generated from
H A DBitSet.pm267 handle runtime requirements such as FOLLOW sets for automatic error recovery.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb360 characters, but currently this library does not provide any streams to handle
H A Dtoken.rb375 TokenSchemes exist to handle the problem of defining token types as integer
427 scoping behavior can be mildly confusing if you're trying to get a handle of the
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg866 * enter to the target state. To handle gated productions, we may
942 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg1186 * enter to the target state. To handle gated productions, we may
1270 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg1165 * enter to the target state. To handle gated productions, we may
1249 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg942 * enter to the target state. To handle gated productions, we may
1011 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
H A DObjC.stg1413 * enter to the target state. To handle gated productions, we may
1495 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg906 * enter to the target state. To handle gated productions, we may
975 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DPython.stg1025 * enter to the target state. To handle gated productions, we may
1092 * Java cannot handle large static arrays, so we're stuck with this
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
H A DScala.stg935 * enter to the target state. To handle gated productions, we may
1002 * Java cannot handle large static arrays, so we're stuck with this
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DtmpCallbackHandler.java35 public void handle(Callback[] callback) throws IOException, method in class:tmpCallbackHandler
/external/apache-http/src/org/apache/http/client/params/
H A DClientParamBean.java62 public void setHandleRedirects (final boolean handle) { argument
63 params.setBooleanParameter(ClientPNames.HANDLE_REDIRECTS, handle);
78 public void setHandleAuthentication (final boolean handle) { argument
79 params.setBooleanParameter(ClientPNames.HANDLE_AUTHENTICATION, handle);
/external/apache-http/src/org/apache/http/protocol/
H A DHttpRequestHandler.java55 void handle(HttpRequest request, HttpResponse response, HttpContext context) method in interface:HttpRequestHandler
H A DHttpService.java248 handler.handle(request, response, context);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemNumber.java88 int handle; field in class:ElemNumber.MyPrefixResolver
95 public MyPrefixResolver(Node xpathExpressionContext, DTM dtm, int handle, boolean handleNullPrefix) { argument
97 this.handle = handle;
105 return dtm.getNamespaceURI(handle);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMChildIterNodeList.java74 * @param parentHandle DTM node-handle integer
96 int handle=m_firstChild;
97 while(--index>=0 && handle!=DTM.NULL) {
98 handle=m_parentDTM.getNextSibling(handle);
100 if (handle == DTM.NULL) {
103 return m_parentDTM.getNode(handle);
112 for (int handle=m_firstChild;
113 handle!=DTM.NULL;
114 handle
[all...]
H A DDTMDefaultBaseTraversers.java516 * implemented by derived classes, and must be robust enough to handle any
610 * Get the subtree root identity from the handle that was passed in by
614 * @param handle handle to the root context.
617 protected int getSubtreeRoot(int handle) argument
619 return makeNodeIdentity(handle);
641 * implemented by derived classes, and must be robust enough to handle any
716 return makeNodeHandle(current); // make handle.
752 return makeNodeHandle(current); // make handle.
822 return makeNodeHandle(current); // make handle
1625 getSubtreeRoot(int handle) argument
1697 getSubtreeRoot(int handle) argument
[all...]

Completed in 5874 milliseconds

1234567891011>>