HomeSort by relevance Sort by last modified time
    Searched refs:number (Results 626 - 650 of 1948) sorted by null

<<21222324252627282930>>

  /packages/apps/Gallery2/src/com/android/camera/ui/
TimeIntervalPopup.java 124 int number = (index - 1) % durationCount; local
126 mNumberSpinner.setValue(number);
134 // Set the number pickers and on/off switch to be consistent
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
rawmidi.h 61 void (*get_port_info)(struct snd_rawmidi *rmidi, int number,
91 int number; /* substream number */ member in struct:snd_rawmidi_substream
120 unsigned int device; /* device number */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
rawmidi.h 61 void (*get_port_info)(struct snd_rawmidi *rmidi, int number,
91 int number; /* substream number */ member in struct:snd_rawmidi_substream
120 unsigned int device; /* device number */
  /external/bison/doc/
refcard.tex 204 \errmessage{Illegal number of columns per page}
417 expression : number '$+$' number \{ \$\$ $=$ \$1 $+$ \$3 \}
418 | number '$-$' number \{ \$\$ $=$ \$1 $-$ \$3 \}
419 | number '$/$' number \{ \$\$ $=$ \$1 $/$ \$3 \}
420 | number '$*$' number \{ \$\$ $=$ \$1 $*$ \$3 \}
453 number, {\it x} is a number or \$, {\it line\_spec} one of {\t
    [all...]
  /bionic/libc/kernel/common/linux/raid/
md_u.h 82 int number; member in struct:mdu_disk_info_s
  /development/ndk/platforms/android-3/include/linux/raid/
md_u.h 74 int number; member in struct:mdu_disk_info_s
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
BitSet.pm 30 my $bs = $self->class->new({ number => 0x10 });
  /external/bison/src/
derives.c 73 /* DELTS[RULE] -- There are NRULES rule number to attach to nterms.
80 symbol_number lhs = rules[r].lhs->number;
gram.h 26 NTOKENS is the number of tokens, and NVARS is the number of
27 variables (nonterminals). NSYMS is the total number, ntokens +
30 Each symbol (either token or variable) receives a symbol number.
32 are for variables. Symbol number zero is the end-of-input token.
33 This token is counted in ntokens. The true number of token values
39 all the user rules are 2, 3 etc. Each time a rule number is
43 Internally, we cannot use the number 0 for a rule because for
45 symbols are shorts >= 0, and rule number are stored negative.
46 Therefore 0 cannot be used, since it would be both the rule number
181 rule_number number; member in struct:__anon2340
    [all...]
symtab.h 89 symbol_number number; member in struct:symbol
103 /** Undefined user number. */
112 /* Undefined internal token number. */
133 * Make \c str the literal string alias of \c sym. Copy token number,
134 * symbol number, and type from \c sym to \c str.
  /external/chromium/net/websockets/
websocket_handshake.h 38 // returns number of bytes of the server handshake message.
92 // Set random number generator. |rand| should return a random number
96 void GenerateSecWebSocketKey(uint32* number, std::string* key);
  /external/clang/test/Analysis/
uninit-vals-ps.c 74 extern Boolean CFNumberGetValue(CFNumberRef number, CFNumberType theType, void *valuePtr);
  /external/elfutils/tests/
funcretval.c 83 printf (" {%#x, %#" PRIx64 "}", locops[i].atom, locops[i].number);
  /external/icu4c/common/unicode/
umachine.h 163 # error int64_t is required for decimal format and rule-based number format.
254 /** Number of bytes in a UChar. @stable ICU 2.0 */
  /external/kernel-headers/original/linux/
mca.h 87 int number; member in struct:mca_bus
  /external/kernel-headers/original/linux/raid/
md_u.h 75 int active_disks; /* 2 Number of currently active disks */
76 int working_disks; /* 3 Number of working disks */
77 int failed_disks; /* 4 Number of failed disks */
78 int spare_disks; /* 5 Number of spare disks */
92 int number; member in struct:mdu_disk_info_s
  /external/llvm/lib/Analysis/
PathProfileInfo.cpp 64 // make a reference table to refer to function by number
70 // process path number information from the input file
112 ProfilePath::ProfilePath (unsigned int number, unsigned int count,
114 : _number(number) , _count(count), _countStdDev(countStdDev), _ppi(ppi) {}
251 // return the path based on its number
252 ProfilePath* PathProfileInfo::getPath(unsigned int number) {
253 return _functionPaths[_currentFunction][number];
256 // return the number of paths which a function may potentially execute
271 // returns the total number of paths run in the function
358 // get the number of functions in this profil
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 67 return a->number() < b->number();
71 // Sort the fields of the given Descriptor by number into a new[]'d array
216 printer->Print("public static final int $constant_name$ = $number$;\n",
218 "number", SimpleItoa(descriptor_->field(i)->number()));
335 uint32 tag = WireFormatLite::MakeTag(field->number(),
  /external/qemu/distrib/sdl-1.2.15/src/video/xbios/
SDL_xbios_centscreen.c 56 modeinfo.number = listedmode.mode;
  /external/quake/quake/src/QW/client/
protocol.h 66 #define svc_setview 5 // [short] entity number
143 #define clc_delta 5 // [byte] sequence number, requests delta compression of message
183 // of entity number and 7 bits of flags
254 int number; // edict index member in struct:__anon14204
  /external/v8/src/
messages.js 138 "unexpected_token_number", ["Unexpected number"],
333 * Find a line number given a specific source position.
334 * @param {number} position The source position.
335 * @return {number} 0 if input too small, -1 if input too large,
336 else the line number.
371 * @param {number} position The source position
410 * @param {number} opt_line The line within the source. Default value is 0
411 * @param {number} opt_column The column in within the line. Default value is 0
412 * @param {number} opt_offset_position The offset from the begining of the
454 * @param {number} opt_from_line The first line (zero bound) in the slice
    [all...]
property.h 210 void DescriptorResult(JSObject* holder, PropertyDetails details, int number) {
214 number_ = number;
217 void DescriptorResult(JSObject* holder, Smi* details, int number) {
221 number_ = number;
  /external/v8/test/mjsunit/
array-length-number-conversion.js 30 // it is converted to a number.
36 assertEquals("number", typeof a.length);
binary-op-newspace.js 30 // Check that a mod where the stub code hits a failure in heap number
46 // Check that an add where the stub code hits a failure in heap number
  /external/v8/test/mjsunit/regress/
regress-create-exception.js 43 // garbage collector. 93 is chosen to be a prime number to avoid the
46 j *= 1.123567; // An arbitrary floating point number.

Completed in 642 milliseconds

<<21222324252627282930>>