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

/external/ipsec-tools/src/racoon/
H A Dgssapi.c159 gss_buffer_desc name_token; local
167 name_token.length = asprintf(&buf, "%s@%s", GSSAPI_DEF_NAME, name);
168 name_token.value = buf;
170 maj_stat = gss_import_name(&min_stat, &name_token,
174 maj_stat = gss_release_buffer(&min_stat, &name_token);
176 gssapi_error(min_stat, LOCATION, "release name_token");
179 maj_stat = gss_release_buffer(&min_stat, &name_token);
181 gssapi_error(min_stat, LOCATION, "release name_token");
278 gss_buffer_desc empty, name_token; local
296 name_token
349 gss_buffer_desc name_token; local
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dstatetracker.py43 name_token: The token specifying the flag name.
177 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) >
[all...]
H A 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/lldb/include/lldb/Interpreter/
H A 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)
H A 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);
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dstatetracker.py43 name_token: The token specifying the flag name.
202 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) >
[all...]
H A 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/source/API/
H A DSBTypeCategory.cpp349 void *name_token = (void*)ConstString(type_name.GetName()).GetCString(); local
365 if (interpreter_ptr->GenerateTypeScriptFunction(input, output, name_token) && !output.empty())
457 void *name_token = (void*)ConstString(type_name.GetName()).GetCString(); local
473 if (interpreter_ptr->GenerateTypeSynthClass(input, output, name_token) && !output.empty())
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.cc675 io::Tokenizer::Token name_token = input_->current(); local
714 location.StartAt(name_token);
715 location.EndAt(name_token);
724 location.StartAt(name_token);
725 location.EndAt(name_token);
732 AddError(name_token.line, name_token.column,
/external/protobuf/src/google/protobuf/compiler/
H A Dparser.cc461 io::Tokenizer::Token name_token = input_->current(); local
480 name_token.line, name_token.column);
486 AddError(name_token.line, name_token.column,
/external/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp744 void* name_token = NULL)
751 if (!name_token)
754 sstr.Printf ("%s_%p", base_name_wanted, name_token);
1682 ScriptInterpreterPython::GenerateTypeScriptFunction (StringList &user_input, std::string& output, void* name_token) argument
1695 std::string auto_generated_function_name(GenerateUniqueName("lldb_autogen_python_type_print_func", num_created_functions, name_token));
1731 ScriptInterpreterPython::GenerateTypeSynthClass (StringList &user_input, std::string &output, void* name_token) argument
1744 std::string auto_generated_class_name(GenerateUniqueName("lldb_autogen_python_type_synth_class",num_created_classes,name_token));
2102 ScriptInterpreterPython::GenerateTypeScriptFunction (const char* oneliner, std::string& output, void* name_token) argument
2106 return GenerateTypeScriptFunction(input, output, name_token);
2110 ScriptInterpreterPython::GenerateTypeSynthClass (const char* oneliner, std::string& output, void* name_token) argument
[all...]
/external/chromium_org/v8/src/
H A Dpreparser.h1950 Token::Value name_token = peek(); local
1960 checker->CheckProperty(name_token, kValueProperty,
1981 checker->CheckProperty(name_token, kValueProperty,
2000 name_token = peek();
2017 checker->CheckProperty(name_token,

Completed in 2198 milliseconds