HomeSort by relevance Sort by last modified time
    Searched defs:Functions (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/deqp/framework/opengl/wrapper/
glwFunctions.cpp 21 * \brief OpenGL API Functions.
30 Functions::Functions (void)
glwFunctions.hpp 23 * \brief OpenGL API Functions.
37 class Functions
44 Functions (void);
  /external/libvorbis/doc/
09-helper.tex 13 \subsection{Functions}
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType3FunctionDictionary_autogen.cpp 11 SkPdfArray* SkPdfType3FunctionDictionary::Functions(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Functions", "");
20 return get("Functions", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfType3FunctionDictionary_autogen.cpp 11 SkPdfArray* SkPdfType3FunctionDictionary::Functions(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Functions", "");
20 return get("Functions", "") != NULL;
  /external/bison/doc/
refcard.tex 468 \section {Functions}
  /external/compiler-rt/test/asan/TestCases/Linux/
stress_dtls.c 55 f_t Functions[MAX_N_FUNCTIONS];
63 if (!Functions[i]) break;
64 uintptr_t dtls = (uintptr_t)Functions[i]();
90 Functions[lib] = (f_t)dlsym(handle, buf);
91 if (!Functions[lib]) {
95 fprintf(stderr, "LIB[%03d] %s: %p\n", lib, buf, Functions[lib]);
  /external/llvm/include/llvm/MC/MCAnalysis/
MCModule.h 78 FunctionListTy Functions;
122 const_func_iterator func_begin() const { return Functions.begin(); }
123 func_iterator func_begin() { return Functions.begin(); }
124 const_func_iterator func_end() const { return Functions.end(); }
125 func_iterator func_end() { return Functions.end(); }
  /external/lldb/include/lldb/Symbol/
SymbolFile.h 37 Functions = (1u << 2),
81 /// and COFF). Not a lot of work should happen in these functions
112 /// prior to any other functions in the SymbolFile protocol.
  /external/guava/guava-tests/test/com/google/common/base/
FunctionsTest.java 33 * Tests for {@link Functions}.
42 Function<String, String> identity = Functions.identity();
48 Function<Long, Long> identity = Functions.identity();
54 checkCanReserializeSingleton(Functions.identity());
58 assertEquals("3", Functions.toStringFunction().apply(3));
59 assertEquals("hiya", Functions.toStringFunction().apply("hiya"));
61 Functions.toStringFunction().apply(
68 Functions.toStringFunction().apply(null);
77 checkCanReserializeSingleton(Functions.toStringFunction());
83 tester.testAllPublicStaticMethods(Functions.class)
    [all...]
  /external/chromium_org/tools/site_compare/commands/
maskmaker.py 13 import os # Functions for walking the directory tree
timeload.py 15 import os # Functions for walking the directory tree
19 import drivers # Functions for driving keyboard/mouse/windows, OS-specific
20 import operators # Functions that, given two bitmaps as input, produce
22 import scrapers # Functions that know how to capture a render from
compare2.py 13 import os # Functions for walking the directory tree
17 import drivers # Functions for driving keyboard/mouse/windows, OS-specific
18 import operators # Functions that, given two bitmaps as input, produce
20 import scrapers # Functions that know how to capture a render from
  /external/guava/guava/src/com/google/common/base/
Functions.java 33 * <p>All methods returns serializable functions as long as they're given serializable parameters.
40 public final class Functions {
41 private Functions() {}
182 * Returns the composition of two functions. For {@code f: A->B} and {@code g: B->C}, composition
237 /** @see Functions#forPredicate */
321 /** @see Functions#forSupplier*/
  /external/llvm/include/llvm/CodeGen/
GCStrategy.h 65 list_type Functions;
134 iterator begin() { return Functions.begin(); }
135 iterator end() { return Functions.end(); }
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.h 120 SymbolMapTy Functions;
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 14 // recursive functions, which they process all at once.
144 // Run pass P on all functions in the current SCC.
168 /// RefreshCallGraph - Scan the functions in the specified CFG and resync the
192 // Scan all functions in the SCC.
219 // constant folding happens of well known functions etc.
392 std::string Functions;
394 raw_string_ostream OS(Functions);
402 dumpPassInfo(P, EXECUTION_MSG, ON_CG_MSG, Functions);
447 // functions in this SCC. However, we support iterative compilation in the
  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 47 STATISTIC(NumFuncsInJumpTables, "Number of functions in the jump tables");
50 // The default implementation uses a single table for all functions.
80 // Replaces Functions and GlobalAliases with a different Value.
219 // Transform all types to void* so that all functions with the same arity
260 // Get the set of jumptable-annotated functions.
261 DenseMap<Function *, Function *> Functions;
266 Functions[&F] = nullptr;
270 // Create the jump-table functions.
271 for (auto &KV : Functions) {
278 // the alias, we replace all uses of aliases that target jumptable functions
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 353 SimpleBindingMemoryManager(const SimpleBindingMMFunctions& Functions,
368 SimpleBindingMMFunctions Functions;
373 const SimpleBindingMMFunctions& Functions,
375 : Functions(Functions), Opaque(Opaque) {
376 assert(Functions.AllocateCodeSection &&
378 assert(Functions.AllocateDataSection &&
380 assert(Functions.FinalizeMemory &&
382 assert(Functions.Destroy &&
387 Functions.Destroy(Opaque)
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 11 // Amplifier XE 2011 about JITted functions.
194 MethodAddressVector Functions;
196 // Use symbol info to iterate functions in the object.
215 Functions.push_back((void*)Addr);
256 LoadedObjectMap[ObjData] = Functions;
267 MethodAddressVector& Functions = OI->second;
270 for (MethodAddressVector::iterator FI = Functions.begin(),
271 FE = Functions.end();
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 171 /// ReduceCrashingFunctions reducer - This works by removing functions and
209 std::set<Function*> Functions;
215 Functions.insert(CMF);
218 outs() << "Checking for crash with only these functions: ";
222 // Loop over and delete any functions which we aren't supposed to be playing
225 if (!I->isDeclaration() && !Functions.count(I))
234 Funcs.assign(Functions.begin(), Functions.end());
246 /// the CFG really fast which can reduce large functions quickly.
491 // Now try to reduce the number of functions in the module to something small
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9effect.h 40 UINT Functions;
  /external/chromium_org/tools/site_compare/
site_compare.py 18 import os # Functions for walking the directory tree
22 import drivers # Functions for driving keyboard/mouse/windows, OS-specific
23 import operators # Functions that, given two bitmaps as input, produce
25 import scrapers # Functions that know how to capture a render from
  /external/llvm/lib/MC/MCAnalysis/
MCModuleYAML.cpp 121 std::vector<Function> Functions;
215 IO.mapOptional("Functions", M.Functions);
335 YAMLModule.Functions.resize(YAMLModule.Functions.size() + 1);
336 MCModuleYAML::Function &F = YAMLModule.Functions.back();
404 for (FuncIt FI = YAMLModule.Functions.begin(),
405 FE = YAMLModule.Functions.end();
  /external/llvm/include/llvm/Support/
GCOV.h 38 /// GCOVOptions - A struct for passing gcov options between functions.
235 GCOVFile() : GCNOInitialized(false), Checksum(0), Functions(), RunCount(0),
246 SmallVector<std::unique_ptr<GCOVFunction>, 16> Functions;
350 // It is unlikely--but possible--for multiple functions to be on the same line.
351 // Therefore this typedef allows LineData.Functions to store multiple functions
361 FunctionLines Functions;
392 LineInfo[Filename].Functions[Line-1].push_back(Function);

Completed in 476 milliseconds

1 2 3