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

<<11121314151617181920>>

  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
Instrument.java 84 final InputStream input = new FileInputStream(src); local
88 return instrumenter.instrumentAll(input, output,
97 input.close();
  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 49 InputStream input = source.openStream(); local
52 p.load(input);
55 input.close();
  /external/snakeyaml/src/test/java/org/pyyaml/
PyCanonicalTest.java 37 InputStream input = new FileInputStream(files[i]); local
38 List<Token> tokens = canonicalScan(input);
39 input.close();
44 private List<Token> canonicalScan(InputStream input) throws IOException {
45 int ch = input.read();
49 ch = input.read();
63 InputStream input = new FileInputStream(files[i]); local
64 List<Event> tokens = canonicalParse(input);
65 input.close();
PyTokensTest.java 126 InputStream input = new FileInputStream(file); local
127 StreamReader reader = new StreamReader(new UnicodeReader(input));
144 input.close();
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
CallbackFilter.java 82 final Frame input = pullInput("frame"); local
85 input.retain();
86 CallbackRunnable uiRunnable = new CallbackRunnable(mListener, this, input, mUserData);
91 mListener.onFrameReceived(this, input, mUserData);
  /libcore/ojluni/src/main/java/javax/crypto/
CipherInputStream.java 75 // the underlying input stream
76 private InputStream input; field in class:CipherInputStream
83 // having reached the end of the underlying input stream
123 int readin = input.read(ibuffer);
157 * <br>Note: if the specified input stream or cipher is
160 * @param is the to-be-processed input stream
165 input = is;
173 * <br>Note: if the specified input stream is null, a
175 * @param is the to-be-processed input stream
179 input = is
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/contactinfo/
ContactPhotoLoader.java 88 InputStream input = context.getContentResolver().openInputStream(contactInfo.photoUri); local
89 if (input == null) {
95 Bitmap bitmap = BitmapFactory.decodeStream(input);
96 input.close();
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
LicensesActivity.java 51 InputStream input = null; local
55 input = getResources().openRawResource(R.raw.licenses);
56 final String license = IOUtils.toString(input, "UTF-8");
63 if (input != null) {
65 input.close();
  /art/compiler/optimizing/
ssa_phi_elimination.cc 78 HPhi* input = raw_input->AsPhi(); local
79 if (input != nullptr && input->IsDead()) {
80 // Input is a dead phi. Revive it and add to the worklist. We make sure
82 DCHECK(ContainsElement(initially_live, input));
83 input->SetLive();
84 worklist.push_back(input);
173 for (HInstruction* input : phi->GetInputs()) {
174 if (input == phi) {
177 candidate = input;
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/net/
base64.c 71 The encoding process represents 24-bit groups of input bits as output
73 24-bit input group is formed by concatenating 3 8-bit input groups.
104 always completed at the end of a quantity. When fewer than 24 input
105 bits are available in an input group, zero bits are added (on the
109 Since all base64 input is an integral number of octets, only the
113 (1) the final quantum of encoding input is an integral
117 (2) the final quantum of encoding input is exactly 8 bits;
120 (3) the final quantum of encoding input is exactly 16 bits;
133 u_char input[3] local
    [all...]
  /build/soong/cmd/zip2zip/
zip2zip.go 34 input = flag.String("i", "", "zip file to read from")
36 sortGlobs = flag.Bool("s", false, "sort matches from each glob (defaults to the order from the input zip file)")
60 fmt.Fprintln(os.Stderr, "Files will be copied with their existing compression from the input zipfile to")
68 if *input == "" || *output == "" {
75 reader, err := zip.OpenReader(*input)
131 input, output := includeSplit(include)
137 if match, err := pathtools.Match(input, file.Name); err != nil {
143 if pathtools.IsGlob(input) {
144 // If the input is a glob then the output is a directory.
187 // Check for duplicate output names, ignoring ones that come from the same input zip entry
33 input = flag.String("i", "", "zip file to read from") var
    [all...]
  /cts/tests/app/src/android/app/cts/
RemoteInputTest.java 33 RemoteInput input = newDataOnlyRemoteInput(); local
35 assertTrue(input.isDataOnly());
36 assertFalse(input.getAllowFreeFormInput());
37 assertTrue(input.getChoices() == null || input.getChoices().length == 0);
38 assertEquals(1, input.getAllowedDataTypes().size());
39 assertTrue(input.getAllowedDataTypes().contains(MIME_TYPE));
43 RemoteInput input = newTextRemoteInput(); local
45 assertFalse(input.isDataOnly());
46 assertTrue(input.getAllowFreeFormInput())
52 RemoteInput input = newChoicesOnlyRemoteInput(); local
64 RemoteInput input = local
79 RemoteInput input = newDataOnlyRemoteInput(); local
90 RemoteInput input = newTextRemoteInput(); local
105 RemoteInput input = newTextAndDataRemoteInput(); local
120 RemoteInput input = newTextAndDataRemoteInput(); local
140 RemoteInput input = newTextAndDataRemoteInput(); local
160 RemoteInput input = newTextAndDataRemoteInput(); local
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountRemovalDummyActivity.java 40 Bundle input = (savedInstanceState == null) ? getIntent().getExtras() : savedInstanceState; local
41 mResponse = input
  /development/samples/training/notify-user/src/com/example/android/pingme/
MainActivity.java 56 String input = editText.getText().toString(); local
58 if(input == null || input.trim().equals("")){
62 seconds = Integer.parseInt(input);
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
base64.c 113 The encoding process represents 24-bit groups of input bits as output
115 24-bit input group is formed by concatenating 3 8-bit input groups.
146 always completed at the end of a quantity. When fewer than 24 input
147 bits are available in an input group, zero bits are added (on the
151 Since all base64 input is an integral number of octets, only the
155 (1) the final quantum of encoding input is an integral
159 (2) the final quantum of encoding input is exactly 8 bits;
162 (3) the final quantum of encoding input is exactly 16 bits;
170 u_char input[3]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Parser.cs 42 public ITokenStream input; field in class:Antlr.Runtime.Parser
44 public Parser(ITokenStream input)
47 TokenStream = input;
50 public Parser(ITokenStream input, RecognizerSharedState state)
53 this.input = input;
58 if (input != null) {
59 input.Seek(0); // rewind the input
63 protected override object GetCurrentInputSymbol(IIntStream input) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 38 public IIntStream input; field in class:Antlr.Runtime.Tree.CommonErrorNode
43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop,
55 this.input = input;
74 j = ((ITokenStream)input).Count;
76 badText = ((ITokenStream)input).ToString(i, j);
78 badText = ((ITreeNodeStream)input).ToString(start, stop);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 44 public ITokenStream input; field in class:Antlr.Runtime.Parser
46 public Parser( ITokenStream input )
50 TokenStream = input;
53 public Parser( ITokenStream input, RecognizerSharedState state )
56 this.input = input;
62 if ( input != null )
64 input.Seek( 0 ); // rewind the input
68 protected override object GetCurrentInputSymbol( IIntStream input )
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonErrorNode.cs 40 public IIntStream input; field in class:Antlr.Runtime.Tree.CommonErrorNode
45 public CommonErrorNode( ITokenStream input, IToken start, IToken stop,
59 this.input = input;
84 j = ( (ITokenStream)input ).Count;
86 badText = ( (ITokenStream)input ).ToString( i, j );
90 badText = ( (ITreeNodeStream)input ).ToString( start, stop );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonErrorNode.java 34 public IntStream input; field in class:CommonErrorNode
39 public CommonErrorNode(TokenStream input, Token start, Token stop,
53 this.input = input;
73 j = ((TokenStream)input).size();
75 badText = ((TokenStream)input).toString(i, j);
78 badText = ((TreeNodeStream)input).toString(start, stop);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCommonToken.h 35 // information about the Token's position in the input stream
46 // the actual input stream this token was found in
47 id<ANTLRCharStream> input; variable
58 @property (retain, getter=getInput, setter=setInput:) id<ANTLRCharStream> input; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCommonToken.h 35 // information about the Token's position in the input stream
46 // the actual input stream this token was found in
47 id<ANTLRCharStream> input; variable
58 @property (retain, getter=getInput, setter=setInput:) id<ANTLRCharStream> input; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonToken.h 35 // information about the Token's position in the input stream
46 // the actual input stream this token was found in
47 id<ANTLRCharStream> input; variable
58 @property (retain, getter=getInput, setter=setInput:) id<ANTLRCharStream> input; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
Main.java 6 CharStream input = new ANTLRFileStream(args[0]); local
7 LangLexer lex = new LangLexer(input);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarDanglingStateMessage.java 62 String input = probe.getInputSequenceDisplay(labels); local
68 st.add("input", input);

Completed in 933 milliseconds

<<11121314151617181920>>