Searched defs:input (Results 151 - 175 of 900) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/
H A Dcommon_param_traits_unittest.cc30 GURL input(serialize_cases[i]);
32 IPC::ParamTraits<GURL>::Write(&msg, input);
40 EXPECT_EQ(input.possibly_invalid_spec(), output.possibly_invalid_spec());
41 EXPECT_EQ(input.is_valid(), output.is_valid());
42 EXPECT_EQ(input.scheme(), output.scheme());
43 EXPECT_EQ(input.username(), output.username());
44 EXPECT_EQ(input.password(), output.password());
45 EXPECT_EQ(input.host(), output.host());
46 EXPECT_EQ(input.port(), output.port());
47 EXPECT_EQ(input
119 ListValue input; local
141 DictionaryValue input; local
[all...]
/external/chromium/crypto/
H A Dsecure_hash_default.cc24 virtual void Update(const void* input, size_t len) { argument
25 SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
H A Dsecure_hash_openssl.cc27 virtual void Update(const void* input, size_t len) { argument
28 SHA256_Update(&ctx_, static_cast<const unsigned char*>(input), len);
/external/chromium/net/http/
H A Dhttp_chunked_decoder_unittest.cc24 std::string input = inputs[i]; local
25 int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
28 result.append(input.data(), n);
44 std::string input = inputs[i]; local
45 int n = decoder.FilterBuf(&input[0], static_cast<int>(input.size()));
/external/chromium/net/tools/dnssec_chain_verify/
H A Ddnssec_chain_verify.cc15 "<input file>\n", argv0);
54 char* const input = (char *) malloc(inlen); local
55 if (fread(input, inlen, 1, infile) != 1) {
67 base::StringPiece(input, inlen));
/external/clang/lib/Basic/
H A DObjCRuntime.cpp43 bool ObjCRuntime::tryParse(StringRef input) { argument
45 std::size_t dash = input.rfind('-');
50 if (dash != StringRef::npos && dash + 1 != input.size() &&
51 (input[dash+1] < '0' || input[dash+1] > '9')) {
57 StringRef runtimeName = input.substr(0, dash);
80 StringRef verString = input.substr(dash + 1);
H A DVersionTuple.cpp38 static bool parseInt(StringRef &input, unsigned &value) { argument
40 if (input.empty()) return true;
42 char next = input[0];
43 input = input.substr(1);
47 while (!input.empty()) {
48 next = input[0];
50 input = input.substr(1);
57 bool VersionTuple::tryParse(StringRef input) { argument
[all...]
/external/compiler-rt/lib/ppc/
H A Dfixtfdi.c12 uint64_t __fixtfdi(long double input) argument
14 const DD x = { .ld = input };
20 /* If (1.0 - tiny) <= input < 0x1.0p63: */
H A Dfixunstfdi.c10 uint64_t __fixunstfdi(long double input) argument
12 const DD x = { .ld = input };
17 /* If (1.0 - tiny) <= input < 0x1.0p64: */
/external/compiler-rt/test/Unit/ppc/
H A Dfixtfdi_test.c457 DD input; local
461 input.hi = testCases[i].xhi;
462 input.lo = testCases[i].xlo;
465 computed_result = __fixtfdi(input.ld);
468 printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
/external/compiler-rt/test/timing/
H A Dfloatundidf.c16 uint64_t input[INPUT_SIZE]; local
21 // Initialize the input array with data of various sizes.
23 input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
31 __floatundidf(input[i]);
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DAppDataDirGuesser.java59 File[] guessPath(String input) { argument
61 for (String potential : input.split(":")) {
/external/guava/guava/src/com/google/common/hash/
H A DHashFunction.java31 * <li><b>block of data:</b> the input for a hash function is always, in concept, an
42 * <li><b>pure function:</b> the value produced must depend only on the input bytes, in
64 * input. The true test of a hash function is how it performs on representative
76 * designed to make it as infeasible as possible to reverse-engineer the input that
88 * <h3>Providing input to a hash function</h3>
146 * expected size of the input (in bytes). This is only important for non-streaming hash
147 * functions (hash functions that need to buffer their whole input before processing any
153 * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the
157 HashCode hashLong(long input); argument
160 * Shortcut for {@code newHasher().putBytes(input)
164 hashBytes(byte[] input) argument
174 hashBytes(byte[] input, int off, int len) argument
183 hashString(CharSequence input) argument
190 hashString(CharSequence input, Charset charset) argument
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DMurmur3Hash128Test.java54 private static void assertHash(int seed, byte[] expectedHash, byte[] input) { argument
55 byte[] hash = murmur3_128(seed).newHasher().putBytes(input).hash().asBytes();
61 @Override public byte[] hash(byte[] input, int seed) {
63 Funnels.byteArrayFunnel().funnel(input, hasher);
/external/guava/guava-tests/test/com/google/common/io/
H A DLineBufferTest.java61 private static void bufferHelper(String input, String... expect) argument
74 chunk = Math.max(1, Math.min(chunk, input.length()));
75 assertEquals(expectProcess, bufferHelper(input, chunk));
76 assertEquals(expectRead, readUsingJava(input, chunk));
77 assertEquals(expectRead, readUsingReader(input, chunk, true));
78 assertEquals(expectRead, readUsingReader(input, chunk, false));
82 private static List<String> bufferHelper(String input, int chunk) argument
90 char[] chars = input.toCharArray();
101 private static List<String> readUsingJava(String input, int chunk) argument
103 BufferedReader r = new BufferedReader(getChunkedReader(input, chun
113 readUsingReader(String input, int chunk, boolean asReader) argument
128 getChunkedReadable(String input, int chunk) argument
138 getChunkedReader(String input, final int chunk) argument
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTransformTest.java45 public String apply(Integer input) { argument
46 if (input.intValue() == VALID_INPUT_DATA) {
/external/icu4c/i18n/
H A Dcsmatch.cpp27 void CharsetMatch::set(InputText *input, CharsetRecognizer *cr, int32_t conf) argument
29 textIn = input;
H A Dcsrutf8.cpp30 const uint8_t *input = det->fRawInput; local
36 input[0] == 0xEF && input[1] == 0xBB && input[2] == 0xBF) {
42 int32_t b = input[i];
73 b = input[i];
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInput.java33 package com.jme3.input;
36 * Abstract interface for an input device.
50 * Queries the device for input. All events should be sent to the
53 * @see #setInputListener(com.jme3.input.RawInputListener)
70 * Sets the input listener to receive events from this device. The
H A DJoyInput.java33 package com.jme3.input;
62 * @param inputManager The input manager requesting to load joysticks
H A DMouseInput.java33 package 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
H A DSoftTextDialogInput.java1 package com.jme3.input;
3 import com.jme3.input.controls.SoftTextDialogInputListener;
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DJoyAxisTrigger.java33 package com.jme3.input.controls;
35 import com.jme3.input.Joystick;
H A DJoyButtonTrigger.java33 package com.jme3.input.controls;
35 import com.jme3.input.Joystick;

Completed in 6080 milliseconds

1234567891011>>