HomeSort by relevance Sort by last modified time
    Searched defs:Function (Results 51 - 75 of 113) sorted by null

1 23 4 5

  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 189 * function. Otherwise, return NULL.
290 * Return pointer to an optimized triangle function if possible.
325 /* Override for the swrast triangle-selection function. Try to use one
705 /* Initialize device driver function table */
887 * _mesa_add_renderbuffer() function will create a "wrapper" renderbuffer
908 * osmesa_renderbuffer_storage() function to get called.
    [all...]
  /external/giflib/
gif_lib.h 55 int Function; /* The block function code */
251 int Function,
  /external/llvm/include/llvm/MC/
MCDwarf.h 230 /// Utility function to encode a Dwarf pair of LineDelta and AddrDeltas.
234 /// Utility function to emit the encoding to a streamer.
394 Function(0), Instructions(), PersonalityEncoding(),
401 const MCSymbol *Function;
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 53 Function = 2,
260 static const uint32_t function_flag = Function << TYPE_OFFSET;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 546 class Function(Node):
583 return "Function(%s, %s, %s, %s, %s, %s, %s)" % (repr(self.decorators), repr(self.name), repr(self.argnames), repr(self.defaults), repr(self.flags), repr(self.doc), repr(self.code))
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 546 class Function(Node):
583 return "Function(%s, %s, %s, %s, %s, %s, %s)" % (repr(self.decorators), repr(self.name), repr(self.argnames), repr(self.defaults), repr(self.flags), repr(self.doc), repr(self.code))
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 359 class Function(_GenericDeclaration):
398 class Method(Function):
401 Function.__init__(self, start, end, name, return_type, parameters,
553 # Register(Foo<T>); where it thinks this is a function call
753 # Handle data or function declaration/definition.
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
ir.py 236 class Function(genpyx.Function, Node):
241 #return "function (%s), returning"%\
244 #return "function returning"
284 return Function(*self.arg_types()+[self[-1]]) # XX self[-1].ctype
302 if isinstance(node,Function):
522 if len(self)>1 and type(self[1])==Function: # isinstance ??
524 function = property(get_function) variable in class:Declarator
566 return self.pointer and self.deref().function
578 " i am a pointer to a function whose last arg is void*
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 41 OR_No_Viable_Function, ///< No viable function found.
43 OR_Deleted ///< Succeeded, but refers to a deleted function.
63 ICK_Function_To_Pointer, ///< Function-to-pointer (C++ 4.3)
146 /// function-to-pointer conversion.
183 /// \brief Whether we're binding to a function lvalue.
190 /// non-static member function without a ref-qualifier.
259 /// a conversion function (12.3.2), the initial standard
261 /// object parameter of the conversion function.
273 /// conversion function was resolved from an overloaded set having
281 /// ConversionFunction - The function that will perform th
    [all...]
Initialization.h 47 /// \brief The entity being initialized is a function parameter.
49 /// \brief The entity being initialized is the result of a function call.
86 /// \brief The entity being initialized is a function parameter; function
162 /// function, throwing an object, performing an explicit cast, or
232 /// \brief Create the initialization entity for the result of a function.
381 /// the result of a function call.
621 /// \brief Resolve the address of an overloaded function to a specific
622 /// function declaration.
639 /// function or via a constructor
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 92 // the class has access. A local class of a member function
93 // may access the same names that the member function itself
111 FunctionDecl *Function = cast<FunctionDecl>(DC);
112 Functions.push_back(Function->getCanonicalDecl());
113 if (Function->getFriendObjectKind())
114 DC = Function->getLexicalDeclContext();
116 DC = Function->getDeclContext();
493 /// Determines whether the given friend function matches anything in
512 /// Determines whether the given friend function template matches
776 // non-static member function is a protected member of its namin
    [all...]
AnalysisBasedWarnings.cpp 228 enum { Function, Block, Lambda } funMode;
251 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Func))
252 isTemplateInstantiation = Function->isTemplateInstantiation();
260 D.funMode = Function;
297 if (funMode == Function) {
320 /// function that should return a value. Check that we don't fall off the end
321 /// of a noreturn function. We assume that functions and blocks not marked
356 // FIXME: Function try block
489 /// DiagUninitUse -- Helper function to produce a diagnostic for an
628 /// DiagnoseUninitializedUse -- Helper function for diagnosing uses of a
    [all...]
SemaTemplateDeduction.cpp 38 /// \brief Within template argument deduction from a function call, we are
42 /// \brief Within template argument deduction from a function call, we
45 /// \brief Within template argument deduction from a function call,
50 /// template argument deduction from a function call where conversions
57 /// C++ [over.over] allow matching function types that are compatible in
104 /// performing template argument deduction for partial ordering of function
573 /// \brief Helper function to build a TemplateParameter when we don't
677 /// function types (C++ [temp.deduct.type]p10).
744 // If the original function parameter associated with A is a function
    [all...]
SemaTemplateInstantiateDecl.cpp 388 // If a declaration acquires a function type through a type
391 // function declarator to have function type, the program is
474 // If a declaration acquires a function type through a type
477 // function declarator to have function type, the program is
724 // If the enumeration is within a function or method, record the enum
    [all...]
SemaCodeComplete.cpp 131 /// \brief If non-NULL, a filter function used to remove any code-completion
150 /// \brief If we're potentially referring to a C++ member function, the set
566 // There is no way to qualify a name declared in a function or method.
664 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND))
665 T = Function->getCallResultType();
680 // Dig through references, function pointers, and block pointers to
703 if (const FunctionType *Function = T->getAs<FunctionType>()) {
704 T = Function->getResultType();
    [all...]
SemaInit.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 44 /// Class that lazily initialises the runtime function. Avoids inserting the
45 /// types and the function declaration into a module if they're not used, and
51 llvm::Constant *Function;
56 LazyRuntimeFunction() : CGM(0), FunctionName(0), Function(0) {}
58 /// Initialises the lazy function with the name, return type, and the types
65 Function = 0;
78 if (!Function) {
84 Function =
90 return Function;
92 operator llvm::Function*() {
    [all...]
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py 1177 # Must match function names specified in "cmd_buffer_functions.txt".
1181 # decoder_func: defines which function to call in the decoder to execute the
1184 # gl_test_func: GL function that is expected to be called when testing.
1186 # them based on the GL function arguments.
1189 # gen_cmd: Whether or not this function geneates a command. Default = True.
1191 # function. The default is if there is exactly 1 pointer argument
1192 # in the GL function an immediate command is generated.
1204 # gen_func: Name of function that generates GL resource for corresponding
1205 # bind function.
1206 # states: array of states that get set by this function corresponding t
    [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h 225 /// class, function, etc.).
284 /// \brief Provides information about a function template specialization,
286 /// instantiated from a function template.
294 : Function(FD),
308 /// \brief The function template specialization that this structure
310 FunctionDecl *Function;
312 /// \brief The function template from which this function template
318 /// \brief The template arguments used to produce the function template
319 /// specialization from the function template
    [all...]
DeclCXX.h 47 /// \brief Represents any kind of function declaration, whether it is a
48 /// concrete function or a function template.
50 NamedDecl *Function;
52 AnyFunctionDecl(NamedDecl *ND) : Function(ND) { }
55 AnyFunctionDecl(FunctionDecl *FD) : Function(FD) { }
58 /// \brief Implicily converts any function or function template into a
60 operator NamedDecl *() const { return Function; }
62 /// \brief Retrieve the underlying function or function template
    [all...]
Expr.h 204 /// Given the following function template:
311 CL_MemberFunction, // An expression referring to a member function
323 CM_Function, // Not modifiable because it's a function; C++ only
366 /// old lvalue vs rvalue. This function determines the type of expression this
371 /// function returning an rvalue reference.
382 /// This function extends classify in that it also tests whether the
502 /// isPotentialConstantExpr - Return true if this function's definition
504 /// constexpr. Return false if the function can never produce a constant
551 /// this function returns true, it returns the folded constant in Result. If
574 /// which have any effect other than producing a value. Example is a function
    [all...]
  /external/clang/lib/AST/
Decl.cpp 83 // the argument function 'compare'. That 'has_match' is a value
370 /// function template specialization.
527 // - an object, reference, function or function template that is
562 // A non-member function template can have internal linkage; any
564 const FunctionDecl *Function = 0;
567 Function = FunTmpl->getTemplatedDecl();
569 Function = cast<FunctionDecl>(D);
572 if (Function->getCanonicalDecl()->getStorageClass() == SC_Static)
646 // variable or function with external linkage unles
    [all...]
  /external/clang/test/SemaCXX/
type-traits.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 31 | Function
225 | Function
289 (*--... Operations on function types .......................................--*)
344 let rec aux = function
612 | At_end _ -> raise (Invalid_argument "Invalid function range.")
623 | At_end _ -> raise (Invalid_argument "Invalid function range.")
632 | At_start _ -> raise (Invalid_argument "Invalid function range.")
643 | At_start _ -> raise (Invalid_argument "Invalid function range.")
    [all...]
llvm_ocaml.c 252 /*--... Operations on function types .......................................--*/
425 Function,
458 DEFINE_CASE(Val, Function);
968 DEFINE_ITERATORS(function, Function, LLVMModuleRef, LLVMValueRef,
    [all...]

Completed in 721 milliseconds

1 23 4 5