HomeSort by relevance Sort by last modified time
    Searched refs:identifier (Results 251 - 275 of 664) sorted by null

<<11121314151617181920>>

  /external/clang/test/Sema/
uninit-variables.c 269 int identifier; local
270 if ((test37_a() && (identifier = 1)) ||
271 (test37_b() && (identifier = 2))) {
272 return identifier; // no-warning
  /external/icu4c/i18n/
identifier_info.h 29 * This class analyzes a possible identifier for script and identifier status. Use it by calling setIdentifierProfile
32 * <li>call getScripts for the specific scripts in the identifier. The identifier contains at least one character in
38 * the identifier.
48 * Create an identifier info object. Subsequently, call setIdentifier(), etc.
65 * Set the identifier profile: the characters that are to be allowed in the identifier.
67 * @param identifierProfile the characters that are to be allowed in the identifier
74 * Get the identifier profile: the characters that are to be allowed in the identifier
    [all...]
  /external/javassist/src/main/javassist/tools/rmi/
AppletServer.java 104 * @return the object identifier
116 eo.identifier = exportedObjects.size() - 1;
127 return eo.identifier;
236 out.writeInt(found.identifier);
247 public int identifier; field in class:ExportedObject
  /external/wpa_supplicant_8/src/eap_common/
eap_pax_common.h 80 const char *identifier,
  /external/wpa_supplicant_8/src/eap_server/
eap_tls_common.h 70 u8 code, u8 identifier);
  /external/wpa_supplicant_8/src/tls/
asn1.h 48 u8 identifier, class, constructed; member in struct:asn1_hdr
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_store.cc 59 const content_settings::ResourceIdentifier& identifier,
78 identifier,
83 identifier,
87 entry->second->settings.GetRuleIterator(type, identifier, NULL));
98 const content_settings::ResourceIdentifier& identifier,
105 map->DeleteValue(primary_pattern, secondary_pattern, type, identifier);
107 map->SetValue(primary_pattern, secondary_pattern, type, identifier,
  /external/chromium_org/chrome/browser/plugins/
plugin_infobar_delegates.cc 48 const std::string& identifier)
50 identifier_(identifier) {
88 const std::string& identifier) {
91 name, identifier)));
116 const std::string& identifier)
117 : PluginInfoBarDelegate(infobar_service, identifier),
192 : PluginInfoBarDelegate(infobar_service, plugin_metadata->identifier()),
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 13 * ::= identifier
26 * ::= identifier
27 * ::= identifier '(' argumentexpr ')' *)
56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *)
58 'Token.Ident id ?? "expected identifier after for";
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
parser.ml 13 * ::= identifier
26 * ::= identifier
27 * ::= identifier '(' argumentexpr ')' *)
56 ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression *)
58 'Token.Ident id ?? "expected identifier after for";
  /external/protobuf/src/google/protobuf/compiler/
parser.cc 319 // identifier.
351 DO(ConsumeString(&syntax, "Expected syntax identifier."));
358 "Unrecognized syntax identifier \"" + syntax + "\". This parser "
536 DO(ConsumeIdentifier(default_value, "Expected identifier."));
625 DO(ConsumeIdentifier(default_value, "Expected identifier."));
639 string identifier; // We parse identifiers into this string. local
645 DO(ConsumeIdentifier(&identifier, "Expected identifier."));
646 name->mutable_name_part()->append(identifier);
651 DO(ConsumeIdentifier(&identifier, "Expected identifier."))
1040 string identifier; local
1069 string identifier; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp 417 void InspectorPageAgent::addScriptToEvaluateOnLoad(ErrorString*, const String& source, String* identifier)
427 *identifier = String::number(++m_lastScriptIdentifier);
428 } while (scripts->find(*identifier) != scripts->end());
429 scripts->setString(*identifier, source);
435 void InspectorPageAgent::removeScriptToEvaluateOnLoad(ErrorString* error, const String& identifier)
438 if (!scripts || scripts->find(identifier) == scripts->end()) {
442 scripts->remove(identifier);
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
parser.ml 13 * ::= identifier
24 * ::= identifier
25 * ::= identifier '(' argumentexpr ')' *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
parser.ml 13 * ::= identifier
24 * ::= identifier
25 * ::= identifier '(' argumentexpr ')' *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
parser.ml 13 * ::= identifier
24 * ::= identifier
25 * ::= identifier '(' argumentexpr ')' *)
  /external/protobuf/python/google/protobuf/
text_format.py 271 identifier = tokenizer.ConsumeIdentifier()
272 enum_value = enum_descriptor.values_by_name.get(identifier, None)
276 enum_descriptor.full_name, identifier))
304 '[a-zA-Z_][0-9a-zA-Z_+-]*|' # an identifier
396 """Consumes protocol message field identifier.
399 Identifier string.
402 ParseError: If an identifier couldn't be consumed.
406 raise self._ParseError('Expected identifier.')
  /external/clang/lib/Parse/
ParsePragma.cpp 246 // pack '(' ('push' | 'pop') [',' identifier] [, integer] ')'
275 } else if (Tok.is(tok::identifier)) {
298 } else if (Tok.is(tok::identifier)) {
370 if (Tok.isNot(tok::identifier)) {
413 if (Tok.isNot(tok::identifier) ||
428 if (Tok.isNot(tok::identifier)) {
486 // #pragma unused(identifier)
510 if (Tok.is(tok::identifier)) {
548 // For each identifier token, insert into the token stream a
549 // annot_pragma_unused token followed by the identifier token
    [all...]
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.cc 38 static void WaitForThreadToProcessRequests(BrowserThread::ID identifier) {
41 BrowserThread::PostTask(identifier, FROM_HERE, new QuitTask2());
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
javascriptlintrules.py 100 identifier = token.string
101 if identifier.endswith('_') and not identifier.endswith('__'):
107 namespace = namespaces_info.GetClosurizedNamespace(identifier)
112 if namespace in provided_namespaces or regex.match(identifier):
113 variable = identifier.split('.')[-1]
116 elif not identifier.endswith('__'):
118 for piece in identifier.split('.'):
123 if token.type == Type.IDENTIFIER:
210 next_token.type == Type.IDENTIFIER an
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
tree.css.js 31 * @param {string} name CSS canvas identifier.
  /external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/
background.js 7 * @param {string} key A unique identifier that the caller can use to locate
  /external/chromium_org/chrome/browser/search/
local_ntp_source.cc 38 int identifier; member in struct:__anon8092::Resource
152 kResources[i].identifier));
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_unittest.cc 33 int identifier,
39 route_id, identifier, markers, success, text, results);
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_controller_impl.h 125 int GetRowHeightFromId(int identifier) const;
138 const std::vector<int>& identifier);
  /external/chromium_org/chrome/renderer/plugins/
plugin_placeholder.h 45 const std::string& identifier,
136 void OnLoadBlockedPlugins(const std::string& identifier);

Completed in 2100 milliseconds

<<11121314151617181920>>