Home
last modified time | relevance | path

Searched refs:name_token (Results 1 – 12 of 12) sorted by relevance

/external/ipsec-tools/src/racoon/
Dgssapi.c159 gss_buffer_desc name_token; in gssapi_get_default_name() local
167 name_token.length = asprintf(&buf, "%s@%s", GSSAPI_DEF_NAME, name); in gssapi_get_default_name()
168 name_token.value = buf; in gssapi_get_default_name()
170 maj_stat = gss_import_name(&min_stat, &name_token, in gssapi_get_default_name()
174 maj_stat = gss_release_buffer(&min_stat, &name_token); in gssapi_get_default_name()
179 maj_stat = gss_release_buffer(&min_stat, &name_token); in gssapi_get_default_name()
278 gss_buffer_desc empty, name_token; in gssapi_get_itoken() local
296 name_token.length = iph1->approval->gssid->l; in gssapi_get_itoken()
297 name_token.value = iph1->approval->gssid->v; in gssapi_get_itoken()
298 maj_stat = gss_import_name(&min_stat, &name_token, in gssapi_get_itoken()
[all …]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
Dstatetracker.py177 self.name_token = None
181 self.name_token = _GetNextIdentifierToken(flag_token)
185 if (self.type and self.name_token and
186 tokenutil.Compare(self.name_token, self.type_start_token) > 0):
187 self.name_token = _GetNextIdentifierToken(self.type_end_token)
189 if self.name_token:
190 self.name = self.name_token.string
198 if self.name_token and self.type_end_token:
199 if tokenutil.Compare(self.type_end_token, self.name_token) > 0:
202 search_start_token = self.name_token
[all …]
Djavascriptlintrules.py131 if flag.flag_type == 'param' and flag.name_token is not None:
133 token.attached_object.name_token)
160 elif flag.name_token and flag.type_end_token and tokenutil.Compare(
161 flag.type_end_token, flag.name_token) > 0:
/external/chromium_org/third_party/closure_linter/closure_linter/
Dstatetracker.py202 self.name_token = None
206 self.name_token = _GetNextPartialIdentifierToken(flag_token)
211 if (self.type and self.name_token and
212 tokenutil.Compare(self.name_token, self.type_start_token) > 0):
213 self.name_token = _GetNextPartialIdentifierToken(self.type_end_token)
215 if self.name_token:
216 self.name = self.name_token.string
224 if self.name_token and self.type_end_token:
225 if tokenutil.Compare(self.type_end_token, self.name_token) > 0:
228 search_start_token = self.name_token
[all …]
Djavascriptlintrules.py147 if flag.flag_type == 'param' and flag.name_token is not None:
149 token.attached_object.name_token)
194 elif flag.name_token and flag.type_end_token and tokenutil.Compare(
195 flag.type_end_token, flag.name_token) > 0:
/external/lldb/include/lldb/Interpreter/
DScriptInterpreterPython.h63 GenerateTypeScriptFunction (StringList &input, std::string& output, void* name_token = NULL);
66 GenerateTypeSynthClass (StringList &input, std::string& output, void* name_token = NULL);
69 GenerateTypeSynthClass (const char* oneliner, std::string& output, void* name_token = NULL);
73 GenerateTypeScriptFunction (const char* oneliner, std::string& output, void* name_token = NULL);
DScriptInterpreter.h270 GenerateTypeScriptFunction (const char* oneliner, std::string& output, void* name_token = NULL)
276 GenerateTypeScriptFunction (StringList &input, std::string& output, void* name_token = NULL)
288 GenerateTypeSynthClass (StringList &input, std::string& output, void* name_token = NULL)
294 GenerateTypeSynthClass (const char* oneliner, std::string& output, void* name_token = NULL)
/external/lldb/source/API/
DSBTypeCategory.cpp349 void *name_token = (void*)ConstString(type_name.GetName()).GetCString(); in AddTypeSummary() local
365 … if (interpreter_ptr->GenerateTypeScriptFunction(input, output, name_token) && !output.empty()) in AddTypeSummary()
457 void *name_token = (void*)ConstString(type_name.GetName()).GetCString(); in AddTypeSynthetic() local
473 … if (interpreter_ptr->GenerateTypeSynthClass(input, output, name_token) && !output.empty()) in AddTypeSynthetic()
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
Dparser.cc675 io::Tokenizer::Token name_token = input_->current(); in ParseMessageField() local
714 location.StartAt(name_token); in ParseMessageField()
715 location.EndAt(name_token); in ParseMessageField()
724 location.StartAt(name_token); in ParseMessageField()
725 location.EndAt(name_token); in ParseMessageField()
732 AddError(name_token.line, name_token.column, in ParseMessageField()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc461 io::Tokenizer::Token name_token = input_->current(); in ParseMessageField() local
480 name_token.line, name_token.column); in ParseMessageField()
486 AddError(name_token.line, name_token.column, in ParseMessageField()
/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp744 void* name_token = NULL) in GenerateUniqueName() argument
751 if (!name_token) in GenerateUniqueName()
754 sstr.Printf ("%s_%p", base_name_wanted, name_token); in GenerateUniqueName()
1682 …rPython::GenerateTypeScriptFunction (StringList &user_input, std::string& output, void* name_token) in GenerateTypeScriptFunction() argument
1695 …name(GenerateUniqueName("lldb_autogen_python_type_print_func", num_created_functions, name_token)); in GenerateTypeScriptFunction()
1731 …reterPython::GenerateTypeSynthClass (StringList &user_input, std::string &output, void* name_token) in GenerateTypeSynthClass() argument
1744 …ss_name(GenerateUniqueName("lldb_autogen_python_type_synth_class",num_created_classes,name_token)); in GenerateTypeSynthClass()
2102 …terPython::GenerateTypeScriptFunction (const char* oneliner, std::string& output, void* name_token) in GenerateTypeScriptFunction() argument
2106 return GenerateTypeScriptFunction(input, output, name_token); in GenerateTypeScriptFunction()
2110 …rpreterPython::GenerateTypeSynthClass (const char* oneliner, std::string& output, void* name_token) in GenerateTypeSynthClass() argument
[all …]
/external/chromium_org/v8/src/
Dpreparser.h1950 Token::Value name_token = peek(); in ParsePropertyDefinition() local
1960 checker->CheckProperty(name_token, kValueProperty, in ParsePropertyDefinition()
1981 checker->CheckProperty(name_token, kValueProperty, in ParsePropertyDefinition()
2000 name_token = peek(); in ParsePropertyDefinition()
2017 checker->CheckProperty(name_token, in ParsePropertyDefinition()