Searched refs:input (Results 376 - 400 of 1820) sorted by relevance

<<11121314151617181920>>

/external/v8/test/mjsunit/
H A Ddebug-evaluate-locals-optimized-double.js37 var input = [
176 for (var i = 0; i < 4; i++) f(input.length - 1, 11.11, 12.12);
178 f(input.length - 1, 11.11, 12.12);
184 var a0 = input[i].a;
185 var b0 = input[i].b;
192 var a1 = input[i].a;
193 var b1 = input[i].b;
201 var a2 = input[i].a;
202 var b2 = input[i].b;
209 var a3 = input[
[all...]
/external/icu4c/samples/ustring/
H A Dustring.cpp103 static UChar input[]={ 0x0061, 0xd800, 0xdc00, 0xdbff, 0xdfff, 0x0062 }; local
110 printUString("iterate forward through: ", input, LENGTHOF(input));
111 for(i=0; i<LENGTHOF(input); /* U16_NEXT post-increments */) {
119 U16_NEXT(input, i, LENGTHOF(input), c);
127 U16_APPEND(input, i, LENGTHOF(input), 0x0062, isError);
129 printUString("iterate backward through: ", input, LENGTHOF(input));
190 static const UChar input[]={ local
362 static const UChar input[]={ local
[all...]
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
H A DFloatToFixed.java144 private static void convertToFixed(FloatBuffer input, IntBuffer output){ argument
145 if (output.capacity() < input.capacity())
146 throw new RuntimeException("Output must be at least as large as input!");
148 input.clear();
150 for (int i = 0; i < input.capacity(); i++){
151 output.put( (int) (input.get() * (float)(1<<16)) );
156 private static void convertToFloat(IntBuffer input, FloatBuffer output){ argument
157 if (output.capacity() < input.capacity())
158 throw new RuntimeException("Output must be at least as large as input!");
160 input
168 convertToUByte(FloatBuffer input, ByteBuffer output) argument
227 convertNormals(FloatBuffer input, ByteBuffer output) argument
251 convertTexCoords2D(FloatBuffer input, Buffer output) argument
284 convertPositions(FloatBuffer input, BoundingBox bbox, Buffer output) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DProfileGrammarParser.cs58 public ProfileGrammarParser( ITokenStream input )
59 : this( input, new Profiler(null), new RecognizerSharedState() )
62 public ProfileGrammarParser( ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state ) argument
63 : base( input, dbg, state )
75 public ProfileGrammarParser( ITokenStream input, IDebugEventListener dbg ) argument
76 : base( input, dbg )
87 public virtual bool AlreadyParsedRule( IIntStream input, int ruleIndex ) argument
89 ((Profiler)dbg).ExamineRuleMemoization(input, ruleIndex, ProfileGrammarParser.ruleNames[ruleIndex]);
90 return super.AlreadyParsedRule(input, ruleIndex);
93 public virtual void Memoize( IIntStream input, in argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream_unittest.cc65 // run multiple times, once for each item in some input array. TEST_1D
66 // tests all cases in a single input array. TEST_2D tests all
181 ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
184 CodedInputStream coded_input(&input);
191 EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
196 ArrayInputStream input(buffer_, sizeof(buffer_), kBlockSizes_case);
199 CodedInputStream coded_input(&input);
208 EXPECT_EQ(kVarintCases_case.size, input.ByteCount());
216 ArrayInputStream input(buffer_, sizeof(buffer_));
219 CodedInputStream coded_input(&input);
1080 ReallyBigInputStream input; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb68 the index in the input stream of the last error
79 the input stream index at which the token starts
81 the input stream line number at which the token starts
83 the input stream column at which the token starts
344 attr_accessor :input
363 defined?( @input ) or @input = nil
370 # It will also attempt to reset the input stream
371 # via input.reset, but it ignores any errors received
372 # from doing so. Thus the input strea
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMissingTokenException.as7 public function MissingTokenException(expecting:int, input:IntStream, inserted:Object) {
8 super(expecting, input);
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3treeparser.h63 /** Set the input stream and reset the parser
65 void (*setTreeNodeStream) (struct ANTLR3_TREE_PARSER_struct * parser, pANTLR3_COMMON_TREE_NODE_STREAM input);
67 /** Return a pointer to the input stream
/external/bison/build-aux/
H A Dylwrap50 INPUT is the input file
69 # The input.
70 input="$1"
72 case "$input" in
78 input="`pwd`/$input"
110 0) $prog "$input" ;;
111 *) $prog "$@" "$input" ;;
127 # The directory holding the input.
128 input_dir=`echo "$input" | se
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dbuiltin_provider.h27 virtual void Start(const AutocompleteInput& input, bool minimal_changes);
H A Dhistory_contents_provider.cc66 void HistoryContentsProvider::Start(const AutocompleteInput& input, argument
70 if (input.text().empty() || (input.type() == AutocompleteInput::INVALID) ||
79 // TODO(pkasting): http://b/888148 We disallow URL input and "URL-like" input
82 if ((input.type() == AutocompleteInput::URL) ||
83 (((input.type() == AutocompleteInput::REQUESTED_URL) ||
84 (input.type() == AutocompleteInput::UNKNOWN)) &&
85 (input.text().find('.') != string16::npos))) {
90 if (input
265 QueryBookmarks(const AutocompleteInput& input) argument
[all...]
/external/chromium/crypto/
H A Dencryptor_mac.cc41 const std::string& input,
47 // length is never larger than the input length plus the block size."
49 size_t output_size = input.size() + iv_.size();
55 input.data(), input.size(),
40 Crypt(int op, const std::string& input, std::string* output) argument
H A Dsecure_hash.h14 // be used when the full input is not known in advance.
24 virtual void Update(const void* input, size_t len) = 0;
/external/chromium/googleurl/src/
H A Durl_canon_icu.h52 GURL_API virtual void ConvertFromUTF16(const char16* input,
/external/elfutils/config/
H A Dylwrap50 INPUT is the input file
69 # The input.
70 input="$1"
72 case "$input" in
78 input="`pwd`/$input"
110 0) "$prog" "$input" ;;
111 *) "$prog" "$@" "$input" ;;
127 # The directory holding the input.
128 input_dir=`echo "$input" | se
[all...]
/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/icu4c/test/intltest/
H A Dpunyref.c128 const punycode_uint input[],
145 if (basic(input[j])) {
148 (case_flags ? encode_basic(input[j], case_flags[j]) : input[j]);
150 /* else if (input[j] < n) return punycode_bad_input; */
169 /* if (basic(input[j])) continue; */
171 if (input[j] >= n && input[j] < m) m = input[j];
182 /* Punycode does not need to check whether input[
126 punycode_encode( punycode_uint input_length, const punycode_uint input[], const unsigned char case_flags[], punycode_uint *output_length, char output[] ) argument
215 punycode_decode( punycode_uint input_length, const char input[], punycode_uint *output_length, punycode_uint output[], unsigned char case_flags[] ) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DTouchInput.java33 package com.jme3.input;
/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DTouchTrigger.java33 package com.jme3.input.controls;
/external/jmonkeyengine/engine/src/test/jme3test/water/
H A DWaterUI.java35 import com.jme3.input.InputManager;
36 import com.jme3.input.KeyInput;
37 import com.jme3.input.controls.AnalogListener;
38 import com.jme3.input.controls.KeyTrigger;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/
H A DFunctionExecutor.java37 * @param input Text to be escaped.
40 void escape(String name, String input, Appendable output) throws IOException; argument
/external/kernel-headers/original/asm-x86/
H A Dalternative_32.h62 * Alternative inline assembly with input.
71 #define alternative_input(oldinstr, newinstr, feature, input...) \
83 ".previous" :: "i" (feature), ##input)
86 #define alternative_io(oldinstr, newinstr, feature, output, input...) \
98 ".previous" : output : [feat] "i" (feature), ##input)
/external/llvm/test/MC/AsmParser/
H A Ddirective_abort.s2 # RUN: FileCheck -input-file %t %s

Completed in 1716 milliseconds

<<11121314151617181920>>