HomeSort by relevance Sort by last modified time
    Searched defs:multiple (Results 1 - 25 of 35) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
PopupMenuClient.h 56 virtual bool multiple() const function in class:blink::PopupMenuClient
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleElementStream.h 32 NSMutableArray *multiple; member in union:__anon4915
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleElementStream.h 32 NSMutableArray *multiple; member in union:__anon4919
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleElementStream.h 32 NSMutableArray *multiple; member in union:__anon4923
  /external/chromium_org/media/cast/net/rtp/
framer_unittest.cc 39 bool multiple = false; local
40 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
47 bool multiple = false; local
54 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
61 EXPECT_TRUE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
63 EXPECT_TRUE(multiple);
74 bool multiple = false; local
82 EXPECT_TRUE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
84 EXPECT_FALSE(multiple);
98 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
114 bool multiple = false; local
210 bool multiple = false; local
240 bool multiple = true; local
275 bool multiple = true; local
290 bool multiple = false; local
314 bool multiple = false; local
341 bool multiple = false; local
407 bool multiple = false; local
456 bool multiple = true; local
    [all...]
  /external/chromium_org/ppapi/shared_impl/
ppb_audio_config_shared.cc 12 // Rounds up requested_size to the nearest multiple of minimum_size.
15 const uint32_t multiple = (requested_size + minimum_size - 1) / minimum_size; local
16 return std::min(minimum_size * multiple,
95 // multiple of the audio hardware's sample frame count.
102 // rate w/ a buffer that's larger than 10ms, choose the nearest multiple of
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLSelectElement.h 64 bool multiple() const { return m_multiple; } function in class:blink::FINAL
HTMLInputElement.cpp 1302 bool HTMLInputElement::multiple() const function in class:blink::HTMLInputElement
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bytecode.h 202 /*@only@*/ /*@null@*/ yasm_expr *multiple; member in struct:yasm_bytecode
204 /** Total length of entire bytecode (not including multiple copies). */
289 /** Set multiple field of a bytecode.
291 * sets that multiple.
293 * \param e multiple (kept, do not free)
460 * Any bytecode multiple is NOT included in the length or spans generation;
518 /** Get the bytecode multiple value as an integer.
520 * \param multiple multiple value (output)
526 int yasm_bc_get_multiple(yasm_bytecode *bc, /*@out@*/ long *multiple,
    [all...]
bc-data.c 56 /*@only@*/ /*@null@*/ yasm_expr *multiple; member in struct:yasm_dataval
142 if (dv->multiple) {
144 if (yasm_value_finalize_expr(&val, dv->multiple, prev_bc, 0))
146 N_("multiple expression too complex"));
149 N_("multiple expression not absolute"));
150 dv->multiple = val.abs;
170 unsigned long multiple; local
196 if (!yasm_dv_get_multiple(dv, &multiple))
197 len *= multiple;
215 unsigned long multiple, i local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
nasm-listfmt.c 206 long multiple; local
216 yasm_bc_get_multiple(bc, &multiple, 1);
217 if (multiple <= 0)
220 size /= multiple;
251 if (multiple > 1) {
  /development/samples/ApiDemos/src/com/example/android/apis/content/
DocumentsSample.java 67 final CheckBox multiple = new CheckBox(context); local
68 multiple.setText("ALLOW_MULTIPLE");
69 view.addView(multiple);
83 if (multiple.isChecked()) {
102 if (multiple.isChecked()) {
121 if (multiple.isChecked()) {
142 if (multiple.isChecked()) {
195 if (multiple.isChecked()) {
  /external/chromium_org/chrome/test/chromedriver/
element_commands.cc 325 bool multiple = false; local
327 session, web_view, element_id, "multiple", "true", &multiple);
330 if (!multiple && paths.size() > 1)
331 return Status(kUnknownError, "the element can not hold multiple files");
  /external/chromium_org/third_party/boringssl/src/crypto/rsa/
rsa.c 618 BIGNUM *totient, *rem, *multiple, *p_plus_q, *p_minus_q; local
644 multiple = BN_CTX_get(ctx);
648 if (totient == NULL || rem == NULL || multiple == NULL || p_plus_q == NULL ||
654 /* ed-1 is a small multiple of ?(n). */
663 * because we discard the remainder. Thus (ed-1)/multiple will be >= n,
668 * multiple * (n - (p+q) + 1) =
669 * multiple*n - multiple*(p+q) + multiple
671 * When we divide by n, the first term becomes multiple and, sinc
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
utf16tst.c 98 UBool multiple; local
106 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
107 if(UTF16_NEED_MULTIPLE_UCHAR(c) != multiple){
utf8tst.c 146 UBool multiple; local
154 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
155 if(UTF8_NEED_MULTIPLE_UCHAR(c) != multiple){
    [all...]
cucdtst.c 1544 UBool multiple; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
utf16tst.c 98 UBool multiple; local
106 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
107 if(UTF16_NEED_MULTIPLE_UCHAR(c) != multiple){
utf8tst.c 146 UBool multiple; local
154 multiple=(UBool)(codepoint[i] == 1 ? FALSE : TRUE);
155 if(UTF8_NEED_MULTIPLE_UCHAR(c) != multiple){
    [all...]
cucdtst.c 1543 UBool multiple; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMenuList.cpp 238 if (multiple()) {
418 bool RenderMenuList::multiple() const function in class:blink::RenderMenuList
420 return selectElement()->multiple();
  /external/e2fsprogs/lib/ext2fs/
icount.c 52 ext2fs_inode_bitmap multiple; member in struct:ext2_icount
82 if (icount->multiple)
83 ext2fs_free_inode_bitmap(icount->multiple);
112 &icount->multiple);
116 icount->multiple = 0;
492 if (icount->multiple &&
493 !ext2fs_test_inode_bitmap2(icount->multiple, ino)) {
521 } else if (icount->multiple) {
524 * inode is set in icount->multiple, then there should
527 if (ext2fs_test_inode_bitmap2(icount->multiple, ino))
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsub-table.hh 1140 MultipleSubst multiple; member in union:OT::SubstLookupSubTable::__anon16480
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parse.c 241 /*@null@*/ const yasm_expr *numitems, *multiple; local
250 multiple = yasm_bc_get_multiple_expr(bc);
251 if (multiple)
253 yasm_expr_copy(multiple),
541 yasm_expr *multiple; local
544 multiple = parse_bexpr(parser_nasm, DV_EXPR);
545 if (!multiple) {
554 yasm_expr_destroy(multiple);
557 yasm_bc_set_multiple(bc, multiple);
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 1140 MultipleSubst multiple; member in union:OT::SubstLookupSubTable::__anon1216
    [all...]

Completed in 998 milliseconds

1 2