HomeSort by relevance Sort by last modified time
    Searched full:ident (Results 1 - 25 of 956) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
token-concat.c 2 // RUN: grep 'IDENT.2' %t
4 IDENT.2
  /external/clang/test/CodeGen/
2003-10-28-ident.c 4 #ident "foo"
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/
templateid.cpp 8 template <typename> class Ident {}; // expected-note {{previous use is here}}
11 template <typename> void Ident();
13 class Ident<int> AIdent; // expected-error {{refers to a function template}}
14 class ::Ident<int> AnotherIdent;
17 class Ident<int> GlobalIdent;
18 union Ident<int> GlobalIdent2; // expected-error {{ tag type that does not match }}
  /external/webkit/Source/WebCore/css/
CSSPrimitiveValueMappings.h 55 m_value.ident = CSSValueNone;
58 m_value.ident = CSSValueHidden;
61 m_value.ident = CSSValueInset;
64 m_value.ident = CSSValueGroove;
67 m_value.ident = CSSValueRidge;
70 m_value.ident = CSSValueOutset;
73 m_value.ident = CSSValueDotted;
76 m_value.ident = CSSValueDashed;
79 m_value.ident = CSSValueSolid;
82 m_value.ident = CSSValueDouble
    [all...]
CSSPrimitiveValueCache.cpp 45 PassRefPtr<CSSPrimitiveValue> CSSPrimitiveValueCache::createIdentifierValue(int ident)
47 if (ident <= 0 || ident >= numCSSValueKeywords)
48 return CSSPrimitiveValue::createIdentifier(ident);
51 pair<IdentifierValueCache::iterator, bool> entry = m_identifierValueCache.add(ident, dummyValue);
53 entry.first->second = CSSPrimitiveValue::createIdentifier(ident);
tokenizer.flex 17 ident -?{nmstart}{nmchar}*
45 {ident} {yyTok = IDENT; return yyTok;}
49 "#"{ident} {yyTok = IDSEL; return yyTok;}
81 "@"{ident} {yyTok = ATKEYWORD; return yyTok; }
103 {num}{ident} {yyTok = DIMEN; return yyTok;}
104 {num}{ident}\+ {yyTok = INVALIDDIMEN; return yyTok;}
116 {ident}"(" {yyTok = FUNCTION; return yyTok;}
  /frameworks/base/core/java/android/net/
NetworkTemplate.java 167 public boolean matches(NetworkIdentity ident) {
170 return matchesMobile(ident);
172 return matchesMobile3gLower(ident);
174 return matchesMobile4g(ident);
176 return matchesWifi(ident);
178 return matchesEthernet(ident);
187 private boolean matchesMobile(NetworkIdentity ident) {
188 if (ident.mType == TYPE_WIMAX) {
192 return (contains(DATA_USAGE_NETWORK_TYPES, ident.mType)
193 && Objects.equal(mSubscriberId, ident.mSubscriberId))
    [all...]
NetworkIdentity.java 54 final NetworkIdentity ident = (NetworkIdentity) obj; local
55 return mType == ident.mType && mSubType == ident.mSubType
56 && Objects.equal(mSubscriberId, ident.mSubscriberId)
57 && mRoaming == ident.mRoaming;
  /external/llvm/test/MC/ELF/
ident.s 15 .ident "foo"
16 .ident "bar"
17 .ident "zed"
  /external/chromium/webkit/glue/
cpp_bound_class.cc 89 static bool hasProperty(NPObject *obj, NPIdentifier ident);
93 static bool hasMethod(NPObject *obj, NPIdentifier ident);
98 static bool invoke(NPObject *obj, NPIdentifier ident,
105 static bool getProperty(NPObject *obj, NPIdentifier ident,
111 static bool setProperty(NPObject *obj, NPIdentifier ident,
144 NPIdentifier ident) {
146 return obj->bound_class->HasMethod(ident);
150 NPIdentifier ident) {
152 return obj->bound_class->HasProperty(ident);
155 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident,
257 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); local
287 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); local
301 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); local
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
CppBoundClass.cpp 169 bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident)
172 return obj->boundClass->hasMethod(ident);
175 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
178 return obj->boundClass->hasProperty(ident);
181 bool CppNPObject::invoke(NPObject* npObj, NPIdentifier ident,
186 return obj->boundClass->invoke(ident, arguments, argumentCount, result);
189 bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result)
192 return obj->boundClass->getProperty(ident, result);
195 bool CppNPObject::setProperty(NPObject* npObj, NPIdentifier ident, const NPVariant* value)
198 return obj->boundClass->setProperty(ident, value)
280 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); local
307 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); local
322 NPIdentifier ident = WebBindings::getStringIdentifier(name.c_str()); local
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
NodeConstructors.h 97 inline ResolveNode::ResolveNode(JSGlobalData* globalData, const Identifier& ident, int startOffset)
99 , m_ident(ident)
192 inline DotAccessorNode::DotAccessorNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident)
195 , m_ident(ident)
253 inline FunctionCallResolveNode::FunctionCallResolveNode(JSGlobalData* globalData, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
256 , m_ident(ident)
270 inline FunctionCallDotNode::FunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
274 , m_ident(ident)
279 inline CallFunctionCallDotNode::CallFunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
280 : FunctionCallDotNode(globalData, base, ident, args, divot, startOffset, endOffset
    [all...]
JSParser.cpp 92 ScopeLabelInfo(StringImpl* ident, bool isLoop)
93 : m_ident(ident)
149 bool declareParameter(const Identifier* ident) { return currentScope()->declareParameter(ident); }
363 bool declareVariable(const Identifier* ident)
365 bool isValidStrictMode = m_globalData->propertyNames->eval != *ident && m_globalData->propertyNames->arguments != *ident;
367 m_declaredVariables.add(ident->ustring().impl());
371 void declareWrite(const Identifier* ident)
374 m_writtenVariables.add(ident->impl())
962 const Identifier* ident = m_token.m_data.ident; local
985 const Identifier* ident = m_token.m_data.ident; local
1130 const Identifier* ident = &m_globalData->propertyNames->nullIdentifier; local
1272 const Identifier* ident = m_token.m_data.ident; local
1411 const Identifier* ident = m_token.m_data.ident; local
1705 const Identifier* ident = m_token.m_data.ident; local
1897 const Identifier* ident = m_token.m_data.ident; local
1904 const Identifier* ident = m_token.m_data.ident; local
    [all...]
  /external/clang/test/CodeGenCXX/
apple-kext-linkage.C 27 template <typename X> X ident(X x) { return x; } function
29 int foo(int n) { return ident(n); }
  /external/webkit/Source/WebCore/bridge/c/
c_runtime.h 39 CField(NPIdentifier ident) : _fieldIdentifier(ident) { }
54 CMethod(NPIdentifier ident) : _methodIdentifier(ident) { }
c_class.cpp 86 NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii().data()); local
89 if (_isa->hasMethod && _isa->hasMethod(obj, ident)){
90 Method* aMethod = new CMethod(ident); // deleted in the CClass destructor
107 NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii().data());
110 if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
111 aField = new CField(ident); // deleted in the CClass destructor
  /frameworks/base/services/sensorservice/
SensorFusion.cpp 77 status_t SensorFusion::activate(void* ident, bool enabled) {
80 "SensorFusion::activate(ident=%p, enabled=%d)",
81 ident, enabled);
83 const ssize_t idx = mClients.indexOf(ident);
86 mClients.add(ident);
94 mSensorDevice.activate(ident, mAcc.getHandle(), enabled);
95 mSensorDevice.activate(ident, mMag.getHandle(), enabled);
96 mSensorDevice.activate(ident, mGyro.getHandle(), enabled);
109 status_t SensorFusion::setDelay(void* ident, int64_t ns) {
110 mSensorDevice.setDelay(ident, mAcc.getHandle(), ns)
    [all...]
SensorDevice.cpp 176 status_t SensorDevice::activate(void* ident, int handle, int enabled)
186 "SensorDevice::activate: ident=%p, handle=0x%08x, enabled=%d, count=%d",
187 ident, handle, enabled, info.rates.size());
192 info.rates.indexOfKey(ident));
194 if (info.rates.indexOfKey(ident) < 0) {
195 info.rates.add(ident, DEFAULT_EVENTS_PERIOD);
200 // sensor was already activated for this ident
205 info.rates.indexOfKey(ident));
207 ssize_t idx = info.rates.removeItem(ident);
213 // sensor wasn't enabled for this ident
    [all...]
SensorInterface.cpp 49 status_t HardwareSensor::activate(void* ident, bool enabled) {
50 return mSensorDevice.activate(ident, mSensor.getHandle(), enabled);
53 status_t HardwareSensor::setDelay(void* ident, int handle, int64_t ns) {
54 return mSensorDevice.setDelay(ident, handle, ns);
  /frameworks/base/services/java/com/android/server/net/
NetworkIdentitySet.java 74 for (NetworkIdentity ident : this) {
75 out.writeInt(ident.getType());
76 out.writeInt(ident.getSubType());
77 writeOptionalString(out, ident.getSubscriberId());
78 out.writeBoolean(ident.getRoaming());
NetworkStatsService.java 399 for (NetworkIdentitySet ident : source.keySet()) {
400 if (templateMatches(template, ident)) {
401 final NetworkStatsHistory history = source.get(ident);
424 if (templateMatches(template, key.ident) && key.uid == uid && setMatches
460 for (NetworkIdentitySet ident : source.keySet()) {
461 if (templateMatches(template, ident)) {
462 final NetworkStatsHistory history = source.get(ident);
484 for (NetworkIdentitySet ident : source.keySet()) {
485 if (templateMatches(template, ident)) {
486 final NetworkStatsHistory history = source.get(ident);
761 NetworkIdentitySet ident = mActiveIfaces.get(iface); local
902 final NetworkIdentitySet ident = mActiveIfaces.get(entry.iface); local
932 final NetworkIdentitySet ident = mActiveIfaces.get(entry.iface); local
965 final NetworkIdentitySet ident = mActiveIfaces.get(entry.iface); local
1163 final NetworkIdentitySet ident = new NetworkIdentitySet(in); local
1226 final NetworkIdentitySet ident = new NetworkIdentitySet(in); local
1420 final NetworkIdentitySet ident = mActiveIfaces.get(iface); local
1653 public final NetworkIdentitySet ident; field in class:NetworkStatsService.UidStatsKey
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
many.rs 56 static void drawVU(rs_matrix4x4 *ident) {
60 rsMatrixLoad(&mat1,ident);
101 rsMatrixLoad(&mat1,ident);
119 rsMatrixLoad(&mat1,ident);
185 static void drawWave(rs_matrix4x4 *ident) {
188 rsMatrixLoad(&mat1, ident);
248 static void drawVizLayer(rs_matrix4x4 *ident) {
251 drawVU(ident);
253 drawWave(ident);
256 rsMatrixRotate(ident, 60.f, 0.f, 1.f, 0.f)
    [all...]
  /external/tcpdump/
print-ascii.c 77 hex_and_ascii_print_with_offset(register const char *ident,
101 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
118 ident, oset, HEXDUMP_HEXSTUFF_PER_LINE,
124 hex_and_ascii_print(register const char *ident, register const u_char *cp,
127 hex_and_ascii_print_with_offset(ident, cp, length, 0);
134 hex_print_with_offset(register const char *ident, register const u_char *cp, register u_int length,
144 (void)printf("%s0x%04x: ", ident, oset);
152 (void)printf("%s0x%04x: ", ident, oset);
161 hex_print(register const char *ident, register const u_char *cp, register u_int length)
163 hex_print_with_offset(ident, cp, length, 0)
    [all...]
  /external/dropbear/
signkey.c 92 unsigned char* ident; local
99 ident = buf_getstring(buf, &len);
100 keytype = signkey_type_from_name(ident, len);
101 m_free(ident);
144 unsigned char* ident; local
151 ident = buf_getstring(buf, &len);
152 keytype = signkey_type_from_name(ident, len);
153 m_free(ident);
395 unsigned char * ident = NULL; local
401 ident = buf_getstring(buf, &identlen)
    [all...]
  /external/netcat/scripts/
iscan 2 ## duplicate DaveG's ident-scan thingie using netcat. Oooh, he'll be pissed.
6 ## advantages: runs slower than ident-scan, giving remote inetd less cause

Completed in 2772 milliseconds

1 2 3 4 5 6 7 8 91011>>