Searched defs:input (Results 76 - 100 of 900) sorted by relevance

1234567891011>>

/external/chromium/base/
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/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(),
/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/chrome/common/
H A Dbzip2_unittest.cc22 char input[] = "Test Data, More Test Data, Even More Data of Test"; local
37 stream.next_in = input;
38 stream.avail_in = arraysize(input) - 1;
70 EXPECT_EQ(arraysize(input) - 1, stream.total_out_lo32);
71 EXPECT_STREQ(input, output2);
/external/clang/test/Sema/
H A Dformat-strings-enum-fixed-type.cpp18 void test(TestEnum input) { argument
19 printf("%hhd", input); // expected-warning{{format specifies type 'char' but the argument has type 'TestEnum'}}
22 printf("%hd", input); // no-warning
26 printf("%d", input); // no-warning
29 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has type 'TestEnum'}}
36 void testLong(LongEnum input) { argument
37 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}
40 printf("%lu", input);
48 void testUnderlyingTypedef(ShortEnum input) { argument
49 printf("%hhd", input); // expecte
66 testTypedefChain(ShortEnum2 input) argument
78 testChar(CharEnum input) argument
[all...]
H A Dformat-strings-enum.c19 void test(TestEnum input) { argument
20 printf("%d", input); // no-warning
23 printf("%lld", input); // expected-warning{{format specifies type 'long long' but the argument has type 'TestEnum'}}
30 void testLong(LongEnum input) { argument
31 printf("%u", input); // expected-warning{{format specifies type 'unsigned int' but the argument has type 'LongEnum'}}
34 printf("%lu", input);
H A Duninit-variables-vectors.c8 void test1(float *input) { argument
14 X = _mm_loadu_ps(&input[0]);
/external/guava/guava/src/com/google/common/base/
H A DFunction.java24 * Determines an output value based on an input value.
32 * Returns the result of applying this function to {@code input}. This method is <i>generally
42 * @throws NullPointerException if {@code input} is null and this function does not accept null
45 T apply(@Nullable F input); argument
H A DPredicate.java24 * Determines a true or false value for a given input.
32 * Returns the result of applying this predicate to {@code input}. This method is <i>generally
42 * @throws NullPointerException if {@code input} is null and this predicate does not accept null
45 boolean apply(@Nullable T input); argument
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAsyncFunction.java34 * input}. The output {@code Future} need not be {@linkplain Future#isDone
40 ListenableFuture<O> apply(I input) throws Exception; argument
/external/guava/guava-tests/test/com/google/common/hash/
H A DMessageDigestHashFunctionTest.java28 private static void assertMessageDigestHashing(byte[] input, String algorithmName) argument
31 MessageDigest.getInstance(algorithmName).digest(input),
32 new MessageDigestHashFunction(algorithmName).hashBytes(input).asBytes());
/external/jmonkeyengine/engine/src/android/com/jme3/input/android/
H A DAndroidTouchInputListener.java1 package com.jme3.input.android;
5 import com.jme3.input.RawInputListener;
6 import com.jme3.input.event.TouchEvent;
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DActionListener.java33 package com.jme3.input.controls;
36 * <code>ActionListener</code> is used to receive input events in "digital" style.
41 * When an action listener is registered to a natively digital input, such as a button,
51 * Called when an input to which this listener is registered to is invoked.
H A DAnalogListener.java33 package 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;
H A DSoftTextDialogInputListener.java32 package com.jme3.input.controls;
H A DTouchListener.java33 package com.jme3.input.controls;
35 import com.jme3.input.event.TouchEvent;
H A DTouchTrigger.java33 package com.jme3.input.controls;
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
H A DDummyMouseInput.java33 package com.jme3.input.dummy;
35 import com.jme3.input.MouseInput;
39 * input events.
/external/jmonkeyengine/engine/src/test/jme3test/input/
H A DTestControls.java33 package jme3test.input;
36 import com.jme3.input.KeyInput;
37 import com.jme3.input.MouseInput;
38 import com.jme3.input.controls.ActionListener;
39 import com.jme3.input.controls.AnalogListener;
40 import com.jme3.input.controls.KeyTrigger;
41 import com.jme3.input.controls.MouseAxisTrigger;
/external/openfst/src/include/fst/
H A Dsymbol-table-ops.h39 bool input) {
46 typename Arc::Label sym = (input) ? aiter.Value().ilabel :
88 SymbolTable *FstReadSymbols(const string &filename, bool input);
38 PruneSymbolTable(const Fst<Arc> &fst, const SymbolTable &syms, bool input) argument
/external/oprofile/libregex/tests/
H A Djava_test.cpp26 void check_result(string const & input, string const & output, argument
30 cerr << "for:\n\"" << input << "\"\n"
/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);

Completed in 815 milliseconds

1234567891011>>