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

1 2 3 4

  /external/clang/test/Sema/
decl-invalid.c 4 typedef union <anonymous> __mbstate_t; // expected-error {{declaration of anonymous union must be a definition}} expected-warning {{typedef requires a name}}
19 struct; // expected-error {{declaration of anonymous struct must be a definition}} // expected-warning {{declaration does not declare anything}}
  /external/chromium_org/v8/test/mjsunit/
eval-stack-trace.js 94 // f (eval at g (eval-stack.js:87:8), <anonymous>:2:9)
95 // eval (eval at g (eval-stack.js:87:8), <anonymous>:4:1)
104 ["<anonymous>:2:", "<anonymous>:4:"]
124 // f (eval at h (eval at <anonymous> (eval-stack.js:116:8)),
125 // <anonymous>:2:9)
126 // eval (eval at h (eval at <anonymous> (eval-stack.js:116:8)),
127 // <anonymous>:4:1)
128 // h (eval at <anonymous> (eval-stack.js:116:8), <anonymous>:3:3
    [all...]
function.js 53 f = Function('return typeof anonymous');
56 var anonymous = 42; variable
57 f = Function('return anonymous;');
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 7 remote anonymous {
35 sainfo anonymous {
  /external/llvm/autoconf/m4/
header_mmap_anonymous.m4 2 # Check for anonymous mmap macros. This is modified from
19 AC_DEFINE([HAVE_MMAP_ANONYMOUS],[1],[Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if it uses MAP_ANON])
  /external/llvm/projects/sample/autoconf/m4/
header_mmap_anonymous.m4 2 # Check for anonymous mmap macros. This is modified from
19 AC_DEFINE([HAVE_MMAP_ANONYMOUS],[1],[Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if it uses MAP_ANON])
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
MethodTest.java 162 Object anonymous = new InterfaceA() { local
166 Method method = anonymous.getClass().getMethod("a");
167 assertEquals(anonymous.getClass(), method.getDeclaringClass());
171 Object anonymous = new Object() { local
175 Method method = anonymous.getClass().getMethod("a");
176 assertEquals(anonymous.getClass(), method.getDeclaringClass());
180 Object anonymous = new Object() { local
185 anonymous.getClass().getMethod("a");
192 Object anonymous = new Object() { local
196 Method method = anonymous.getClass().getDeclaredMethod("a")
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/
testing.properties.template 43 cvsRoot=:pserver:anonymous@ottcvs1:/home/cvs/releng
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 27 sainfo anonymous {
  /external/clang/lib/AST/
TemplateBase.cpp 361 Out << "<anonymous>";
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
setup.sh 18 cvs -d :pserver:anonymous@dev.eclipse.org:$CVSROOT $quietcvs co $project;
  /external/clang/test/CodeGenCXX/
mangle-ms.cpp 6 // CHECK: @"\01?anonymous@?A@N@@3HA"
29 int anonymous; member in namespace:N::__anon18468
34 int _c(void) {return N::anonymous + c;}
predefined-expr.cpp 29 // CHECK: private unnamed_addr constant [83 x i8] c"void NS::ContainerForAnonymousRecords::<anonymous union>::anonymousUnionFunction()\00"
32 // CHECK: private unnamed_addr constant [85 x i8] c"void NS::ContainerForAnonymousRecords::<anonymous struct>::anonymousStructFunction()\00"
35 // CHECK: private unnamed_addr constant [83 x i8] c"void NS::ContainerForAnonymousRecords::<anonymous class>::anonymousClassFunction()\00"
94 // CHECK: private unnamed_addr constant [84 x i8] c"void <anonymous namespace>::ClassInAnonymousNamespace::anonymousNamespaceFunction()\00"
123 } // end anonymous namespace
483 NS::ContainerForAnonymousRecords anonymous; local
484 anonymous.anonymousClass.anonymousClassFunction();
485 anonymous.anonymousStruct.anonymousStructFunction();
486 anonymous.anonymousUnion.anonymousUnionFunction();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
mergeChangeLogs.pl 100 + JSC is failing to propagate anonymous slot count on some transitions
128 JSC is failing to propagate anonymous slot count on some transitions
165 - JSC is failing to propagate anonymous slot count on some transitions
207 JSC is failing to propagate anonymous slot count on some transitions
254 JSC is failing to propagate anonymous slot count on some transitions
296 JSC is failing to propagate anonymous slot count on some transitions
311 JSC is failing to propagate anonymous slot count on some transitions
  /external/ipsec-tools/src/racoon/
sainfo.c 74 * no matching entry found and if there is anonymous entry, return it.
84 struct sainfo *anonymous = NULL; variable in typeref:struct:sainfo
95 dloc = strdup("ANONYMOUS");
100 drmt = strdup("ANONYMOUS");
138 anonymous = s;
142 /* anonymous ? */
144 if (anonymous != NULL)
155 if ((anonymous == NULL) && (pass == 1)) {
160 return anonymous;
280 idloc = strdup("ANONYMOUS");
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1036894.js 28 assertThrows("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }");
31 assertThrows("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }");
35 assertThrows("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }");
  /external/v8/test/mjsunit/
function.js 53 f = Function('return typeof anonymous');
56 var anonymous = 42; variable
57 f = Function('return anonymous;');
  /external/v8/test/mjsunit/regress/
regress-1036894.js 28 assertThrows("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }");
31 assertThrows("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }");
35 assertThrows("$=function anonymous() { /*noex*/do {} while(({ get x(x) { break ; }, set x() { (undefined);} })); }");
  /external/clang/test/Analysis/inlining/
path-notes.cpp 44 } anonymous; local
46 anonymous.method(0);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/templates/headless-build/
build.properties 190 mapsRepo=:pserver:anonymous@example.com/path/to/repo
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 25 (* Evaluate a top-level expression into an anonymous function. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 29 (* Evaluate a top-level expression into an anonymous function. *)
  /sdk/eclipse/buildConfig/
build.properties 167 mapsRepo=:pserver:anonymous@example.com/path/to/repo
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
background.js 9 'consumer_key' : 'anonymous',
10 'consumer_secret' : 'anonymous',
  /external/chromium_org/v8/test/mjsunit/compiler/
assignment.js 49 // Test compound assignments in an anonymous function with local variables.
71 // Test compound assignments in an anonymous function with global variables.
166 // Test compound assignments in an anonymous function with local variables.
190 // Test compound assignments in an anonymous function with global variables.

Completed in 1658 milliseconds

1 2 3 4