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

12 3 4 5 6 7 8 91011>>

  /external/llvm/utils/
DSAclean.py 17 input = open(sys.argv[1], 'r') variable
21 buffer = input.readline()
25 buffer = input.readline()
30 buffer = input.readline()
31 input.close()
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLInputElementCustom.cpp 38 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
39 if (!input->canHaveSelection())
42 return jsNumber(input->selectionStart());
47 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
48 if (!input->canHaveSelection())
51 input->setSelectionStart(value.toInt32(exec));
56 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
57 if (!input->canHaveSelection())
60 return jsNumber(input->selectionEnd());
65 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()) local
74 HTMLInputElement* input = static_cast<HTMLInputElement*>(impl()); local
    [all...]
  /external/antlr/src/org/antlr/runtime/debug/
DebugParser.java 46 public DebugParser(TokenStream input, DebugEventListener dbg, RecognizerSharedState state) {
47 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), state);
51 public DebugParser(TokenStream input, RecognizerSharedState state) {
52 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,null), state);
55 public DebugParser(TokenStream input, DebugEventListener dbg) {
56 this(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), dbg, null)
    [all...]
DebugTreeNodeStream.java 41 protected TreeNodeStream input; field in class:DebugTreeNodeStream
47 public DebugTreeNodeStream(TreeNodeStream input,
50 this.input = input;
51 this.adaptor = input.getTreeAdaptor();
52 this.input.setUniqueNavigationNodes(true);
65 Object node = input.LT(1);
66 input.consume();
71 return input.get(i);
75 Object node = input.LT(i)
    [all...]
DebugTreeParser.java 48 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg, RecognizerSharedState state) {
49 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), state);
53 public DebugTreeParser(TreeNodeStream input, RecognizerSharedState state) {
54 super(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,null), state);
57 public DebugTreeParser(TreeNodeStream input, DebugEventListener dbg) {
58 this(input instanceof DebugTreeNodeStream?input:new DebugTreeNodeStream(input,dbg), dbg, null)
    [all...]
  /frameworks/compile/libbcc/runtime/lib/
ashldi3.c 25 dwords input; local
27 input.all = a;
31 result.s.high = input.s.low << (b - bits_in_word);
37 result.s.low = input.s.low << b;
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
ashlti3.c 27 twords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_dword);
39 result.s.low = input.s.low << b;
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
lshrdi3.c 25 udwords input; local
27 input.all = a;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
lshrti3.c 27 utwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
RegExp_input.js 24 Description: 'Tests RegExps input property'
33 var TITLE = 'RegExp: input';
41 RegExp.input = "abcd12357efg";
43 // RegExp.input = "abcd12357efg"; RegExp.input
44 RegExp.input = "abcd12357efg";
45 testcases[count++] = new TestCase ( SECTION, "RegExp.input = 'abcd12357efg'; RegExp.input",
46 "abcd12357efg", RegExp.input);
48 // RegExp.input = "abcd12357efg"; /\d+/.exec('2345'
    [all...]
  /libcore/luni/src/main/java/java/security/
MessageDigestSpi.java 45 * @param input
49 protected abstract void engineUpdate(byte input);
54 * @param input
57 * the index of the first byte in {@code input} to update from.
59 * the number of bytes in {@code input} to update from.
62 * {@code input}.
64 protected abstract void engineUpdate(byte[] input, int offset, int len);
67 * Updates this {@code MessageDigestSpi} using the given {@code input}.
69 * @param input
72 protected void engineUpdate(ByteBuffer input) {
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
MacSpi.java 68 * @param input
71 protected abstract void engineUpdate(byte input);
75 * buffer {@code input} from the specified {@code offset} and length {@code
78 * @param input
85 protected abstract void engineUpdate(byte[] input, int offset, int len);
92 * @param input
95 protected void engineUpdate(ByteBuffer input) {
96 if (!input.hasRemaining()) {
100 if (input.hasArray()) {
101 bInput = input.array()
    [all...]
  /external/antlr/src/org/antlr/runtime/
MismatchedNotSetException.java 34 public MismatchedNotSetException(BitSet expecting, IntStream input) {
35 super(expecting, input);
MismatchedSetException.java 36 public MismatchedSetException(BitSet expecting, IntStream input) {
37 super(input);
MismatchedTokenException.java 37 public MismatchedTokenException(int expecting, IntStream input) {
38 super(input);
NoViableAltException.java 41 IntStream input)
43 super(input);
50 if ( input instanceof CharStream ) {
  /external/chromium/base/
base64.cc 11 bool Base64Encode(const std::string& input, std::string* output) {
13 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
16 int input_size = static_cast<int>(input.size());
17 int output_size= modp_b64_encode(&(temp[0]), input.data(), input_size);
26 bool Base64Decode(const std::string& input, std::string* output) {
28 temp.resize(modp_b64_decode_len(input.size()));
31 int input_size = static_cast<int>(input.size());
32 int output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
  /external/ppp/pppd/plugins/radius/
md5.c 6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen)
11 MD5_Update (&context, input, inlen);
  /frameworks/base/cmds/input/
Android.mk 7 LOCAL_MODULE := input
11 ALL_PREBUILT += $(TARGET_OUT)/bin/input
12 $(TARGET_OUT)/bin/input : $(LOCAL_PATH)/input | $(ACP)
  /frameworks/base/core/java/android/view/animation/
LinearInterpolator.java 34 public float getInterpolation(float input) {
35 return input;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtPluginTest.java 25 String input = "this is a test"; local
26 assertFalse(AdtPlugin.streamContains(new StringReader(input), "hello"));
27 assertTrue(AdtPlugin.streamContains(new StringReader(input), "this"));
28 assertFalse(AdtPlugin.streamContains(new StringReader(input), "thiss"));
29 assertTrue(AdtPlugin.streamContains(new StringReader(input), "is a"));
37 String input = "this is a test"; local
38 String contents = AdtPlugin.readFile(new StringReader(input));
39 assertEquals(input, contents);
  /external/webkit/Source/JavaScriptCore/wtf/
MD5.h 42 void addBytes(const Vector<uint8_t>& input)
44 addBytes(input.data(), input.size());
46 void addBytes(const uint8_t* input, size_t length);
SHA1.h 42 void addBytes(const Vector<uint8_t>& input)
44 addBytes(input.data(), input.size());
46 void addBytes(const uint8_t* input, size_t length);
  /external/chromium/chrome/browser/net/
quoted_printable.h 18 // Encodes the input string with the quoted-printable encoding.
19 void QuotedPrintableEncode(const std::string& input, std::string* output);
21 // Decodes the quoted-printable input string. Returns true if the input string
24 bool QuotedPrintableDecode(const std::string& input, std::string* output);
29 int IsEOL(const std::string::const_iterator& iter, const std::string& input);
  /external/stlport/test/unit/
divides_test.cpp 30 int input [3] = { 2, 3, 4 }; local
31 int result = accumulate(input, input + 3, 48, divides<int>());

Completed in 783 milliseconds

12 3 4 5 6 7 8 91011>>