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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-arm/
pcrel-shared.s 12 foo: movw r0, #:lower16:symbol - 1f - 8
13 movt r0, #:upper16:symbol - 1f - 8
15 @ And now a case with a local symbol.
22 .globl symbol
23 .hidden symbol
24 symbol: .long 23 label
  /cts/tools/dasm/src/java_cup/runtime/
symbol.java 4 /** This class represents a (terminal or non-terminal) symbol that, among
6 * keep track of state on the parse stack. The symbol currently on top
9 * of the symbol number that they represent in the sym field. Finally,
21 public class symbol { class
24 public symbol(int sym_num, int state) method in class:symbol
33 public symbol(int sym_num) method in class:symbol
40 /** The symbol number of the terminal or non terminal being represented */
45 /** The parse state to be recorded on the parse stack with this symbol.
  /external/v8/src/runtime/
runtime-symbol.cc 20 Handle<Symbol> symbol = isolate->factory()->NewSymbol(); local
21 if (name->IsString()) symbol->set_name(*name);
22 return *symbol;
31 Handle<Symbol> symbol = isolate->factory()->NewPrivateSymbol(); local
32 if (name->IsString()) symbol->set_name(*name);
33 return *symbol;
40 CONVERT_ARG_CHECKED(Symbol, symbol, 0)
    [all...]
  /external/v8/test/mjsunit/harmony/
private-symbols.js 8 var symbol = %CreatePrivateSymbol("private"); variable
14 object[symbol] = 42;
37 assertEquals(42, proxy[symbol] = 42);
38 assertThrows(function() { "use strict"; proxy[symbol] = 42 }, TypeError);
39 assertEquals(false, Reflect.set(proxy, symbol, 42));
40 assertEquals(42, object[symbol] = 42);
41 assertEquals(43, (function() {"use strict"; return object[symbol] = 43})());
42 assertEquals(true, Reflect.set(object, symbol, 44));
45 assertEquals(false, Reflect.defineProperty(proxy, symbol, {}));
46 assertThrows(() => Object.defineProperty(proxy, symbol, {}), TypeError)
    [all...]
proxies-integrity.js 10 if (typeof x === "symbol") return x;
19 var symbol = Symbol(); variable
41 Object.defineProperty(target, symbol, {get: undefined});
58 ["defineProperty", target, toKey(symbol), noconf], log[5]);
69 Object.defineProperty(target, symbol, {get: undefined});
92 ["getOwnPropertyDescriptor", target, toKey(symbol)], log[8]);
94 ["defineProperty", target, toKey(symbol), noconf], log[9]);
104 Object.defineProperty(target, symbol, {get: undefined});
153 ["getOwnPropertyDescriptor", target, toKey(symbol)], log[5])
    [all...]
reflect-apply.js 36 assertSame(Symbol.prototype,
38 Reflect.apply(returnThis, Symbol("test"), [])));
52 var symbol = Symbol("test"); variable
57 assertSame(symbol, Reflect.apply(returnThis, symbol, []));
125 assertThrows(function() { Reflect.apply(Symbol("x")); }, TypeError);
138 assertThrows(function() { Reflect.apply(Symbol("x")); }, TypeError);
158 var sym = Symbol("x");
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
polcap.py 20 from . import symbol namespace
35 class PolicyCapability(symbol.PolicySymbol):
initsid.py 21 from . import symbol namespace
40 class InitialSID(symbol.PolicySymbol):
  /development/scripts/
stack 23 import symbol namespace
57 symbol.ARCH = value
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ApiInitializer.h 34 void *symbol = NULL; local
36 symbol = dlsym(m_dso, name);
38 return symbol;
  /external/llvm/test/MC/Mips/
macro-dla.s 633 symbol: # CHECK-LABEL: symbol: label
    [all...]
  /external/chromium-trace/catapult/catapult_base/catapult_base/refactor/annotated_symbol/
class_definition.py 5 import symbol namespace
20 if symbol_type != symbol.stmt:
24 if compound_statement.type != symbol.compound_stmt:
28 if statement.type == symbol.classdef:
30 elif (statement.type == symbol.decorated and
31 statement.children[-1].type == symbol.classdef):
function_definition.py 5 import symbol namespace
20 if symbol_type != symbol.stmt:
24 if compound_statement.type != symbol.compound_stmt:
28 if statement.type == symbol.funcdef:
30 elif (statement.type == symbol.decorated and
31 statement.children[-1].type == symbol.funcdef):
reference.py 6 import symbol namespace
23 if nodes[0].type != symbol.atom:
31 if nodes[i].type != symbol.trailer:
75 self._children.append(snippet.Symbol(symbol.trailer, token_snippets))
  /external/iptables/extensions/
tos_values.c 29 const struct tos_symbol_info *symbol; local
34 for (symbol = tos_symbol_names; symbol->name != NULL; ++symbol)
35 if (value == symbol->value) {
36 printf(" %s%s", prefix, symbol->name);
  /frameworks/compile/mclinker/lib/Fragment/
Stub.cpp 35 // build a name for stub symbol
44 LDSymbol* symbol = local
54 setSymInfo(symbol->resolveInfo());
  /toolchain/binutils/binutils-2.25/binutils/
nlmheader.y 85 /* The current symbol prefix when reading a list of import or export
132 %type <string> symbol
433 symbol
441 | symbol_list symbol
462 /* A single symbol. */
464 symbol: label
  /external/libxml2/doc/
libxml-doc.el 28 ;; (autoload 'libxmldoc-lookup-symbol "~/elisp/libxml-doc"
31 ;; (autoload 'libxmldoc-lookup-symbol "libxml-doc"
44 ;; call M-x libxmldoc-lookup-symbol: this will prompt with completion and
46 ;; point matches a symbol, that is used instead. You can also call
47 ;; libxmldoc-lookup-symbol noninteractively and pass the symbol.
61 ;; Wed Jun 21 01:45:29 2000: added libxmldoc-lookup-symbol-at-point
62 ;; Wed Jun 21 23:37:58 2000: libxmldoc-lookup-symbol now uses
63 ;; (thing-at-point 'word) if it matches a symbol
68 ;; - Changed the 'word match from thing-at-point into 'symbol
    [all...]
  /build/tools/
adbs 25 import symbol namespace
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 42 TextView symbol = (TextView) activity.findViewById(R.id.symbolball); local
48 assertNotNull(symbol);
  /cts/tools/dasm/src/java_cup/
symbol.java 4 * both terminals and non-terminals). Each symbol has a name string, and
5 * a string giving the type of object that the symbol will be represented by
6 * on the runtime parse stack. In addition, each symbol maintains a use count
16 public abstract class symbol { class
22 * @param nm the name of the symbol.
25 public symbol(String nm, String tp) method in class:symbol
40 * @param nm the name of the symbol.
42 public symbol(String nm) method in class:symbol
51 /** String for the human readable name of the symbol. */
54 /** String for the human readable name of the symbol. *
    [all...]
  /external/easymock/src/org/easymock/
LogicalOperator.java 48 private String symbol; field in class:LogicalOperator
50 private LogicalOperator(String symbol) {
51 this.symbol = symbol;
55 return symbol;
  /external/google-breakpad/src/common/android/
breakpad_getcontext.S 325 #define NESTED(symbol, framesize, rpc) \
326 .globl symbol; \
328 .type symbol,@function; \
329 .ent symbol,0; \
330 symbol: .frame sp, framesize, rpc; label
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
BitTreeDecoder.java 30 int symbol = 0; local
36 symbol |= (bit << bitIndex);
38 return symbol;
45 int symbol = 0; local
51 symbol |= (bit << bitIndex);
53 return symbol;
  /external/mesa3d/src/gallium/targets/egl-static/
egl_st.c 101 const char symbol[] = "st_api_create_OpenGL"; local
104 stapi = load_gl(module, symbol);
113 stapi = load_gl(module, symbol);

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011>>