HomeSort by relevance Sort by last modified time
    Searched refs:Declare (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/vixl/tools/test_generator/
data_types.py 39 name Name for the operand. It is used to declare variable names.
64 def Declare():
66 Generate code to declare the operand `struct Operands`.
110 def Declare(self):
112 Generate code to declare the operand as a single member in
153 def Declare(self):
156 `struct Operands`. Although we do need to declare all underlying operands.
158 return "\n".join([operand.Declare() for operand in self.operand_list])
197 name Name of the input. It is used to declare variable names.
226 def Declare()
    [all...]
generator.py 130 # Declare functions that will be callable from Python expressions in
364 return "".join([operand.Declare() for operand in self.operands])
375 return "".join([input.Declare() for input in self.inputs])
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
StripSymbols.cpp 117 INITIALIZE_PASS(StripDebugDeclare, "strip-debug-declare",
118 "Strip all llvm.dbg.declare intrinsics", false, false)
243 if (Function *Declare = M.getFunction("llvm.dbg.declare")) {
244 while (!Declare->use_empty()) {
245 CallInst *CI = cast<CallInst>(Declare->use_back());
248 Declare->eraseFromParent();
299 Function *Declare = M.getFunction("llvm.dbg.declare");
302 if (Declare) {
    [all...]
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 117 INITIALIZE_PASS(StripDebugDeclare, "strip-debug-declare",
118 "Strip all llvm.dbg.declare intrinsics", false, false)
253 Function *Declare = M.getFunction("llvm.dbg.declare");
256 if (Declare) {
257 while (!Declare->use_empty()) {
258 CallInst *CI = cast<CallInst>(Declare->user_back());
273 Declare->eraseFromParent();
  /external/capstone/bindings/vb6/
Module1.bas 187 Public Declare Function cs_version Lib "vbCapstone.dll" Alias "bs_version" (ByRef major As Long, ByRef minor As Long) As Long
207 Public Declare Function cs_support Lib "vbCapstone.dll" Alias "bs_support" (ByVal query As Long) As Long
223 Public Declare Function cs_open Lib "vbCapstone.dll" Alias "bs_open" (ByVal arch As cs_arch, ByVal mode As cs_mode, ByRef hEngine As Long) As cs_err
242 Public Declare Function cs_close Lib "vbCapstone.dll" Alias "bs_close" (ByRef hEngine As Long) As cs_err
262 Public Declare Function cs_option Lib "vbCapstone.dll" Alias "bs_option" (ByVal hEngine As Long, ByVal typ As cs_opt_type, ByVal size As Long) As cs_err
276 Public Declare Function cs_errno Lib "vbCapstone.dll" Alias "bs_errno" (ByVal hEngine As Long) As cs_err
289 Public Declare Function cs_strerror Lib "vbCapstone.dll" Alias "bs_strerror" (ByVal errCode As cs_err) As Long
334 Public Declare Function cs_disasm Lib "vbCapstone.dll" Alias "bs_disasm" ( _
344 Public Declare Sub getInstruction Lib "vbCapstone.dll" (ByVal hInstrAry As Long, ByVal index As Long, ByVal insPtr As Long, ByVal size As Long)
370 Public Declare Sub cs_free Lib "vbCapstone.dll" Alias "bs_free" (ByVal instr As Long, ByVal count As Long)
    [all...]
mMisc.bas 17 Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long
18 Public Declare Function FreeLibrary Lib "kernel32" (ByVal hLibModule As Long) As Long
19 Public Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (Destination As Any, Source As Any, ByVal length As Long)
20 Public Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As Long
21 Public Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long
22 Public Declare Function SetDllDirectory Lib "kernel32" Alias "SetDllDirectoryA" (ByVal lpPathName As String) As Long
  /external/v8/src/ast/
scopes.cc 39 // When inserting a new variable via Declare(), we rely on the fact that
47 Variable* VariableMap::Declare(Zone* zone, Scope* scope,
117 void SloppyBlockFunctionMap::Declare(
283 Variable* variable = Declare(zone, catch_variable_name, VAR);
474 sloppy_block_function_map_.Declare(zone(), name, delegate);
546 // Declare a var-style binding for the function in the outer scope
652 Declare(zone(), ast_value_factory->this_string(),
664 // Declare 'arguments' variable which exists in all non arrow functions.
667 arguments_ = Declare(zone(), ast_value_factory->arguments_string(), VAR);
681 new_target_ = Declare(zone(), ast_value_factory->new_target_string(), CONST)
    [all...]
scopes.h 33 Variable* Declare(
71 void Declare(Zone* zone, const AstRawString* name, Delegate* delegate);
171 // Declare a local variable in this scope. If the variable has been
474 Variable* Declare(
675 // Declare the function variable for a function literal. This variable
685 // Declare some special internal variables which must be accessible to
690 // Declare a parameter in this scope. When there are duplicated
702 // Declare an implicit global variable in this scope which must be a
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
AutoUpgrade.cpp 381 /// This function strips all debug info intrinsics, except for llvm.dbg.declare.
382 /// If an llvm.dbg.declare intrinsic is invalid, then this function simply
409 if (Function *Declare = M->getFunction("llvm.dbg.declare")) {
410 if (!Declare->use_empty()) {
411 DbgDeclareInst *DDI = cast<DbgDeclareInst>(Declare->use_back());
414 while (!Declare->use_empty()) {
415 CallInst *CI = cast<CallInst>(Declare->use_back());
418 Declare->eraseFromParent();
  /tools/repohooks/tools/
checkpatch.pl 340 our $Declare;
596 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
612 (?:$Storage\s+)?(?:[A-Z_][A-Z0-9]*_){0,2}(?:DEFINE|DECLARE)(?:_[A-Z0-9]+){1,6}\s*\(|
649 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
    [all...]
  /external/libffi/src/metag/
sysv.S 79 ! Declare a global function
  /external/python/cpython2/Modules/_ctypes/libffi/src/metag/
sysv.S 79 ! Declare a global function
  /external/python/cpython3/Modules/_ctypes/libffi/src/metag/
sysv.S 79 ! Declare a global function
  /prebuilts/go/darwin-x86/src/flag/
flag_test.go 227 // Declare a user-defined flag type.
266 // Declare a user-defined boolean flag type.
  /prebuilts/go/linux-x86/src/flag/
flag_test.go 227 // Declare a user-defined flag type.
266 // Declare a user-defined boolean flag type.
  /prebuilts/build-tools/common/bison/
yacc.c 179 # Declare the variables that are global, or local to YYPARSE if
222 # Declare all the variables that are needed to maintain the parser state
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
exec_bsd.go 43 // Declare all variables at top in case any
exec_solaris.go 63 // Declare all variables at top in case any
  /prebuilts/go/linux-x86/src/syscall/
exec_bsd.go 43 // Declare all variables at top in case any
exec_solaris.go 63 // Declare all variables at top in case any
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
optparse.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
optparse.py     [all...]
  /external/python/cpython2/Lib/
optparse.py     [all...]
  /external/python/cpython3/Lib/
optparse.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
optparse.py     [all...]

Completed in 634 milliseconds

1 2 3