Searched defs:input (Results 1 - 25 of 544) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dsha1_unittest.cc14 std::string input = "abc"; local
22 std::string output = base::SHA1HashString(input);
29 std::string input = local
38 std::string output = base::SHA1HashString(input);
45 std::string input(1000000, 'a');
53 std::string output = base::SHA1HashString(input);
60 std::string input = "abc"; local
69 base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
70 input.length(), output);
77 std::string input local
[all...]
H A Dstring_tokenizer_unittest.cc15 string input = "this is a test"; local
16 StringTokenizer t(input, " ");
34 string input = "this is a test"; local
35 StringTokenizer t(input, " ");
56 string input = "this is a test"; local
57 StringTokenizer t(input, " ");
85 string input = "this: is, a-test"; local
86 StringTokenizer t(input, ": ,-");
104 string input = "Content-Type: text/html ; charset=UTF-8"; local
105 StringTokenizer t(input, "
153 string input = "foo bar 'hello world' baz"; local
173 string input = "bar 'hello wo"; local
187 string input = "bar 'hel\\"lo\\" wo' baz\\""; local
204 string input = "foo 'don\\\\'t do that'"; local
218 string input = "foo='a, b', bar"; local
[all...]
H A Dbase64.cc11 bool Base64Encode(const std::string& input, std::string* output) { argument
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) { argument
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/libvpx/vp8/encoder/arm/
H A Ddct_arm.c16 void vp8_fast_fdct8x4_armv6(short *input, short *output, int pitch) argument
18 vp8_fast_fdct4x4_armv6(input, output, pitch);
19 vp8_fast_fdct4x4_armv6(input + 4, output + 16, pitch);
/external/stlport/test/unit/
H A Ddivides_test.cpp30 int input [3] = { 2, 3, 4 }; local
31 int result = accumulate(input, input + 3, 48, divides<int>());
H A Dstrstream_test.cpp19 CPPUNIT_TEST(input);
23 void input();
31 void StrstreamTest::input() function in class:StrstreamTest
H A Dtimes_test.cpp31 int input [4] = { 1, 5, 7, 2 }; local
32 int total = accumulate(input, input + 4, 1, multiplies<int>());
H A Dneq_test.cpp33 int input [3] = { 1, 2, 3 }; local
36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
/external/chromium/chrome/browser/safe_browsing/
H A Dchunk_range_unittest.cc94 std::string input = "1-100,398,415,1138-2001,2019"; local
95 EXPECT_TRUE(StringToRanges(input, &ranges));
106 input = "1,2,3,4,5,6,7";
107 EXPECT_TRUE(StringToRanges(input, &ranges));
112 input = "300-3001";
113 EXPECT_TRUE(StringToRanges(input, &ranges));
120 input = "17";
121 EXPECT_TRUE(StringToRanges(input, &ranges));
128 input = "x-y";
129 EXPECT_FALSE(StringToRanges(input,
[all...]
/external/llvm/utils/
H A DDSAclean.py17 input = open(sys.argv[1], 'r') variable
21 buffer = input.readline()
25 buffer = input.readline()
30 buffer = input.readline()
31 input.close()
/external/ppp/pppd/plugins/radius/
H A Dmd5.c6 void rc_md5_calc (unsigned char *output, unsigned char *input, unsigned int inlen) argument
11 MD5_Update (&context, input, inlen);
/external/antlr/src/org/antlr/runtime/
H A DEarlyExitException.java37 public EarlyExitException(int decisionNumber, IntStream input) { argument
38 super(input);
H A DMismatchedNotSetException.java34 public MismatchedNotSetException(BitSet expecting, IntStream input) { argument
35 super(expecting, input);
H A DMismatchedSetException.java36 public MismatchedSetException(BitSet expecting, IntStream input) { argument
37 super(input);
H A DMismatchedTokenException.java37 public MismatchedTokenException(int expecting, IntStream input) { argument
38 super(input);
H A DMismatchedTreeNodeException.java41 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) { argument
42 super(input);
H A DANTLRInputStream.java39 public ANTLRInputStream(InputStream input) throws IOException { argument
40 this(input, null);
43 public ANTLRInputStream(InputStream input, int size) throws IOException { argument
44 this(input, size, null);
47 public ANTLRInputStream(InputStream input, String encoding) throws IOException { argument
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException { argument
52 this(input, size, READ_BUFFER_SIZE, encoding);
55 public ANTLRInputStream(InputStream input, argument
63 isr = new InputStreamReader(input, encodin
[all...]
H A DFailedPredicateException.java42 public FailedPredicateException(IntStream input, argument
46 super(input);
H A DMismatchedRangeException.java36 public MismatchedRangeException(int a, int b, IntStream input) { argument
37 super(input);
H A DMissingTokenException.java38 public MissingTokenException(int expecting, IntStream input, Object inserted) { argument
39 super(expecting, input);
H A DNoViableAltException.java41 IntStream input)
43 super(input);
50 if ( input instanceof CharStream ) {
38 NoViableAltException(String grammarDecisionDescription, int decisionNumber, int stateNumber, IntStream input) argument
H A DUnwantedTokenException.java35 public UnwantedTokenException(int expecting, IntStream input) { argument
36 super(expecting, input);
/external/chromium/chrome/browser/
H A Dspellchecker_platform_engine_unittest.cc46 const char* input; // A string to be tested. member in struct:__anon1565
318 const string16 word(ASCIIToUTF16(kTestCases[i].input));
/external/iproute2/tc/
H A Demp_ematch.y34 %start input
36 input: label
/external/chromium/chrome/browser/autocomplete/
H A Dbuiltin_provider.cc26 void BuiltinProvider::Start(const AutocompleteInput& input, argument
29 if ((input.type() == AutocompleteInput::INVALID) ||
30 (input.type() == AutocompleteInput::FORCED_QUERY) ||
31 (input.type() == AutocompleteInput::QUERY) ||
32 (input.matches_requested() == AutocompleteInput::BEST_MATCH))
36 if (StartsWith(*i, input.text(), false)) {
44 if (match.contents.length() > input.text().length()) {
46 ACMatchClassification(input.text().length(),

Completed in 409 milliseconds

1234567891011>>