HomeSort by relevance Sort by last modified time
    Searched full:identifier (Results 126 - 150 of 5406) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium/chrome/browser/
shell_integration_mac.mm 19 NSString* identifier = [[NSBundle mainBundle] bundleIdentifier];
20 [[NSWorkspace sharedWorkspace] setDefaultBrowserWithIdentifier:identifier];
26 // Returns true if |identifier| is the bundle id of the default browser.
27 bool IsIdentifierDefaultBrowser(NSString* identifier) {
35 [defaultBrowser caseInsensitiveCompare:identifier];
browser_process_sub_thread.cc 13 BrowserProcessSubThread::BrowserProcessSubThread(BrowserThread::ID identifier)
14 : BrowserThread(identifier) {}
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
CounterContent.h 36 CounterContent(const AtomicString& identifier, EListStyleType style, const AtomicString& separator)
37 : m_identifier(identifier)
43 const AtomicString& identifier() const { return m_identifier; } function in class:WebCore::CounterContent
55 return a.identifier() == b.identifier()
  /external/nist-sip/java/gov/nist/javax/sip/
UtilsExt.java 26 * Generate a call identifier. This is useful when we want to generate a
27 * call identifier in advance of generating a message.
45 * Generate a cryptographically random identifier that can be used to
46 * generate a branch identifier.
49 * used as a branch identifier.
  /hardware/qcom/audio/legacy/libalsa-intf/
alsaucm_test.c 137 " list IDENTIFIER list command\n"
138 " get IDENTIFIER get string value\n"
139 " geti IDENTIFIER get integer value\n"
140 " set IDENTIFIER VALUE set string value\n"
166 char *identifier = NULL, *value = NULL; local
170 identifier = strtok_r(NULL, " ", &value);
187 if ((identifier == NULL) && ((cmd->code != UCM_HELP) &&
191 fprintf(stderr, "NULL pointer encountered. Invalid value for identifier");
206 err = snd_use_case_mgr_open(&uc_mgr, identifier);
208 fprintf(stderr, "%s: error failed to open sound card %s: %d\n", cmd->cmd_str, identifier, err)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t033backtracking.g 115 : {this.isTypeName(this.input.LT(1).getText())}? IDENTIFIER
116 // {System.out.println($IDENTIFIER.text+" is a type");}
125 // : struct_or_union IDENTIFIER? '{' struct_declaration_list '}'
126 // | struct_or_union IDENTIFIER
158 // | 'enum' IDENTIFIER '{' enumerator_list '}'
159 // | 'enum' IDENTIFIER
167 // : IDENTIFIER ('=' constant_expression)?
181 : ( IDENTIFIER
184 $Symbols::types[$IDENTIFIER.text] = true;
185 alert ("define type "+$IDENTIFIER.text)
    [all...]
t026actions.g 19 : IDENTIFIER EOF
30 IDENTIFIER
  /external/antlr/antlr-3.4/runtime/Python/tests/
t033backtracking.g 131 : {self.isTypeName(self.input.LT(1).getText())}? IDENTIFIER
132 // {System.out.println($IDENTIFIER.text+" is a type");}
141 // : struct_or_union IDENTIFIER? '{' struct_declaration_list '}'
142 // | struct_or_union IDENTIFIER
174 // | 'enum' IDENTIFIER '{' enumerator_list '}'
175 // | 'enum' IDENTIFIER
183 // : IDENTIFIER ('=' constant_expression)?
197 : ( IDENTIFIER
200 $Symbols::types.add($IDENTIFIER.text)
201 print "define type "+$IDENTIFIER.tex
    [all...]
t026actions.g 17 : IDENTIFIER EOF
28 IDENTIFIER
  /external/chromium_org/chrome/browser/plugins/
plugin_finder.cc 36 // Gets the full path of the plug-in file as the identifier.
41 // Gets the base name of the file path as the identifier.
85 const std::string& identifier,
102 PluginMetadata* plugin = new PluginMetadata(identifier,
208 installers_.find(metadata_it->second->identifier());
218 const std::string& identifier,
222 PluginMap::const_iterator metadata_it = identifier_plugin_.find(identifier);
229 installers_.find(identifier);
255 const std::string& identifier = plugin_it.key(); local
256 if (plugin_list->GetDictionaryWithoutPathExpansion(identifier, &plugin))
292 std::string identifier = GetIdentifier(plugin); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_token_matcher.py 42 def __init__(self, identifier, block):
43 self.identifier = identifier
48 """Generates optimized identifier matching code."""
55 lengths = list(set([len(c.identifier) for c in cases]))
59 self.inspect_array([c for c in cases if len(c.identifier) == length], range(length))
66 candidates = [pos for pos in pending if all(alternative.isalpha() for alternative in [c.identifier[pos] for c in cases])]
69 return sorted(candidates, key=lambda pos: self.score([c.identifier[pos] for c in cases]))[0]
75 if len(set([c.identifier[pos] for c in cases])) == 1]
77 identifier = cases[0].identifie
    [all...]
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 42 * @param collapsedGroupLayout resource identifier of a layout file that
44 * @param expandedGroupLayout resource identifier of a layout file that
46 * @param childLayout resource identifier of a layout file that defines the
48 * @param lastChildLayout resource identifier of a layout file that defines
69 * @param collapsedGroupLayout resource identifier of a layout file that
71 * @param expandedGroupLayout resource identifier of a layout file that
73 * @param childLayout resource identifier of a layout file that defines the
87 * @param groupLayout resource identifier of a layout file that defines the
89 * @param childLayout resource identifier of a layout file that defines the
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Implicit.java 49 * 1) primitive: only primitive identifier is valid
50 * 2) constructed: only constructed identifier is valid
91 public final boolean checkTag(int identifier) {
94 return id == identifier;
96 return constrId == identifier;
98 return id == identifier || constrId == identifier;
110 // substitute identifier for further decoding
125 //FIXME need another way for specifying identifier to be encoded
  /external/bison/examples/calc++/
calc++-parser.yy 39 %token <sval> IDENTIFIER "identifier"
43 %printer { yyoutput << *$$; } "identifier"
44 %destructor { delete $$; } "identifier"
57 "identifier" ":=" exp
66 | "identifier" { $$ = driver.variables[*$1]; delete $1; }
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/nist/
NISTNamedCurves.java 60 * the passed in object identifier. Null if the curve isn't present.
62 * @param oid an object identifier representing a named curve, if present.
71 * return the object identifier signified by the passed in name. Null
72 * if there is no object identifier associated with name.
74 * @return the object identifier associated with name, if present.
83 * return the named curve name represented by the given object identifier.
  /external/chromium_org/content/browser/
browser_thread_impl.h 17 // Construct a BrowserThreadImpl with the supplied identifier. It is an error
19 explicit BrowserThreadImpl(BrowserThread::ID identifier);
24 BrowserThreadImpl(BrowserThread::ID identifier,
52 BrowserThread::ID identifier,
65 // The identifier of this thread. Only one thread can exist with a given
66 // identifier at a given time.
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ResourceLoadNotifier.h 51 void dispatchWillSendRequest(DocumentLoader*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo& = FetchInitiatorInfo());
52 void dispatchDidReceiveResponse(DocumentLoader*, unsigned long identifier, const ResourceResponse&, ResourceLoader* = 0);
53 void dispatchDidReceiveData(DocumentLoader*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
54 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier, double finishTime);
55 void dispatchDidFail(DocumentLoader*, unsigned long identifier, const ResourceError&);
57 void sendRemainingDelegateMessages(DocumentLoader*, unsigned long identifier, const ResourceResponse&, const char* data, int dataLength, int encodedDataLength, const ResourceError&);
ThreadableLoaderClientWrapper.h 65 void didReceiveResponse(unsigned long identifier, const ResourceResponse& response)
68 m_client->didReceiveResponse(identifier, response);
83 void didFinishLoading(unsigned long identifier, double finishTime)
87 m_client->didFinishLoading(identifier, finishTime);
111 void didReceiveAuthenticationCancellation(unsigned long identifier, const ResourceResponse& response)
114 m_client->didReceiveResponse(identifier, response);
  /external/chromium_org/tools/idl_parser/
idl_ppapi_parser.py 95 """Label : LABEL identifier '{' LabelList '}' ';'"""
99 """LabelList : identifier '=' float LabelCont"""
115 """Struct : STRUCT identifier Inheritance '{' StructMembers '}' ';'"""
125 """StructMember : ExtendedAttributeList Type identifier ';'"""
130 """Typedef : TYPEDEF ExtendedAttributeListNoComments Type identifier ';'"""
135 """Typedef : TYPEDEF ExtendedAttributeListNoComments ReturnType identifier '(' ArgumentList ')' ';'"""
174 """EnumValue : ExtendedAttributeList identifier
175 | ExtendedAttributeList identifier '=' ConstValue"""
242 # [ identifier ]
243 # [ identifier = identifier
    [all...]
  /external/clang/test/SemaCXX/
missing-namespace-qualifier-typo-corrections.cpp 12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}}
32 if (dummy::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}}
33 if (dummy::mreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}} \
35 if (moFoobin()) Double(7); // expected-error{{use of undeclared identifier 'moFoobin'}
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ObjectIdentifier.java 6 public ASN1ObjectIdentifier(String identifier)
8 super(identifier);
  /external/chromium/chrome/browser/userfeedback/proto/
common.proto 26 // Unique identifier of feedback report. If set than only one report
27 // with the same identifier is stored in the system.
  /external/chromium_org/chrome/browser/feedback/proto/
common.proto 27 // Unique identifier of feedback report. If set than only one report
28 // with the same identifier is stored in the system.
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8NPObject.cpp 124 NPIdentifier identifier = getStringIdentifier(functionName); local
125 retval = npObject->_class->invoke(npObject, identifier, npArgs.get(), numArgs, &result);
220 static v8::Handle<v8::Value> npObjectGetProperty(v8::Local<v8::Object> self, NPIdentifier identifier, v8::Local<v8::Value> key, v8::Isolate* isolate)
230 if (npObject->_class->hasProperty && npObject->_class->getProperty && npObject->_class->hasProperty(npObject, identifier)) {
236 if (!npObject->_class->getProperty(npObject, identifier, &result))
250 if (key->IsString() && npObject->_class->hasMethod && npObject->_class->hasMethod(npObject, identifier)) {
254 PrivateIdentifier* id = static_cast<PrivateIdentifier*>(identifier);
258 // Cache templates using identifier as the key.
277 NPIdentifier identifier = getStringIdentifier(name); local
278 v8SetReturnValue(info, npObjectGetProperty(info.Holder(), identifier, name, info.GetIsolate()))
283 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
289 NPIdentifier identifier = getStringIdentifier(name); local
295 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
301 NPIdentifier identifier = getStringIdentifier(name); local
335 NPIdentifier identifier = getStringIdentifier(name); local
342 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
348 NPIdentifier identifier = getStringIdentifier(name); local
354 NPIdentifier identifier = _NPN_GetIntIdentifier(index); local
373 IdentifierRep* identifier = static_cast<IdentifierRep*>(identifiers[i]); local
    [all...]
  /external/clang/test/Index/
code-completion-skip-bodies.cpp 19 // STDERR-NOT: error: use of undeclared identifier 'undeclared1'
20 // STDERR: error: use of undeclared identifier 'undeclared2'

Completed in 687 milliseconds

1 2 3 4 56 7 8 91011>>