HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 276 - 300 of 4839) sorted by null

<<11121314151617181920>>

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnwantedTokenException.java 35 public UnwantedTokenException(int expecting, IntStream input) {
36 super(expecting, input);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeFilter.java 86 public TreeFilter(TreeNodeStream input) {
87 this(input, new RecognizerSharedState());
89 public TreeFilter(TreeNodeStream input, RecognizerSharedState state) {
90 super(input, state);
91 originalAdaptor = input.getTreeAdaptor();
92 originalTokenStream = input.getTokenStream();
100 input = new CommonTreeNodeStream(originalAdaptor, t);
101 ((CommonTreeNodeStream)input).setTokenStream(originalTokenStream);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
EarlyExitException.js 5 * @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
8 org.antlr.runtime.EarlyExitException = function(decisionNumber, input) {
10 this, input);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 38 public SimpleCLexer(CharStream input) {
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) {
42 super(input,state);
259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
260 input.consume()
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 38 public SimpleCLexer(CharStream input) {
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) {
42 super(input,state);
259 if ( (input.LA(1)>='A' && input.LA(1)<='Z')||input.LA(1)=='_'||(input.LA(1)>='a' && input.LA(1)<='z') ) {
260 input.consume()
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/id/
id.pl 12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ input => "Hello World!\n42\n" });
13 my $lexer = IDLexer->new({ input => $input });
  /external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/
simplecalc.pl 12 my $input = ANTLR::Runtime::ANTLRFileStream->new({ file_name => $ARGV[0] });
13 my $lexer = SimpleCalcLexer->new({ input => $input });
15 my $parser = SimpleCalcParser->new({ input => $tokens });
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
T.g 1 /** Convert the simple input to be java code; wrap in a class,
5 * in Main will print out the original input stream.
16 $input->insert_before($input->LT(1), "public class Wrapper {\n");
18 $input->insert_after($method.stop, "\n}\n");
24 { $input->replace($m, "public void"); }
  /external/chromium/base/
base64.h 15 // Encodes the input string in base64. Returns true if successful and false
17 BASE_API bool Base64Encode(const std::string& input, std::string* output);
19 // Decodes the base64 input string. Returns true if successful and false
21 BASE_API bool Base64Decode(const std::string& input, std::string* output);
  /external/chromium/chrome/browser/password_manager/
encryptor_win.cc 30 DATA_BLOB input; local
31 input.pbData = const_cast<BYTE*>(
33 input.cbData = static_cast<DWORD>(plaintext.length());
36 BOOL result = CryptProtectData(&input, L"", NULL, NULL, NULL,
51 DATA_BLOB input; local
52 input.pbData = const_cast<BYTE*>(
54 input.cbData = static_cast<DWORD>(ciphertext.length());
57 BOOL result = CryptUnprotectData(&input, NULL, NULL, NULL, NULL,
  /external/chromium_org/third_party/icu/source/test/intltest/
punyref.h 43 punycode_bad_input, /* Input is invalid. */
45 punycode_overflow /* Input needs wider integers to process. */
55 const punycode_uint input[],
60 /* punycode_encode() converts Unicode to Punycode. The input */
65 /* zeros if and only if the input contains zeros. (Of course */
68 /* the input. The output_length is an in/out argument: the */
87 const char input[],
92 /* punycode_decode() converts Punycode to Unicode. The input is */
95 /* input_length is the number of code points in the input. The */
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message_lite.h 114 // Fill the message with a protocol buffer parsed from the given input
115 // stream. Returns false on a read error or if the input is in the
117 bool ParseFromCodedStream(io::CodedInputStream* input);
120 bool ParsePartialFromCodedStream(io::CodedInputStream* input);
121 // Read a protocol buffer from the given zero-copy input stream. If
122 // successful, the entire input will be consumed.
123 bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input);
126 bool ParsePartialFromZeroCopyStream(io::ZeroCopyInputStream* input);
127 // Read a protocol buffer from the given zero-copy input stream, expecting
129 // this many bytes will have been consumed from the input
    [all...]
  /external/icu4c/test/intltest/
punyref.h 43 punycode_bad_input, /* Input is invalid. */
45 punycode_overflow /* Input needs wider integers to process. */
55 const punycode_uint input[],
60 /* punycode_encode() converts Unicode to Punycode. The input */
65 /* zeros if and only if the input contains zeros. (Of course */
68 /* the input. The output_length is an in/out argument: the */
87 const char input[],
92 /* punycode_decode() converts Punycode to Unicode. The input is */
95 /* input_length is the number of code points in the input. The */
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
RawInputListener.java 33 package com.jme3.input;
35 import com.jme3.input.event.*;
38 * An interface used for receiving raw input from devices.
43 * Called before a batch of input will be sent to this
49 * Called after a batch of input was sent to this
  /external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
KeyTrigger.java 33 package com.jme3.input.controls;
35 import com.jme3.input.KeyInput;
MouseButtonTrigger.java 33 package com.jme3.input.controls;
35 import com.jme3.input.MouseInput;
  /external/jmonkeyengine/engine/src/core/com/jme3/input/event/
InputEvent.java 33 package com.jme3.input.event;
35 import com.jme3.input.Input;
38 * An abstract input event.
49 * {@link Input#getInputTimeNanos() }.
67 * Returns true if the input event has been consumed, meaning it is no longer valid
68 * and should not be forwarded to input listeners.
70 * @return true if the input event has been consumed
77 * Call to mark this input event as consumed, meaning it is no longer valid
78 * and should not be forwarded to input listeners
    [all...]
JoyButtonEvent.java 33 package com.jme3.input.event;
35 import com.jme3.input.Joystick;
  /external/jsilver/src/com/google/streamhtmlparser/
Parser.java 41 * @param input the character read
44 void parse(char input) throws ParseException;
50 * @param input the {@code String} to parse
53 void parse(String input) throws ParseException;
  /external/oprofile/libutil/
op_libiberty.c 30 void * xmemdup (void const * input, size_t copy_size, size_t alloc_size)
34 memcpy(output, input, copy_size);
  /external/protobuf/src/google/protobuf/
message_lite.h 108 // Fill the message with a protocol buffer parsed from the given input
109 // stream. Returns false on a read error or if the input is in the
111 bool ParseFromCodedStream(io::CodedInputStream* input);
114 bool ParsePartialFromCodedStream(io::CodedInputStream* input);
115 // Read a protocol buffer from the given zero-copy input stream. If
116 // successful, the entire input will be consumed.
117 bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input);
120 bool ParsePartialFromZeroCopyStream(io::ZeroCopyInputStream* input);
121 // Read a protocol buffer from the given zero-copy input stream, expecting
123 // this many bytes will have been consumed from the input
    [all...]
  /external/smali/smali/src/main/java/org/jf/smali/
LexerErrorInterface.java 44 public ANTLRLexerWithErrorInterface(CharStream input, RecognizerSharedState state) {
45 super(input, state);
OdexedInstructionException.java 37 OdexedInstructionException(IntStream input, String odexedInstruction) {
38 super(input);
  /frameworks/base/core/java/android/view/animation/
AccelerateDecelerateInterpolator.java 35 public float getInterpolation(float input) {
36 return (float)(Math.cos((input + 1) * Math.PI) / 2.0f) + 0.5f;
  /frameworks/compile/slang/lit-tests/
rs-filecheck-wrapper.sh 12 $FILECHECK -input-file $OUTDIR/$FILECHECK_INPUTFILE $SOURCEFILE

Completed in 864 milliseconds

<<11121314151617181920>>