Searched refs:input (Results 226 - 250 of 3184) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.java38 public SimpleCLexer(CharStream input) { argument
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) { argument
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
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCLexer.java38 public SimpleCLexer(CharStream input) { argument
39 this(input, new RecognizerSharedState());
41 public SimpleCLexer(CharStream input, RecognizerSharedState state) { argument
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
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/
H A Dsimplecalc.pl12 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/
H A DT.g1 /** 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/
H A Dbase64.h15 // 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/
H A Dencryptor_win.cc30 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/chrome/browser/resources/
H A Dabout_conflicts.js30 * Takes the |moduleListData| input argument which represents data about
37 var input = new JsEvalContext(moduleListData);
39 jstProcess(input, output);
H A Dabout_flash.js6 * Takes the |moduleListData| input argument which represents data about
13 var input = new JsEvalContext(moduleListData);
15 jstProcess(input, output);
H A Dabout_nacl.js9 * Takes the |moduleListData| input argument which represents data about
16 var input = new JsEvalContext(moduleListData);
18 jstProcess(input, output);
/external/chromium_org/components/webdata/encryptor/
H A Dencryptor_win.cc30 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/WebKit/Source/wtf/
H A DSHA1Test.cpp41 CString SHA1HexDigest(CString input, int repeat) argument
45 sha1.addBytes(input);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
H A Dupdate_webgl_conformance_tests_unittest.py47 def assert_translate(self, input, output):
48 self.assertEqual(output, webgl.translate_khronos_test(input))
86 for input, output in styles.items():
87 input_text += construct_style(input)
88 output_text += construct_style(output if output else input)
89 for input, output in scripts.items():
90 input_text += construct_script(input)
91 output_text += construct_script(output if output else input)
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dpunyref.h55 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/ui/keyboard/resources/
H A Dapi_adapter.js12 chrome.experimental.input.virtualKeyboard.insertText(text, logIfError);
16 chrome.experimental.input.virtualKeyboard.moveCursor(swipe_direction,
/external/icu4c/test/intltest/
H A Dpunyref.h55 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/
H A DRawInputListener.java33 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/
H A DKeyTrigger.java33 package com.jme3.input.controls;
35 import com.jme3.input.KeyInput;
H A DMouseButtonTrigger.java33 package com.jme3.input.controls;
35 import com.jme3.input.MouseInput;
/external/jmonkeyengine/engine/src/core/com/jme3/input/event/
H A DInputEvent.java33 package com.jme3.input.event;
35 import com.jme3.input.Input;
38 * An abstract input event.
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.
H A DJoyButtonEvent.java33 package com.jme3.input.event;
35 import com.jme3.input.Joystick;
/external/jsilver/src/com/google/streamhtmlparser/
H A DParser.java41 * @param input the character read
44 void parse(char input) throws ParseException; argument
50 * @param input the {@code String} to parse
53 void parse(String input) throws ParseException; argument
/external/oprofile/libutil/
H A Dop_libiberty.c30 void * xmemdup (void const * input, size_t copy_size, size_t alloc_size) argument
34 memcpy(output, input, copy_size);
/external/smali/smali/src/main/java/org/jf/smali/
H A DLexerErrorInterface.java44 public ANTLRLexerWithErrorInterface(CharStream input, RecognizerSharedState state) { argument
45 super(input, state);
H A DOdexedInstructionException.java37 OdexedInstructionException(IntStream input, String odexedInstruction) { argument
38 super(input);
/external/chromium_org/chrome/browser/resources/file_manager/css/
H A Dlist.css56 input[type='input'],
57 input[type='password'],
58 input[type='search'],
59 input[type='text'],
60 input[type='url']),
63 input[type='button'],
64 input[type='submit'],

Completed in 444 milliseconds

1234567891011>>