Home
last modified time | relevance | path

Searched refs:expand (Results 1 - 25 of 222) sorted by relevance

123456789

/third_party/python/Lib/idlelib/idle_test/
H A Dtest_autoexpand.py79 expand = self.auto_expand.expand_word_event
84 expand('event')
86 expand('event')
88 expand('event')
90 expand('event')
97 expand = self.auto_expand.expand_word_event
103 expand('event')
105 expand('event')
107 expand('event')
109 expand('even
[all...]
/third_party/ntfs-3g/ntfsprogs/
H A Dntfsresize.c150 int expand; member
350 " -x, --expand Expand to full partition\n" in usage()
495 { "expand", no_argument, NULL, 'x' }, in parse_options()
558 opt.expand++; in parse_options()
582 && (opt.expand || opt.info || opt.infombonly)) { in parse_options()
583 printf(NERR_PREFIX "Options --info(-mb-only) and --expand " in parse_options()
587 if (opt.expand && opt.infombonly) { in parse_options()
589 "cannot be used with --expand.\n"); in parse_options()
3071 * Following are functions to expand an NTFS file system
3155 static ATTR_RECORD *get_unnamed_attr(expand_t *expand, ATTR_TYPE argument
3192 read_and_get_attr(expand_t *expand, ATTR_TYPES type, s64 inum, ntfschar *name, int namelen) read_and_get_attr() argument
3224 get_data_size(expand_t *expand, s64 inum) get_data_size() argument
3247 get_mft_bitmap(expand_t *expand) get_mft_bitmap() argument
3298 check_expand_bad_sectors(expand_t *expand, ATTR_RECORD *a) check_expand_bad_sectors() argument
3365 check_expand_constraints(expand_t *expand) check_expand_constraints() argument
3445 can_expand(expand_t *expand, ntfs_volume *vol) can_expand() argument
3581 set_bitmap(expand_t *expand, runlist_element *rl) set_bitmap() argument
3633 write_bootsector(expand_t *expand) write_bootsector() argument
3666 write_bitmap(expand_t *expand) write_bitmap() argument
3711 copy_mftmirr(expand_t *expand) copy_mftmirr() argument
3764 copy_boot(expand_t *expand) copy_boot() argument
3878 expand_index_sizes(expand_t *expand) expand_index_sizes() argument
3901 update_runlist(expand_t *expand, s64 inum, ATTR_RECORD *a, runlist_element *rl) update_runlist() argument
4002 minimal_record(expand_t *expand, MFT_RECORD *mrec) minimal_record() argument
4026 rebase_runlists(expand_t *expand, s64 inum) rebase_runlists() argument
4074 rebase_runlists_meta(expand_t *expand, s64 inum) rebase_runlists_meta() argument
4207 rebase_inode(expand_t *expand, const runlist_element *prl, s64 inum, s64 jnum) rebase_inode() argument
4276 rebase_all_inodes(expand_t *expand) rebase_all_inodes() argument
4349 get_volume_data(expand_t *expand, struct ntfs_device *dev, s32 sector_size) get_volume_data() argument
4402 really_expand(expand_t *expand) really_expand() argument
4487 expand_t expand; expand_to_beginning() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/navigation_bar/
H A Drender_collapsing_navigation_bar.h59 void PrepareTitleSizeTranslate(double expand, double collapse);
60 void PrepareSubtitleSizeTranslate(double expand, double collapse);
61 void PreparePositionTranslate(double expand, double collapse);
71 bool needRestore = LessNotEqual(dy, 0.0) && GreatNotEqual(positionY_.value, positionY_.expand); in NeedShow()
86 ChangedKeyframe(double collapse, double expand, double bigger) in ChangedKeyframe()
87 : collapse(collapse), expand(expand), bigger(bigger), value(expand), expandDis(expand - collapse), in ChangedKeyframe()
88 biggerDis(bigger - expand) in ChangedKeyframe()
92 double expand = 0.0; global() member
[all...]
H A Drender_collapsing_navigation_bar.cpp119 if (GreatNotEqual(positionY_.value, positionY_.expand)) { in PerformLayout()
120 titlePositionY = titlePositionY_.expand + positionY_.value; in PerformLayout()
123 titlePositionY = titlePositionY_.expand - positionY_.value * titlePositionY_.expandDis / positionY_.collapse; in PerformLayout()
168 if (!relateEvent_ && LessNotEqual(positionY_.value, positionY_.expand)) { in OnRelatedScroll()
169 PrepareTitleSizeTranslate(titleSize_.value, titleSize_.expand); in OnRelatedScroll()
170 PrepareSubtitleSizeTranslate(subtitleOpacity_.value, subtitleOpacity_.expand); in OnRelatedScroll()
171 PreparePositionTranslate(positionY_.value, positionY_.expand); in OnRelatedScroll()
185 } else if (GreatOrEqual(positionY_.value, positionY_.expand)) { in OnRelatedScroll()
189 if (LessOrEqual(positionY_.value, positionY_.expand) && relateEvent_) { in OnRelatedScroll()
250 if (GreatNotEqual(positionY_.value, positionY_.expand)) { in ScrollBy()
299 PrepareTitleSizeTranslate(double expand, double collapse) PrepareTitleSizeTranslate() argument
315 PrepareSubtitleSizeTranslate(double expand, double collapse) PrepareSubtitleSizeTranslate() argument
331 PreparePositionTranslate(double expand, double collapse) PreparePositionTranslate() argument
[all...]
/third_party/rust/crates/regex/tests/
H A Dapi.rs175 expand!(expand1, r"(?-u)(?P<foo>\w+)", "abc", "$foo", "abc");
176 expand!(expand2, r"(?-u)(?P<foo>\w+)", "abc", "$0", "abc");
177 expand!(expand3, r"(?-u)(?P<foo>\w+)", "abc", "$1", "abc");
178 expand!(expand4, r"(?-u)(?P<foo>\w+)", "abc", "$$1", "$1");
179 expand!(expand5, r"(?-u)(?P<foo>\w+)", "abc", "$$foo", "$foo");
180 expand!(expand6, r"(?-u)(?P<a>\w+)\s+(?P<b>\d+)", "abc 123", "$b$a", "123abc");
181 expand!(expand7, r"(?-u)(?P<a>\w+)\s+(?P<b>\d+)", "abc 123", "z$bz$az", "z");
182 expand!(
189 expand!(
196 expand!(expand1
[all...]
H A Dmacros_str.rs21 macro_rules! expand { macros
22 ($name:ident, $re:expr, $text:expr, $expand:expr, $expected:expr) => {
29 cap.expand(t!($expand), &mut got);
H A Dmacros_bytes.rs27 macro_rules! expand { macros
28 ($name:ident, $re:expr, $text:expr, $expand:expr, $expected:expr) => {
35 cap.expand(t!($expand), &mut got);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
H A DAVRExpandPseudoInsts.cpp62 template <unsigned OP> bool expand(Block &MBB, BlockIt MBBI);
128 assert(ExpandCount < 10 && "pseudo expand limit reached"); in runOnMachineFunction()
259 bool AVRExpandPseudo::expand<AVR::ADDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
264 bool AVRExpandPseudo::expand<AVR::ADCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
269 bool AVRExpandPseudo::expand<AVR::SUBWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
274 bool AVRExpandPseudo::expand<AVR::SUBIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
321 bool AVRExpandPseudo::expand<AVR::SBCWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
326 bool AVRExpandPseudo::expand<AVR::SBCIWRdK>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
364 bool AVRExpandPseudo::expand<AVR::ANDWRdRr>(Block &MBB, BlockIt MBBI) { in expand() function in __anon24567::AVRExpandPseudo
369 bool AVRExpandPseudo::expand<AV function in __anon24567::AVRExpandPseudo
374 bool AVRExpandPseudo::expand<AVR::ORWRdRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
379 bool AVRExpandPseudo::expand<AVR::ORIWRdK>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
384 bool AVRExpandPseudo::expand<AVR::EORWRdRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
389 bool AVRExpandPseudo::expand<AVR::COMWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
419 bool AVRExpandPseudo::expand<AVR::CPWRdRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
452 bool AVRExpandPseudo::expand<AVR::CPCWRdRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
487 bool AVRExpandPseudo::expand<AVR::LDIWRdK>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
536 bool AVRExpandPseudo::expand<AVR::LDSWRdK>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
580 bool AVRExpandPseudo::expand<AVR::LDWRdPtr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
629 bool AVRExpandPseudo::expand<AVR::LDWRdPtrPi>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
660 bool AVRExpandPseudo::expand<AVR::LDWRdPtrPd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
691 bool AVRExpandPseudo::expand<AVR::LDDWRdPtrQ>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
746 bool AVRExpandPseudo::expand<AVR::LPMWRdZ>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
794 bool AVRExpandPseudo::expand<AVR::LPMWRdZPi>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
892 bool AVRExpandPseudo::expand<AVR::AtomicLoad8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
897 bool AVRExpandPseudo::expand<AVR::AtomicLoad16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
902 bool AVRExpandPseudo::expand<AVR::AtomicStore8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
907 bool AVRExpandPseudo::expand<AVR::AtomicStore16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
912 bool AVRExpandPseudo::expand<AVR::AtomicLoadAdd8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
917 bool AVRExpandPseudo::expand<AVR::AtomicLoadAdd16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
922 bool AVRExpandPseudo::expand<AVR::AtomicLoadSub8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
927 bool AVRExpandPseudo::expand<AVR::AtomicLoadSub16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
932 bool AVRExpandPseudo::expand<AVR::AtomicLoadAnd8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
937 bool AVRExpandPseudo::expand<AVR::AtomicLoadAnd16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
942 bool AVRExpandPseudo::expand<AVR::AtomicLoadOr8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
947 bool AVRExpandPseudo::expand<AVR::AtomicLoadOr16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
952 bool AVRExpandPseudo::expand<AVR::AtomicLoadXor8>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
957 bool AVRExpandPseudo::expand<AVR::AtomicLoadXor16>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
962 bool AVRExpandPseudo::expand<AVR::AtomicFence>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
969 bool AVRExpandPseudo::expand<AVR::STSWKRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1015 bool AVRExpandPseudo::expand<AVR::STWPtrRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1043 bool AVRExpandPseudo::expand<AVR::STWPtrPiRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1077 bool AVRExpandPseudo::expand<AVR::STWPtrPdRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1111 bool AVRExpandPseudo::expand<AVR::STDWPtrQRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1145 bool AVRExpandPseudo::expand<AVR::INWRdA>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1175 bool AVRExpandPseudo::expand<AVR::OUTWARr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1206 bool AVRExpandPseudo::expand<AVR::PUSHWRr>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1231 bool AVRExpandPseudo::expand<AVR::POPWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1248 bool AVRExpandPseudo::expand<AVR::ROLBRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1285 bool AVRExpandPseudo::expand<AVR::RORBRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1335 bool AVRExpandPseudo::expand<AVR::LSLWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1368 bool AVRExpandPseudo::expand<AVR::LSRWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1399 bool AVRExpandPseudo::expand<AVR::RORWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1405 bool AVRExpandPseudo::expand<AVR::ROLWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1411 bool AVRExpandPseudo::expand<AVR::ASRWRd>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1441 template <> bool AVRExpandPseudo::expand<AVR::SEXT>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1500 template <> bool AVRExpandPseudo::expand<AVR::ZEXT>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1537 bool AVRExpandPseudo::expand<AVR::SPREAD>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
1564 bool AVRExpandPseudo::expand<AVR::SPWRITE>(Block &MBB, BlockIt MBBI) { expand() function in __anon24567::AVRExpandPseudo
[all...]
/third_party/ninja/misc/
H A Dninja_syntax_test.py167 self.assertEqual('foo', ninja_syntax.expand('foo', vars))
171 self.assertEqual('fooXYZ', ninja_syntax.expand('foo$xyz', vars))
175 self.assertEqual('XYYY', ninja_syntax.expand('$x$y', vars))
179 self.assertEqual('x y z', ninja_syntax.expand('x$ y$ z', vars))
184 self.assertEqual('a', ninja_syntax.expand('$x', vars))
185 self.assertEqual('b', ninja_syntax.expand('$x', vars, local_vars))
188 self.assertEqual('a b$c', ninja_syntax.expand('a$ b$$c', {}))
/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Drender_list_item_group.h57 void SetExpand(bool expand) in SetExpand() argument
59 if (expand_ != expand) { in SetExpand()
60 expand_ = expand; in SetExpand()
62 UpdateGroupComponentStatus(expand); in SetExpand()
125 void UpdateGroupComponentStatus(bool expand);
127 double GetRotateAngle(bool expand);
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D037-finalize-unexpanded-macro.c1 #define expand(x) expand(x once) macro
3 foo(expand(just))
/foundation/filemanagement/storage_service/services/storage_daemon/libfscrypt/src/
H A Dinit_utils.c112 LOGI("Too many items,expand size"); in SplitStringExt()
114 char **expand = (char **)malloc(sizeof(char*) * itemCounts); in SplitStringExt() local
115 FSCRYPT_ERROR_CHECK(expand != NULL, FreeStringVector(items, count); in SplitStringExt()
116 return NULL, "Failed to expand memory"); in SplitStringExt()
117 int ret = memcpy_s(expand, sizeof(char *) * itemCounts, items, sizeof(char *) * count); in SplitStringExt()
120 FreeStringVector(expand, itemCounts); in SplitStringExt()
121 LOGI("Too many items,expand size"); in SplitStringExt()
124 items = expand; in SplitStringExt()
/third_party/node/deps/minimatch/src/node_modules/brace-expansion/
H A Dindex.js70 // but *only* at the top level, so {},a}b will not expand to anything,
78 return expand(escapeBraces(str), true).map(unescapeBraces);
95 function expand(str, isTop) { function
101 // no need to expand pre, since it is guaranteed to be free of brace-sets
104 ? expand(m.post, false)
121 return expand(str);
133 n = expand(n[0], false).map(embrace);
188 N.push.apply(N, expand(n[j], false));
/third_party/node/deps/npm/node_modules/brace-expansion/
H A Dindex.js70 // but *only* at the top level, so {},a}b will not expand to anything,
78 return expand(escapeBraces(str), true).map(unescapeBraces);
95 function expand(str, isTop) { function
101 // no need to expand pre, since it is guaranteed to be free of brace-sets
104 ? expand(m.post, false)
121 return expand(str);
133 n = expand(n[0], false).map(embrace);
188 N.push.apply(N, expand(n[j], false));
/third_party/pulseaudio/src/tests/
H A Dvolume-ui.py216 vbox.pack_start(channel_labels[i], expand=False, fill=True)
222 vbox.pack_start(channel_scales[i], expand=False, fill=True)
226 vbox.pack_start(channel_dB_labels[i], expand=False, fill=True)
230 vbox.pack_start(value_label, expand=False, fill=True)
235 vbox.pack_start(value_scale, expand=False, fill=True)
238 vbox.pack_start(value_dB_label, expand=False, fill=True)
242 vbox.pack_start(balance_label, expand=False, fill=True)
247 vbox.pack_start(balance_scale, expand=False, fill=True)
251 vbox.pack_start(fade_label, expand=False, fill=True)
256 vbox.pack_start(fade_scale, expand
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
H A Dhash_testing.h197 SpyHashState expand() const { return absl::visit(ExpandVisitor{}, value); } in VerifyTypeImplementsAbslHashCorrectly() function
221 if (auto error = c->back().expand().error()) { in VerifyTypeImplementsAbslHashCorrectly()
237 const SpyHashState expected = c[0].expand(); in VerifyTypeImplementsAbslHashCorrectly()
239 if (v.expand() != v.expand()) { in VerifyTypeImplementsAbslHashCorrectly()
244 if (v.expand() != expected) { in VerifyTypeImplementsAbslHashCorrectly()
254 const SpyHashState c2_hash = c2[0].expand(); in VerifyTypeImplementsAbslHashCorrectly()
/third_party/mesa3d/src/freedreno/computerator/examples/
H A Dtest-opcodes.sh96 # Helper to expand instruction template:
98 expand() { function
111 expand $instr "hr1.x" "hr0.x" "hr0.y" "hr0.z"
113 expand $instr "hr1.y" "r1.x" "r1.y" "r1.z"
116 expand $instr "r2.x" "r1.x" "r1.y" "r1.z"
118 expand $instr "r2.y" "hr0.x" "hr0.y" "hr0.z"
/third_party/node/deps/openssl/openssl/crypto/objects/
H A Dobjects.pl160 sub expand subroutine
173 print expand("#define SN_$Cname\t\t\"$sn{$Cname}\"\n") if $sn{$Cname} ne "";
174 print expand("#define LN_$Cname\t\t\"$ln{$Cname}\"\n") if $ln{$Cname} ne "";
175 print expand("#define NID_$Cname\t\t$nid{$Cname}\n") if $nid{$Cname} ne "";
176 print expand("#define OBJ_$Cname\t\t$obj{$Cname}\n") if $obj{$Cname} ne "";
/third_party/openssl/crypto/objects/
H A Dobjects.pl160 sub expand subroutine
173 print expand("#define SN_$Cname\t\t\"$sn{$Cname}\"\n") if $sn{$Cname} ne "";
174 print expand("#define LN_$Cname\t\t\"$ln{$Cname}\"\n") if $ln{$Cname} ne "";
175 print expand("#define NID_$Cname\t\t$nid{$Cname}\n") if $nid{$Cname} ne "";
176 print expand("#define OBJ_$Cname\t\t$obj{$Cname}\n") if $obj{$Cname} ne "";
/third_party/python/Tools/scripts/
H A Dtexi2html.py395 self.expand(line)
412 self.expand(line[end:])
415 self.expand(text)
432 def expand(self, text): member in TexinfoParser
1001 self.expand(args)
1020 self.expand(args)
1167 self.expand(args)
1199 self.expand(title)
1238 self.expand('@b{%s}' % name)
1239 for word in rest: self.expand(' '
[all...]
/third_party/libunwind/libunwind/src/mi/
H A Dmempool.c88 expand (struct mempool *pool) in expand() function
133 expand (pool); in mempool_init()
145 expand (pool); in mempool_alloc()
/third_party/rust/crates/cxx/macro/src/
H A Dlib.rs33 mod expand; modules
80 expand::bridge(ffi) in bridge()
102 type_id::expand(arg.krate, arg.path).into() in type_id()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DGlobPattern.cpp27 static Expected<BitVector> expand(StringRef S, StringRef Original) { in expand() function
88 Expected<BitVector> BV = expand(Chars.substr(1), Original); in scan()
93 return expand(Chars, Original); in scan()
/third_party/node/deps/openssl/openssl/apps/
H A Dengine.c57 const int expand = 256; in append_buf() local
62 *size = ((len + expand - 1) / expand) * expand; in append_buf()
71 *size = ((len + expand - 1) / expand) * expand; in append_buf()
/third_party/openssl/apps/
H A Dengine.c57 const int expand = 256; in append_buf() local
62 *size = ((len + expand - 1) / expand) * expand; in append_buf()
71 *size = ((len + expand - 1) / expand) * expand; in append_buf()

Completed in 19 milliseconds

123456789