HomeSort by relevance Sort by last modified time
    Searched refs:input (Results 451 - 475 of 5918) sorted by null

<<11121314151617181920>>

  /bionic/libc/kernel/uapi/linux/
keychord.h 21 #include <linux/input.h>
  /development/ndk/platforms/android-3/include/linux/
keychord.h 15 #include <linux/input.h>
  /development/ndk/platforms/android-9/arch-x86/include/asm/
alternative_32.h 37 #define alternative_input(oldinstr, newinstr, feature, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c0\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" :: "i" (feature), ##input)
39 #define alternative_io(oldinstr, newinstr, feature, output, input...) asm volatile ("661:\n\t" oldinstr "\n662:\n" ".section .altinstructions,\"a\"\n" " .align 4\n" " .long 661b\n" " .long 663f\n" " .byte %c[feat]\n" " .byte 662b-661b\n" " .byte 664f-663f\n" ".previous\n" ".section .altinstr_replacement,\"ax\"\n" "663:\n\t" newinstr "\n664:\n" ".previous" : output : [feat] "i" (feature), ##input)
  /development/ndk/platforms/android-L/include/linux/
keychord.h 21 #include <linux/input.h>
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedTreeNodeException.as 7 public function MismatchedTreeNodeException(expecting:int, input:TreeNodeStream) {
8 super(input);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.m 83 NSInteger LA1_0 = [input LA:1];
93 if ((([input LA:1] >= '0') && ([input LA:1] <= '9'))) {
94 [input consume];
96 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
109 [ANTLREarlyExitException newException:input decisionNumber:1];
172 NSInteger LA2_0 = [input LA:1];
181 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:2 state:0 stream:input];
  /external/antlr/antlr-3.4/runtime/Perl5/examples/zero-one/
t-error.pl 12 my $input = ANTLR::Runtime::ANTLRStringStream->new({ '01X0' });
13 my $lexer = TLexer->new($input);
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 50 The set of fields needed by an abstract recognizer to recognize input
68 # The index into the input stream where the last error occurred.
122 # the input char buffer. Use setText() or can set this instance var.
153 # Input stream of the recognizer. Must be initialized by a subclass.
154 self.input = None
173 def setInput(self, input):
174 self.input = input
179 reset the parser's state; subclasses must rewinds the input stream
197 def match(self, input, ttype, follow)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
form_data_parser_unittest.cc 128 // POST data input.
158 std::vector<const base::StringPiece*> input; local
162 input.push_back(&kMultipartBytes);
163 EXPECT_TRUE(RunParser(kMultipart, input, &output));
167 input.clear();
168 input.push_back(&kMultipartBytesSplit1);
169 input.push_back(&kMultipartBytesSplit2);
170 EXPECT_TRUE(RunParser(kMultipart, input, &output));
174 input.clear();
175 input.push_back(&kUrlEncodedBytes)
225 std::vector<const base::StringPiece*> input; local
    [all...]
  /external/chromium_org/net/spdy/fuzzing/
hpack_fuzz_wrapper.cc 43 DVLOG(1) << "Reading input from " << file_to_parse;
44 HpackFuzzUtil::Input input; local
46 &input.input));
53 while (HpackFuzzUtil::NextHeaderBlock(&input, &block)) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeMac.css 6 select, input[type="color"][list] {
18 input::-webkit-inner-spin-button {
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
BackgroundHTMLInputStream.h 57 Checkpoint(const SegmentedString& i, size_t n, size_t t) : input(i), numberOfSegmentsAlreadyAppended(n), tokensExtractedSincePreviousCheckpoint(t) { }
59 SegmentedString input; member in struct:WebCore::BackgroundHTMLInputStream::Checkpoint
64 bool isNull() const { return input.isEmpty() && !numberOfSegmentsAlreadyAppended; }
66 void clear() { input.clear(); numberOfSegmentsAlreadyAppended = 0; tokensExtractedSincePreviousCheckpoint = 0;}
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTTokenizer.h 42 explicit VTTTokenizer(const String& input);
51 // ://www.whatwg.org/specs/web-apps/current-work/#preprocessing-the-input-stream
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
PreprocessorTest.h 21 // Preprocesses the input string and verifies that it matches
23 void preprocess(const char* input, const char* expected);
  /external/chromium_org/third_party/brotli/src/woff2/
woff2_compress.cc 27 fprintf(stderr, "One argument, the input filename, must be provided.\n");
35 string input = woff2::GetFileContent(filename); local
37 const uint8_t* input_data = reinterpret_cast<const uint8_t*>(input.data());
38 size_t output_size = woff2::MaxWOFF2CompressedSize(input_data, input.size());
42 if (!woff2::ConvertTTFToWOFF2(input_data, input.size(),
  /external/chromium_org/third_party/libvpx/source/libvpx/
ivfdec.h 19 int file_is_ivf(struct VpxInputContext *input);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
AbstractMessageLite.java 114 public BuilderType mergeFrom(final CodedInputStream input)
116 return mergeFrom(input, ExtensionRegistryLite.getEmptyRegistry());
121 final CodedInputStream input,
128 final CodedInputStream input = data.newCodedInput(); local
129 mergeFrom(input);
130 input.checkLastTagWas(0);
146 final CodedInputStream input = data.newCodedInput(); local
147 mergeFrom(input, extensionRegistry);
148 input.checkLastTagWas(0);
168 final CodedInputStream input local
194 final CodedInputStream input = local
    [all...]
  /external/chromium_org/third_party/skia/include/effects/
SkTileImageFilter.h 20 @param input Input from which the subregion defined by srcRect will be tiled
23 SkImageFilter* input) {
24 return SkNEW_ARGS(SkTileImageFilter, (srcRect, dstRect, input));
35 SkTileImageFilter(const SkRect& srcRect, const SkRect& dstRect, SkImageFilter* input)
36 : INHERITED(input), fSrcRect(srcRect), fDstRect(dstRect) {}
  /external/chromium_org/tools/gn/
label.cc 17 // Be careful not to trim if the input is just "/" or "//".
23 // Given the separate-out input (everything before the colon) in the dep rule,
29 const base::StringPiece& input,
33 if (input.empty()) {
40 if (input[0] == '/' && (input.size() == 1 || input[1] != '/')) {
47 *result = current_dir.ResolveRelativeDir(input);
57 const base::StringPiece& input,
60 if (!input.empty())
    [all...]
  /external/chromium_org/tools/grit/grit/format/
data_pack_unittest.py 31 input = {1: '', 4: 'this is id 4', 6: 'this is id 6', 10: ''}
32 output = data_pack.WriteDataPackToString(input, data_pack.UTF8)
49 inputs = [data_pack.DataPackContents(input, data_pack.UTF8) for input
  /external/chromium_org/tools/grit/grit/gather/
txt_unittest.py 23 input = StringIO.StringIO('Hello there\nHow are you?')
24 gatherer = txt.TxtFile(input)
26 self.failUnless(gatherer.GetText() == input.getvalue())
29 input.getvalue())
  /external/chromium_org/tools/memory_inspector/memory_inspector/frontends/www_content/css/
settings.css 17 #tabs-settings input[type="text"] {
23 #tabs-settings input[type="text"].saved {
  /external/chromium_org/ui/events/ozone/evdev/
touch_event_converter_evdev.cc 9 #include <linux/input.h>
178 void TouchEventConverterEvdev::ProcessInputEvent(const input_event& input) {
179 if (input.type == EV_SYN) {
180 ProcessSyn(input);
183 } else if (input.type == EV_ABS) {
188 ProcessAbs(input);
189 } else if (input.type == EV_KEY) {
190 switch (input.code) {
194 NOTIMPLEMENTED() << "invalid code for EV_KEY: " << input.code;
197 NOTIMPLEMENTED() << "invalid type: " << input.type
    [all...]
  /external/compiler-rt/test/builtins/timing/
ashldi3.c 16 int64_t FUNCTION_NAME(int64_t input, INPUT_TYPE count);
19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = rand() & 0x3f;
36 FUNCTION_NAME(fixedInput, input[i]);
ashrdi3.c 16 int64_t FUNCTION_NAME(int64_t input, INPUT_TYPE count);
19 INPUT_TYPE input[INPUT_SIZE]; local
24 // Initialize the input array with data of various sizes.
26 input[i] = rand() & 0x3f;
36 FUNCTION_NAME(fixedInput, input[i]);

Completed in 1214 milliseconds

<<11121314151617181920>>