/third_party/python/Lib/encodings/ |
H A D | idna.py | 14 def nameprep(label): 17 for c in label: 22 label = "".join(newlabel) 25 label = unicodedata.normalize("NFKC", label) 28 for c in label: 41 RandAL = [stringprep.in_table_d1(x) for x in label] 49 if any(stringprep.in_table_d2(x) for x in label): 58 return label 60 def ToASCII(label) [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | labeledStatementWithLabel_es2015.js | 2 label: function fn() { } 3 label: function* gen() { } 4 label: async function gen1() { } 5 label: enum E {} 6 label: interface I {} 7 label: class C { } 8 label: var a = 1; 9 label: let b = 1; 10 label: const c = 1; 12 label [all...] |
H A D | labeledStatementWithLabel_strict.js | 3 label: function fn() { } 4 label: function* gen() { } 5 label: async function gen1() { } 6 label: enum E {} 7 label: interface I {} 8 label: class C { } 9 label: var a = 1; 10 label: let b = 1; 11 label: const c = 1; 13 label [all...] |
H A D | es5-asyncFunctionDoStatements.js | 94 switch (_a.label) {
98 _a.label = 2;
101 _a.label = 3;
110 switch (_a.label) {
113 _a.label = 1;
117 _a.label = 3;
136 switch (_a.label) {
143 _a.label = 3;
152 switch (_a.label) {
159 _a.label [all...] |
H A D | labeledStatementWithLabel.js | 2 label: function fn() { } 3 label: function* gen() { } 4 label: async function gen1() { } 5 label: enum E {} 6 label: interface I {} 7 label: class C { } 8 label: var a = 1; 9 label: let b = 1; 10 label: const c = 1; 12 label [all...] |
H A D | es5-asyncFunctionForOfStatements.js | 97 switch (_b.label) {
103 _b.label = 2;
108 _b.label = 3;
121 switch (_a.label) {
124 _a.label = 1;
131 _a.label = 3;
144 switch (_a.label) {
147 _a.label = 1;
154 _a.label = 3;
167 switch (_b.label) {
[all...] |
H A D | es5-asyncFunctionBinaryExpressions.js | 129 switch (_a.label) {
142 switch (_b.label) {
156 switch (_a.label) {
169 switch (_b.label) {
176 _b.label = 2;
187 switch (_a.label) {
200 switch (_b.label) {
215 switch (_b.label) {
230 switch (_c.label) {
246 switch (_b.label) {
[all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | x86cpuid.pl | 34 &jnc (&label("nocpuid")); 48 &jz (&label("intel")); 59 &jnz (&label("intel")); 65 &jb (&label("intel")); 72 &jb (&label("intel")); 83 &jnc (&label("generic")); 87 &ja (&label("generic")); 89 &jmp (&label("generic")); 94 &jb (&label("nocacheinfo")); 109 &jne (&label("notinte [all...] |
/third_party/openssl/crypto/ |
H A D | x86cpuid.pl | 34 &jnc (&label("nocpuid")); 48 &jz (&label("intel")); 59 &jnz (&label("intel")); 65 &jb (&label("intel")); 72 &jb (&label("intel")); 83 &jnc (&label("generic")); 87 &ja (&label("generic")); 89 &jmp (&label("generic")); 94 &jb (&label("nocacheinfo")); 109 &jne (&label("notinte [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | asm-inline.c | 9 asm goto ("g" :::: label); in foo() 10 asm volatile goto ("vg" :::: label); in foo() 11 asm inline goto ("ig" :::: label); in foo() 12 asm volatile inline goto ("vig" :::: label); in foo() 13 asm inline volatile goto ("ivg" :::: label); in foo() 15 asm goto volatile ("gv" :::: label); in foo() 16 asm goto inline ("gi" :::: label); in foo() 17 asm goto volatile inline ("gvi" :::: label); in foo() 18 asm goto inline volatile ("giv" :::: label); in foo() 19 asm volatile goto inline ("vgi" :::: label); in foo() [all...] |
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
H A D | LabelTests.cpp | 25 std::string label = "test"; in TEST_F() local 33 // The label should be empty if one was not set. in TEST_F() 40 // Test setting a label through API in TEST_F() 43 bindGroup.SetLabel(label.c_str()); in TEST_F() 45 ASSERT_EQ(label, readbackLabel); in TEST_F() 48 // Test setting a label through the descriptor. in TEST_F() 50 descriptor.label = label.c_str(); in TEST_F() 53 ASSERT_EQ(label, readbackLabel); in TEST_F() 59 std::string label in TEST_F() local 91 std::string label = "test"; TEST_F() local 122 std::string label = "test"; TEST_F() local 154 std::string label = "test"; TEST_F() local 183 std::string label = "test"; TEST_F() local 217 std::string label = "test"; TEST_F() local 260 std::string label = "test"; TEST_F() local 293 std::string label = "test"; TEST_F() local 324 std::string label = "test"; TEST_F() local 356 std::string label = "test"; TEST_F() local 396 std::string label = "test"; TEST_F() local 425 std::string label = "test"; TEST_F() local 462 std::string label = "test"; TEST_F() local 502 std::string label = "test"; TEST_F() local 544 std::string label = "test"; TEST_F() local 581 std::string label = "test"; TEST_F() local [all...] |
/third_party/eudev/src/shared/ |
H A D | smack-util.c | 48 int mac_smack_apply(const char *path, const char *label) { in mac_smack_apply() argument 57 if (label) in mac_smack_apply() 58 r = lsetxattr(path, "security.SMACK64", label, strlen(label), 0); in mac_smack_apply() 68 int mac_smack_apply_fd(int fd, const char *label) { in mac_smack_apply_fd() argument 77 if (label) in mac_smack_apply_fd() 78 r = fsetxattr(fd, "security.SMACK64", label, strlen(label), 0); in mac_smack_apply_fd() 88 int mac_smack_apply_ip_out_fd(int fd, const char *label) { in mac_smack_apply_ip_out_fd() argument 97 if (label) in mac_smack_apply_ip_out_fd() 108 mac_smack_apply_ip_in_fd(int fd, const char *label) mac_smack_apply_ip_in_fd() argument 128 mac_smack_apply_pid(pid_t pid, const char *label) mac_smack_apply_pid() argument 171 const char *label; mac_smack_fix() local [all...] |
/third_party/gn/src/gn/ |
H A D | innerapis_publicinfo_generator.cc | 90 const std::string &label, Err *err)
in TraverIncludeDirs() 98 if (!checker->CheckIncludesAbsoluteDepsOther(target, label, real_dir.value(), err)) {
in TraverIncludeDirs() 110 const std::string label = params.label;
in CheckIncludes() local 114 if (!checker->CheckInnerApiIncludesOverRange(target, label, dir, err)) {
in CheckIncludes() 120 if (!checker->CheckIncludesAbsoluteDepsOther(target, label, dir, err)) {
in CheckIncludes() 127 static void SetExternalPublicConfigsKey(const std::string &label, bool is_public)
in SetExternalPublicConfigsKey() argument 132 if (external_public_configs_.find(label) != external_public_configs_.end()) {
in SetExternalPublicConfigsKey() 135 external_public_configs_[label];
in SetExternalPublicConfigsKey() 139 static void SetExternalPublicConfigsValue(const std::string &label, cons argument 89 TraverIncludeDirs(const OhosComponentChecker *checker, const Target *target, const Scope *scope, const std::string &label, Err *err) TraverIncludeDirs() argument 157 GetSingleFlagInfo(const std::string &name, const std::vector<std::string> flags, const std::string &label, bool needSetToConfigs) GetSingleFlagInfo() argument 182 GetFlagsInfo(const Config *config, const std::string &label, bool needSetToConfigs) GetFlagsInfo() argument 203 GetIncludeDirsInfo(const Config *config, const OhosComponentChecker *checker, const std::string &label, const PublicConfigInfoParams ¶ms) GetIncludeDirsInfo() argument 237 std::string label = config.label.GetUserVisibleName(false); GetPublicConfigInfo() local 261 GetPublicConfigsInfo(const Target *target, const std::string &label, Scope *scope, const OhosComponentChecker *checker, Err *err) GetPublicConfigsInfo() argument 278 GetAllDependentConfigsInfo(const Target *target, const std::string &label, Scope *scope, const OhosComponentChecker *checker, Err *err) GetAllDependentConfigsInfo() argument 300 GetPrivateConfigsInfo(const Target *target, const std::string &label, Scope *scope, const OhosComponentChecker *checker, Err *err) GetPrivateConfigsInfo() argument 335 GetPublicDepsInfo(const Target *target, const std::string &label, const OhosComponentChecker *checker, Err *err) GetPublicDepsInfo() argument 381 WritePublicConfigs(const std::string &label, const std::string &info) WritePublicConfigs() argument 400 CheckInExternalPublicConfigsMap(const std::string &label) CheckInExternalPublicConfigsMap() argument 409 FillPublicConfigs(const Config *config, const std::string &label) FillPublicConfigs() argument 419 GetExternalPublicConfigsInfo(const std::string &label) GetExternalPublicConfigsInfo() argument 446 GeneratedExternalPublicConfigs(const std::string &label, const Config *config) GeneratedExternalPublicConfigs() argument 456 GeneratedInnerapiPublicInfo(const Target *target, const Label &label, Scope *scope, const std::string &type, Err *err) GeneratedInnerapiPublicInfo() argument [all...] |
H A D | ohos_components.cc | 47 void OhosComponent::addInnerApi(const std::string &name, const std::string &label) in addInnerApi() argument 49 std::string la = label; in addInnerApi() 50 size_t pos = label.find(":"); in addInnerApi() 52 if ((label[pos - 1]) == '/') { // some are like this : "//components/foo/libfoo/:libfoo" in addInnerApi() 72 bool OhosComponent::isInnerApi(const std::string &label) const in isInnerApi() 74 if (auto res = innerapi_labels_.find(label); res != innerapi_labels_.end()) { in isInnerApi() 87 const std::vector<std::string> OhosComponent::getInnerApiVisibility(const std::string &label) const in getInnerApiVisibility() 89 if (auto res = innerapi_visibility_.find(label); res != innerapi_visibility_.end()) { in getInnerApiVisibility() 161 const OhosComponent *OhosComponentsImpl::matchComponentByLabel(const char *label) in matchComponentByLabel() argument 166 if (!label) { in matchComponentByLabel() 273 const base::Value *label = kv.FindKey("label"); LoadInnerApi() local 391 GetPrivateDepsLabel(const Value &dep, std::string &label, const Label& current_toolchain, int &whole_status, Err *err) const GetPrivateDepsLabel() argument 415 GetExternalDepsLabel(const Value &external_dep, std::string &label, const Label& current_toolchain, int &whole_status, Err *err) const GetExternalDepsLabel() argument 525 GetExternalDepsLabel(const Value &external_dep, std::string &label, const Label& current_toolchain, int &whole_status, Err *err) const GetExternalDepsLabel() argument 538 GetPrivateDepsLabel(const Value &dep, std::string &label, const Label& current_toolchain, int &whole_status, Err *err) const GetPrivateDepsLabel() argument 551 GetSubsystemName(const Value &part_name, std::string &label, Err *err) const GetSubsystemName() argument [all...] |
H A D | ohos_components_checker.h | 49 bool CheckAllDepsConfigs(const Target *target, const std::string &label, Err *err) const;
50 bool CheckInnerApiIncludesOverRange(const Target *target, const std::string &label, const std::string &dir,
52 bool CheckInnerApiPublicDepsInner(const Target *target, const std::string &label, const std::string &deps,
54 bool CheckInnerApiNotLib(const Item *item, const OhosComponent *component, const std::string &label,
56 bool CheckInnerApiNotDeclare(const Item *item, const OhosComponent *component, const std::string &label,
58 bool CheckIncludesAbsoluteDepsOther(const Target *target, const std::string &label, const std::string &includes,
60 bool CheckInnerApiVisibilityDenied(const Item *item, const OhosComponent *component, const std::string &label,
62 bool CheckTargetAbsoluteDepsOther(const Item *item, const OhosComponent *component, const std::string &label,
65 const std::string &label, const std::string &deps, Err *err) const;
78 bool InterceptAllDepsConfig(const Target *target, const std::string &label, Er [all...] |
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
H A D | CharsetSCSU.java | 195 /* label values for supporting behavior similar to goto in C */ 291 int label = 0; in fastSingle() 328 label = EndLoop; in fastSingle() 330 return label; in fastSingle() 336 // label = SingleByteMode; in fastSingle() 352 label = SingleByteMode; in fastSingle() 353 return label; in fastSingle() 357 int label = SingleByteMode; in singleByteMode() 362 label = EndLoop; in singleByteMode() 363 return label; in singleByteMode() [all...] |
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | pgen.py | 42 for label, next in sorted(state.arcs.items()): 43 arcs.append((self.make_label(c, label), dfa.index(next))) 55 for label in sorted(rawfirst): 56 ilabel = self.make_label(c, label) 61 def make_label(self, c, label): 64 if label[0].isalpha(): 66 if label in c.symbol2number: 68 if label in c.symbol2label: 69 return c.symbol2label[label] 71 c.labels.append((c.symbol2number[label], Non [all...] |
/third_party/ltp/testcases/kernel/syscalls/process_madvise/ |
H A D | process_madvise.h | 39 char label[BUFSIZ]; in read_address_mapping() local 60 if (sscanf(line, "%31[^:]: %d", label, &value) > 0) { in read_address_mapping() 61 if (strcmp(label, "Size") == 0) in read_address_mapping() 63 else if (strcmp(label, "Rss") == 0) in read_address_mapping() 65 else if (strcmp(label, "Pss") == 0) in read_address_mapping() 67 else if (strcmp(label, "Shared_Clean") == 0) in read_address_mapping() 69 else if (strcmp(label, "Shared_Dirty") == 0) in read_address_mapping() 71 else if (strcmp(label, "Private_Clean") == 0) in read_address_mapping() 73 else if (strcmp(label, "Private_Dirty") == 0) in read_address_mapping() 75 else if (strcmp(label, "Reference in read_address_mapping() [all...] |
/third_party/node/deps/openssl/openssl/crypto/perlasm/ |
H A D | cbc.pl | 106 &jz(&label("decrypt")); 112 &jz(&label("encrypt_finish")); 149 &jnz(&label("encrypt_loop")); 155 &jz(&label("finish")); 156 &call(&label("PIC_point")); 159 &lea("ecx",&DWP(&label("cbc_enc_jmp_table")."-".&label("PIC_point"),"edx")); 164 #&mov($count,&DWP(&label("cbc_enc_jmp_table"),"",$count,4)); 180 &jmp(&label("ejend")); 213 &jmp(&label("finis [all...] |
/third_party/openssl/crypto/perlasm/ |
H A D | cbc.pl | 106 &jz(&label("decrypt")); 112 &jz(&label("encrypt_finish")); 149 &jnz(&label("encrypt_loop")); 155 &jz(&label("finish")); 156 &call(&label("PIC_point")); 159 &lea("ecx",&DWP(&label("cbc_enc_jmp_table")."-".&label("PIC_point"),"edx")); 164 #&mov($count,&DWP(&label("cbc_enc_jmp_table"),"",$count,4)); 180 &jmp(&label("ejend")); 213 &jmp(&label("finis [all...] |
/third_party/node/test/fixtures/wpt/streams/resources/ |
H A D | rs-test-templates.js | 7 self.templatedRSEmpty = (label, factory) => { 8 test(() => {}, 'Running templatedRSEmpty with ' + label); 21 }, label + ': instances have the correct methods and properties'); 34 }, label + ': calling getReader with invalid arguments should throw appropriate errors'); 37 self.templatedRSClosed = (label, factory) => { 38 test(() => {}, 'Running templatedRSClosed with ' + label); 53 }, label + ': cancel() should return a distinct fulfilled promise each time'); 60 }, label + ': locked should be false'); 67 }, label + ': getReader() should be OK'); 81 }, label [all...] |
/third_party/node/deps/openssl/openssl/crypto/bn/asm/ |
H A D | bn-586.pl | 48 &jnc(&label("maw_non_sse2")); 55 &jmp(&label("maw_sse2_entry")); 118 &jz(&label("maw_sse2_exit")); 121 &jnz(&label("maw_sse2_unrolled")); 134 &jnz(&label("maw_sse2_loop")); 168 &jz(&label("maw_finish")); 190 &jnz(&label("maw_loop")); 195 &jnz(&label("maw_finish2")); # helps branch prediction 196 &jmp(&label("maw_end")); 211 &jz(&label("maw_en [all...] |
/third_party/openssl/crypto/bn/asm/ |
H A D | bn-586.pl | 48 &jnc(&label("maw_non_sse2")); 55 &jmp(&label("maw_sse2_entry")); 118 &jz(&label("maw_sse2_exit")); 121 &jnz(&label("maw_sse2_unrolled")); 134 &jnz(&label("maw_sse2_loop")); 168 &jz(&label("maw_finish")); 190 &jnz(&label("maw_loop")); 195 &jnz(&label("maw_finish2")); # helps branch prediction 196 &jmp(&label("maw_end")); 211 &jz(&label("maw_en [all...] |
/third_party/node/deps/openssl/openssl/engines/asm/ |
H A D | e_padlock-x86.pl | 71 &jnc (&label("noluck")); 75 &jne (&label("zhaoxin")); 77 &jne (&label("noluck")); 79 &jne (&label("noluck")); 80 &jmp (&label("zhaoxinEnd")); 83 &jne (&label("noluck")); 85 &jne (&label("noluck")); 87 &jne (&label("noluck")); 94 &jb (&label("noluck")); 126 &jnz (&label("bswap_loo [all...] |
/third_party/openssl/engines/asm/ |
H A D | e_padlock-x86.pl | 71 &jnc (&label("noluck")); 75 &jne (&label("zhaoxin")); 77 &jne (&label("noluck")); 79 &jne (&label("noluck")); 80 &jmp (&label("zhaoxinEnd")); 83 &jne (&label("noluck")); 85 &jne (&label("noluck")); 87 &jne (&label("noluck")); 94 &jb (&label("noluck")); 126 &jnz (&label("bswap_loo [all...] |