Searched defs:ID (Results 101 - 125 of 715) sorted by relevance

1234567891011>>

/external/skia/include/lazy/
H A DSkImageCache.h22 typedef intptr_t ID; typedef in class:SkImageCache
28 * @param ID Output parameter which must not be NULL. On success, ID will be set to a value
30 * in SkImageCache. On failure, ID is unchanged.
32 * releaseCache is called with ID.
34 virtual void* allocAndPinCache(size_t bytes, ID*) = 0;
38 * when releaseCache was last called for the same ID.
48 * same ID.
54 * Re-request the memory associated with ID and pin it so that it will not be reclaimed until
55 * the next call to releaseCache with the same ID
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreePatternLexer.cs40 public const int ID = 3; field in class:Antlr.Runtime.Tree.TreePatternLexer
58 /** <summary>Set when token type is ID or ARG (name mimics Java's StreamTokenizer)</summary> */
84 return ID;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCLexer.h35 #define ID 4 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
H A DSymbolTableParser.h20 #define ID 4 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangDumpDecl.h33 #define ID 6 macro
/external/chromium_org/third_party/icu/source/i18n/
H A Dtransreg.h33 * A TransliteratorAlias object is returned by get() if the given ID
52 TransliteratorAlias(const UnicodeString& ID, const UnicodeString& idBlocks,
103 // Here ID is the ID, aliasID is the idBlock, trans is the
108 // Here ID is the ID, aliasID is the rules string.
110 UnicodeString ID; member in class:TransliteratorAlias
160 * Given a simple ID (forward direction, no inline filter, not
164 * Return a non-NULL aliasReturn value if the ID points to an alias.
168 * @param ID th
[all...]
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dtimezone.h60 * with a time zone ID. For instance, the time zone ID for the US Pacific
70 * supported ID to get a <code>TimeZone</code>.
72 * supported IDs, then you can create a custom time zone ID with
82 * time zone ID. The <code>TimeZone</code> that is returned
83 * when you specify a custom time zone ID does not include
96 * <li>An ID. This is a text string that uniquely identifies the time zone.</li>
99 * (Only the ID is actually implemented in TimeZone; subclasses of TimeZone may handle
105 * world, each with a unique ID. Each ID consist
768 setID(const UnicodeString& ID) argument
[all...]
H A Dtranslit.h190 * <em>ID</em>. IDs follow the format <em>source-destination</em>,
211 * transliterator given its ID. Valid IDs may be enumerated using
213 * multiple calls to {@link #createInstance } with the same ID will
219 * acts a template; future calls to {@link #createInstance } with the ID
248 UnicodeString ID; member in class:Transliterator
296 * invoked, it will be passed the ID string that is being
300 * functions that are registered to more than one ID may use the
301 * ID or the context parameter to parameterize the transliterator
303 * @param ID the string identifier for this transliterator
305 * later passed to the factory function when an ID matchin
[all...]
/external/chromium_org/third_party/skia/src/lazy/
H A DSkPurgeableImageCache.cpp38 void* SkPurgeableImageCache::allocAndPinCache(size_t bytes, intptr_t* ID) { argument
53 SkASSERT(ID != NULL);
54 *ID = reinterpret_cast<intptr_t>(block);
57 int index = this->findRec(*ID);
59 fRecs.insert(~index, 1, ID);
64 void* SkPurgeableImageCache::pinCache(intptr_t ID, SkImageCache::DataStatus* status) {
65 SkASSERT(ID != SkImageCache::UNINITIALIZED_ID);
68 SkASSERT(this->findRec(ID) >= 0);
69 SkPurgeableMemoryBlock* block = reinterpret_cast<SkPurgeableMemoryBlock*>(ID);
73 this->removeRec(ID);
96 releaseCache(intptr_t ID) argument
105 throwAwayCache(intptr_t ID) argument
151 removeRec(intptr_t ID) argument
[all...]
/external/clang/include/clang/Driver/
H A DOptions.h36 enum ID { enum in namespace:clang::driver::options
37 OPT_INVALID = 0, // This is not an option ID.
38 #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \
39 HELPTEXT, METAVAR) OPT_##ID,
/external/clang/lib/AST/
H A DDeclFriend.cpp58 FriendDecl *FriendDecl::CreateDeserialized(ASTContext &C, unsigned ID, argument
62 void *Mem = AllocateDeserializedDecl(C, ID, Size);
H A DExternalASTSource.cpp25 Decl *ExternalASTSource::GetExternalDecl(uint32_t ID) { argument
29 Selector ExternalASTSource::GetExternalSelector(uint32_t ID) { argument
/external/clang/lib/Analysis/
H A DCocoaConventions.cpp77 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); local
81 if (!ID->hasDefinition())
84 for ( ; ID ; ID = ID->getSuperClass())
85 if (ID->getIdentifier()->getName() == "NSObject")
/external/clang/test/Lexer/
H A Dcxx0x_keyword_as_cxx98.cpp16 #define ID(X) X macro
17 extern int ID(decltype); // expected-warning {{'decltype' is a keyword in C++11}}
/external/clang/tools/libclang/
H A DSimpleFormatContext.h58 std::string getRewrittenText(FileID ID) { argument
61 Rewrite.getEditBuffer(ID).write(OS);
/external/icu4c/i18n/
H A Dtransreg.h33 * A TransliteratorAlias object is returned by get() if the given ID
52 TransliteratorAlias(const UnicodeString& ID, const UnicodeString& idBlocks,
103 // Here ID is the ID, aliasID is the idBlock, trans is the
108 // Here ID is the ID, aliasID is the rules string.
110 UnicodeString ID; member in class:TransliteratorAlias
160 * Given a simple ID (forward direction, no inline filter, not
164 * Return a non-NULL aliasReturn value if the ID points to an alias.
168 * @param ID th
[all...]
/external/icu4c/i18n/unicode/
H A Dtimezone.h61 * with a time zone ID. For instance, the time zone ID for the US Pacific
71 * if a time zone ID is supported or not. You can then choose a
72 * supported ID to get a <code>TimeZone</code>.
74 * supported IDs, then you can create a custom time zone ID with
84 * time zone ID. The <code>TimeZone</code> that is returned
85 * when you specify a custom time zone ID uses the specified
88 * time zone ID to create a TimeZone representing 14 hours ahead
91 * normalize a custom time zone ID.
103 * <li>An ID
892 setID(const UnicodeString& ID) argument
[all...]
H A Dtranslit.h190 * <em>ID</em>. IDs follow the format <em>source-destination</em>,
211 * transliterator given its ID. Valid IDs may be enumerated using
213 * multiple calls to {@link #createInstance } with the same ID will
219 * acts a template; future calls to {@link #createInstance } with the ID
248 UnicodeString ID; member in class:Transliterator
298 * invoked, it will be passed the ID string that is being
302 * functions that are registered to more than one ID may use the
303 * ID or the context parameter to parameterize the transliterator
305 * @param ID the string identifier for this transliterator
307 * later passed to the factory function when an ID matchin
[all...]
/external/llvm/include/llvm/Analysis/
H A DDOTGraphTraitsPass.h25 DOTGraphTraitsViewer(StringRef GraphName, char &ID) argument
26 : FunctionPass(ID), Name(GraphName) {}
50 DOTGraphTraitsPrinter(StringRef GraphName, char &ID) argument
51 : FunctionPass(ID), Name(GraphName) {}
85 DOTGraphTraitsModuleViewer(StringRef GraphName, char &ID) argument
86 : ModulePass(ID), Name(GraphName) {}
109 DOTGraphTraitsModulePrinter(StringRef GraphName, char &ID) argument
110 : ModulePass(ID), Name(GraphName) {}
H A DIntervalPartition.h49 static char ID; // Pass identification, replacement for typeid member in class:llvm::IntervalPartition
51 IntervalPartition() : FunctionPass(ID), RootInterval(0) {
/external/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h64 static char ID; member in class:llvm::CalculateSpillWeights
66 CalculateSpillWeights() : MachineFunctionPass(ID) {
/external/llvm/lib/Analysis/
H A DCFGPrinter.cpp26 static char ID; // Pass identifcation, replacement for typeid member in struct:__anon21070::CFGViewer
27 CFGViewer() : FunctionPass(ID) {
44 char CFGViewer::ID = 0; member in class:CFGViewer
49 static char ID; // Pass identifcation, replacement for typeid member in struct:__anon21071::CFGOnlyViewer
50 CFGOnlyViewer() : FunctionPass(ID) {
67 char CFGOnlyViewer::ID = 0; member in class:CFGOnlyViewer
73 static char ID; // Pass identification, replacement for typeid member in struct:__anon21072::CFGPrinter
74 CFGPrinter() : FunctionPass(ID) {
101 char CFGPrinter::ID = 0; member in class:CFGPrinter
107 static char ID; // Pas member in struct:__anon21073::CFGOnlyPrinter
134 char CFGOnlyPrinter::ID = 0; member in class:CFGOnlyPrinter
[all...]
H A DInstCount.cpp53 static char ID; // Pass identification, replacement for typeid member in class:__anon21085::InstCount
54 InstCount() : FunctionPass(ID) {
68 char InstCount::ID = 0; member in class:InstCount
H A DLibCallAliasAnalysis.cpp22 char LibCallAliasAnalysis::ID = 0; member in class:LibCallAliasAnalysis
/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp38 static char ID; // Pass identification, replacement for typeid member in class:__anon21140::DeadMachineInstructionElim
39 DeadMachineInstructionElim() : MachineFunctionPass(ID) {
47 char DeadMachineInstructionElim::ID = 0; member in class:DeadMachineInstructionElim
48 char &llvm::DeadMachineInstructionElimID = DeadMachineInstructionElim::ID;

Completed in 621 milliseconds

1234567891011>>