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

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugTreeNodeStream.h 35 id<ANTLRTreeNodeStream> input; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonErrorNode.h 40 id<ANTLRIntStream> input; variable
ANTLRDebugTokenStream.h 37 id<ANTLRTokenStream> input; variable
ANTLRDebugTreeNodeStream.h 35 id<ANTLRTreeNodeStream> input; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonErrorNode.h 40 id<ANTLRIntStream> input; variable
63 @property (retain) id<ANTLRIntStream> input; variable
ANTLRDebugTokenStream.h 37 id<ANTLRTokenStream> input; variable
47 - (id<ANTLRTokenStream>) input;
ANTLRDebugTreeNodeStream.h 35 id<ANTLRTreeNodeStream> input; variable
44 - (id<ANTLRTreeNodeStream>) input;
  /external/compiler-rt/lib/builtins/
ashldi3.c 27 dwords input; local
29 input.all = a;
33 result.s.high = input.s.low << (b - bits_in_word);
39 result.s.low = input.s.low << b;
40 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));
ashrdi3.c 27 dwords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
ashrti3.c 27 twords input; local
29 input.all = a;
32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
lshrdi3.c 27 udwords input; local
29 input.all = a;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 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/libchrome/base/
sha1_unittest.cc 15 std::string input = "abc"; local
23 std::string output = base::SHA1HashString(input);
30 std::string input = local
39 std::string output = base::SHA1HashString(input);
46 std::string input(1000000, 'a');
54 std::string output = base::SHA1HashString(input);
61 std::string input = "abc"; local
70 base::SHA1HashBytes(reinterpret_cast<const unsigned char*>(input.c_str()),
71 input.length(), output);
78 std::string input local
    [all...]
  /external/libchrome/base/strings/
string_tokenizer_unittest.cc 16 string input = "this is a test"; local
17 StringTokenizer t(input, " ");
35 string input = "this is a test"; local
36 StringTokenizer t(input, " ");
57 string input = "this is a test"; local
58 StringTokenizer t(input, " ");
86 string input = "this: is, a-test"; local
87 StringTokenizer t(input, ": ,-");
105 string input = "Content-Type: text/html ; charset=UTF-8"; local
106 StringTokenizer t(input, ": ;=")
154 string input = "foo bar 'hello world' baz"; local
174 string input = "bar 'hello wo"; local
188 string input = "bar 'hel\\"lo\\" wo' baz\\""; local
205 string input = "foo 'don\\\\'t do that'"; local
219 string input = "foo='a, b', bar"; local
    [all...]
  /external/libxml2/python/tests/
readernext.py 19 input = libxml2.inputBuffer(f) variable
20 reader = input.newTextReader("test_next")
77 del input
  /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/pdfium/core/fxcrt/xml/
cfx_xmlsyntaxparser_unittest.cpp 15 const char* input = local
31 reinterpret_cast<uint8_t*>(const_cast<char*>(input)), strlen(input));
61 const char* input = local
79 reinterpret_cast<uint8_t*>(const_cast<char*>(input)), strlen(input));
109 const char* input = local
116 reinterpret_cast<uint8_t*>(const_cast<char*>(input)), strlen(input));
144 const char* input local
174 const char* input = local
204 const char* input = local
234 const char* input = local
271 const char* input = local
305 const char* input = local
339 const char* input = local
373 const char* input = local
401 const char* input = local
429 const char* input = local
464 const char* input = local
496 const char* input = local
    [all...]
  /external/pdfium/fxjs/
cjs_publicmethods_unittest.cpp 13 const wchar_t* input; member in struct:__anon31326
48 CJS_PublicMethods::IsNumber(test_data[i].input))
  /external/pdfium/testing/libfuzzer/
pdf_css_fuzzer.cc 14 WideString input = local
17 // If we convert the input into an empty string bail out.
18 if (input.GetLength() == 0)
21 CFX_CSSSyntaxParser parser(input.c_str(), input.GetLength());
pdf_fm2js_fuzzer.cc 19 WideString input = local
21 CFXJSE_FormCalcContext::Translate(input.AsStringView(), &js);
  /external/perfetto/tools/ftrace_proto_gen/
ftrace_proto_gen_unittest.cc 48 FtraceEvent input; local
50 input.name = "the_snake_case_name";
52 GenerateProto(input, &output);
  /external/swiftshader/third_party/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/tensorflow/tensorflow/core/kernels/
matrix_exponential_op.cc 40 const ConstMatrixMap& input = inputs[0]; variable
41 if (input.rows() == 0) return;
44 Matrix tmp = input;
matrix_logarithm_op.cc 40 const ConstMatrixMap& input = inputs[0]; variable
41 if (input.rows() == 0) return;
44 Matrix tmp = input;

Completed in 616 milliseconds

12 3 4 5 6 7 8 91011>>